blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
410
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
131 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
32 values
content
stringlengths
3
9.45M
authors
sequencelengths
1
1
author_id
stringlengths
0
313
56222c1da2349135e9848694cb5fd5a42e723402
cddc7912dd87461bf9532559c5b474abe2f6a45a
/GwtPhoenix/src/com/muriloq/gwt/phoenix/shared/FieldVerifier.java
056bdbfd1fa0c006252d963439a8c71af6acf8a6
[]
no_license
muriloq/gwt-phoenix
b386b259c386afa35d73e403b2fc4e45e5ff4ed4
1617ac446163dc5aa36748a6fb3d25f398413f28
refs/heads/master
2020-04-05T01:44:12.217331
2010-11-30T15:14:00
2010-11-30T15:14:00
1,125,626
1
0
null
null
null
null
UTF-8
Java
false
false
1,559
java
package com.muriloq.gwt.phoenix.shared; /** * <p> * FieldVerifier validates that the name the user enters is valid. * </p> * <p> * This class is in the <code>shared</code> packing because we use it in both * the client code and on the server. On the client, we verify that the name is * valid before sending an RPC request so the user doesn't have to wait for a * network round trip to get feedback. On the server, we verify that the name is * correct to ensure that the input is correct regardless of where the RPC * originates. * </p> * <p> * When creating a class that is used on both the client and the server, be sure * that all code is translatable and does not use native JavaScript. Code that * is note translatable (such as code that interacts with a database or the file * system) cannot be compiled into client side JavaScript. Code that uses native * JavaScript (such as Widgets) cannot be run on the server. * </p> */ public class FieldVerifier { /** * Verifies that the specified name is valid for our service. * * In this example, we only require that the name is at least four * characters. In your application, you can use more complex checks to ensure * that usernames, passwords, email addresses, URLs, and other fields have the * proper syntax. * * @param name the name to validate * @return true if valid, false if invalid */ public static boolean isValidName(String name) { if (name == null) { return false; } return name.length() > 3; } }
f3ca00a3d87ac34e391dd66e411869097bd72433
8f0866f84e4b7e57c3ea8883e27134107cbd45a7
/src/main/java/br/com/zupacademy/robson/transacao/establishment/EstablishmentTransaction.java
b9a423de0ffe0fd51a77bc757c95c999ed4729b9
[ "Apache-2.0" ]
permissive
robsonzupper/orange-talents-04-template-transacao
58f78a8f9b7e979afa05a195eb7520a0b4c7d7cf
937c2a64ea9f79fbed8a7f45a4fbfadc0e520f1d
refs/heads/main
2023-05-06T22:46:56.136624
2021-05-31T09:24:01
2021-05-31T09:24:01
371,061,371
0
0
Apache-2.0
2021-05-26T14:22:39
2021-05-26T14:22:38
null
UTF-8
Java
false
false
930
java
package br.com.zupacademy.robson.transacao.establishment; public class EstablishmentTransaction { private String name; private String city; private String address; public EstablishmentTransaction(String name, String city, String address) { this.name = name; this.city = city; this.address = address; } public EstablishmentTransaction() { } public String getName() { return name; } public String getAddress() { return address; } public String getCity() { return city; } @Override public String toString() { return "EstablishmentTransacao{" + "nome='" + name + '\'' + ", cidade='" + city + '\'' + ", endereco='" + address + '\'' + '}'; } public Establishment converte() { return new Establishment(name, city, address); } }
a293d835ad640aee45b38fbd7fef09be22af5e56
9db3fef7a7afdd06245db12e7b551a2e33dd9ee9
/app/src/main/java/com/example/rusha/wsdc1/Utils.java
b442da124679024bcd84794535005235d0990528
[]
no_license
rush2406/Wsdc1
286bd9a8922072c3b26ca79932a0f1a253fa0755
19b3ad6514510c041f2f7e3c9c79ccbc0597916b
refs/heads/master
2021-01-21T22:25:36.626245
2017-09-01T22:18:22
2017-09-01T22:18:22
102,157,111
1
0
null
null
null
null
UTF-8
Java
false
false
1,189
java
package com.example.rusha.wsdc1; import android.location.Address; import android.util.Log; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; /** * Created by rusha on 02-09-2017. */ class det{ private String name; private String address; public void setName(String s) { name=s; } public void setAddress(String s) { address=s; } public String getName() { return name; } public String getAddress() { return address; } } public class Utils { public static String toJson() { try{ JSONArray array=new JSONArray(); for(int i=0;i<3;i++) { det D=new det(); D.setName("Hello"); D.setAddress("Hi"); JSONObject object = new JSONObject(); object.put("name", D.getName()); object.put("address", D.getAddress()); array.put(object); } return array.toString(); }catch (JSONException j) { Log.v(Utils.class.getSimpleName(),"Error"); } return null; } }
a04745d8869f3fafae2bea18f47c6e1083ebb031
d1fd7b404f221e6362cdbdc647163de14b5333b5
/sincronia/src/main/java/com/sincrono/corso/SincroniaApplication.java
840611ad6dc29dfa33e4199065b4d370729117de
[]
no_license
alessandrocarnicella/sincronia
7ad714f3853fb70db49ac32df9b7f233c979cfed
0dfe5fb522b188ef1abe6b0fcacb303666a8e9cc
refs/heads/master
2020-04-27T07:48:59.834282
2019-03-07T12:57:49
2019-03-07T12:57:49
174,148,624
0
0
null
null
null
null
UTF-8
Java
false
false
317
java
package com.sincrono.corso; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class SincroniaApplication { public static void main(String[] args) { SpringApplication.run(SincroniaApplication.class, args); } }
2ca1d1cf7b1a2350bc105b279fc37ad6e1987735
591ed266af237c6b579422c79cc6c7cb6ee09fcf
/springboot-jdbc/src/main/java/com/xiaoming/SpringbootJdbcApplication.java
f22cb1afe23cb52166e3a0f29098a5a763ff38f5
[]
no_license
laoyouzi/springBoot
32d4310367340d3544f0790716fa03e00ad0c9ae
e4a52a9de23cb3bdcbb406182df1d5c91bccde6d
refs/heads/master
2022-11-30T20:43:07.084166
2020-08-07T14:24:50
2020-08-07T14:24:50
284,488,167
0
0
null
null
null
null
UTF-8
Java
false
false
333
java
package com.xiaoming; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class SpringbootJdbcApplication { public static void main(String[] args) { SpringApplication.run(SpringbootJdbcApplication.class, args); } }
5a8d7d74c949978c49b9019dc77b28702f578755
7d2a81193e727a46f0c74e8f5f3fd48799f3f46b
/src/main/java/com/in28minutes/logout/LogoutServlet.java
3a1f1550804d0cabcc952320b9934dacd07de584
[]
no_license
Peterren/first-web-application
ec34afc902b0b4e17f2ec4bc2eed181ec6be82f7
d76376468f4141f3176cb10069bf8c1420bf0f2a
refs/heads/master
2020-05-18T09:24:44.555008
2019-05-02T20:40:09
2019-05-02T20:40:09
184,323,804
0
0
null
null
null
null
UTF-8
Java
false
false
696
java
package com.in28minutes.logout; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @WebServlet(urlPatterns = "/logout.do") public class LogoutServlet extends HttpServlet { /** * */ private static final long serialVersionUID = 1L; @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { request.getSession().invalidate(); request.getRequestDispatcher("/WEB-INF/views/login.jsp").forward(request, response); } }
6251f520416aec23d11b86b069cff549477caa50
8a4e74f5dee7de0e69e269ae2e36c4544ed59bd1
/app/src/main/java/com/example/a13051_000/buffetmealsystem/restaurant/DragTopLayout.java
39f8e2ab1596a0432695cdbf0b0a899af8cc372d
[]
no_license
898311543/Buffetmealsystem
36790973c4e1b726da6d6af64a9602ce371f1abc
cefb19eb75970a5187edd52d75dbd0f7e3693569
refs/heads/master
2020-12-14T07:31:32.844925
2017-06-19T07:00:16
2017-06-19T07:00:16
58,109,819
1
1
null
2017-06-19T07:00:17
2016-05-05T06:35:17
Java
UTF-8
Java
false
false
18,361
java
/* * Copyright 2015 chenupt * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * imitations under the License. */ package com.example.a13051_000.buffetmealsystem.restaurant; import android.content.Context; import android.content.res.TypedArray; import android.os.Handler; import android.os.Parcelable; import android.support.v4.view.MotionEventCompat; import android.support.v4.view.ViewCompat; import android.support.v4.widget.ViewDragHelper; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.View; import android.view.ViewGroup; import android.widget.FrameLayout; import com.example.a13051_000.buffetmealsystem.R; /** * Created by [email protected] on 2015/1/18. * Description : Drag down to show a menu panel on the top. */ public class DragTopLayout extends FrameLayout { private ViewDragHelper dragHelper; private int dragRange; private View dragContentView; private View topView; private int contentTop; private int topViewHeight; private float ratio; private boolean isRefreshing; private boolean shouldIntercept = true; private PanelListener panelListener; private float refreshRatio = 1.5f; private boolean overDrag = true; private int collapseOffset; private int topViewId = -1; private int dragContentViewId = -1; private boolean captureTop = true; // Used for scrolling private boolean dispatchingChildrenDownFaked = false; private boolean dispatchingChildrenContentView = false; private float dispatchingChildrenStartedAtY = Float.MAX_VALUE; private PanelState panelState = PanelState.EXPANDED; public static enum PanelState { COLLAPSED(0), EXPANDED(1), SLIDING(2); private int asInt; PanelState(int i) { this.asInt = i; } static PanelState fromInt(int i) { switch (i) { case 0: return COLLAPSED; case 2: return SLIDING; default: case 1: return EXPANDED; } } public int toInt() { return asInt; } } public DragTopLayout(Context context) { this(context, null); } public DragTopLayout(Context context, AttributeSet attrs) { this(context, attrs, 0); } public DragTopLayout(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); init(attrs); } private void init(AttributeSet attrs) { dragHelper = ViewDragHelper.create(this, 1.0f, callback); // init from attrs TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.DragTopLayout); setCollapseOffset(a.getDimensionPixelSize(R.styleable.DragTopLayout_dtlCollapseOffset, collapseOffset)); overDrag = a.getBoolean(R.styleable.DragTopLayout_dtlOverDrag, overDrag); dragContentViewId = a.getResourceId(R.styleable.DragTopLayout_dtlDragContentView, -1); topViewId = a.getResourceId(R.styleable.DragTopLayout_dtlTopView, -1); initOpen(a.getBoolean(R.styleable.DragTopLayout_dtlOpen, true)); captureTop = a.getBoolean(R.styleable.DragTopLayout_dtlCaptureTop, true); a.recycle(); } private void initOpen(boolean initOpen){ if (initOpen) { panelState = PanelState.EXPANDED; } else { panelState = PanelState.COLLAPSED; } } @Override public void onFinishInflate() { super.onFinishInflate(); if (getChildCount() < 2) { throw new RuntimeException("Content view must contains two child views at least."); } if (topViewId != -1 && dragContentViewId == -1) { throw new IllegalArgumentException("You have set \"dtlTopView\" but not \"dtlDragContentView\". Both are required!"); } if (dragContentViewId != -1 && topViewId == -1) { throw new IllegalArgumentException("You have set \"dtlDragContentView\" but not \"dtlTopView\". Both are required!"); } if (dragContentViewId != -1 && topViewId != -1) { bindId(this); } else { topView = getChildAt(0); dragContentView = getChildAt(1); } } private void bindId(View view) { topView = view.findViewById(topViewId); dragContentView = view.findViewById(dragContentViewId); if (topView == null) { throw new IllegalArgumentException("\"dtlTopView\" with id = \"@id/" + getResources().getResourceEntryName(topViewId) + "\" has NOT been found. Is a child with that id in this " + getClass().getSimpleName() + "?"); } if (dragContentView == null) { throw new IllegalArgumentException("\"dtlDragContentView\" with id = \"@id/" + getResources().getResourceEntryName(dragContentViewId) + "\" has NOT been found. Is a child with that id in this " + getClass().getSimpleName() + "?"); } } @Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) { super.onLayout(changed, left, top, right, bottom); dragRange = getHeight(); // In case of resetting the content top to target position before sliding. int contentTopTemp = contentTop; resetTopViewHeight(); resetContentHeight(); topView.layout(left, Math.min(topView.getPaddingTop(), contentTop - topViewHeight), right, contentTop); dragContentView.layout(left, contentTopTemp, right, contentTopTemp + dragContentView.getHeight()); } private void resetTopViewHeight() { int newTopHeight = topView.getHeight(); // Top layout is changed if (topViewHeight != newTopHeight) { if (panelState == PanelState.EXPANDED) { contentTop = newTopHeight; handleSlide(newTopHeight); } else if(panelState == PanelState.COLLAPSED){ // update the drag content top when it is collapsed. contentTop = collapseOffset; } topViewHeight = newTopHeight; } } private void resetContentHeight() { if (dragContentView != null && dragContentView.getHeight() != 0) { ViewGroup.LayoutParams layoutParams = dragContentView.getLayoutParams(); layoutParams.height = getHeight() - collapseOffset; dragContentView.setLayoutParams(layoutParams); } } private void handleSlide(final int top) { new Handler().post(new Runnable() { @Override public void run() { dragHelper.smoothSlideViewTo(dragContentView, getPaddingLeft(), top); postInvalidate(); } }); } private void resetDragContent(boolean anim, int top) { contentTop = top; if (anim) { dragHelper.smoothSlideViewTo(dragContentView, getPaddingLeft(), contentTop); postInvalidate(); } else { requestLayout(); } } private void calculateRatio(float top) { ratio = (top-collapseOffset) / (topViewHeight - collapseOffset); if (dispatchingChildrenContentView) { resetDispatchingContentView(); } if (panelListener != null) { // Calculate the ratio while dragging. panelListener.onSliding(ratio); if (ratio > refreshRatio && !isRefreshing) { isRefreshing = true; panelListener.onRefresh(); } } } private void updatePanelState(){ if (contentTop <= getPaddingTop() + collapseOffset) { panelState = PanelState.COLLAPSED; } else if(contentTop >= topView.getHeight()){ panelState = PanelState.EXPANDED; } else { panelState = PanelState.SLIDING; } if (panelListener != null) { panelListener.onPanelStateChanged(panelState); } } @Override protected Parcelable onSaveInstanceState() { Parcelable superState = super.onSaveInstanceState(); SavedState state = new SavedState(superState); state.panelState = panelState.toInt(); return state; } @Override protected void onRestoreInstanceState(Parcelable state) { if (!(state instanceof SavedState)) { // FIX #10 super.onRestoreInstanceState(BaseSavedState.EMPTY_STATE); return; } SavedState s = (SavedState) state; super.onRestoreInstanceState(s.getSuperState()); this.panelState = PanelState.fromInt(s.panelState); if (panelState == PanelState.COLLAPSED) { closeTopView(false); } else { openTopView(false); } } private ViewDragHelper.Callback callback = new ViewDragHelper.Callback() { @Override public boolean tryCaptureView(View child, int pointerId) { if (child == topView && captureTop) { dragHelper.captureChildView(dragContentView, pointerId); return false; } return child == dragContentView; } @Override public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) { super.onViewPositionChanged(changedView, left, top, dx, dy); contentTop = top; requestLayout(); calculateRatio(contentTop); updatePanelState(); } @Override public int getViewVerticalDragRange(View child) { return dragRange; } @Override public int clampViewPositionVertical(View child, int top, int dy) { if (overDrag) { // Drag over the top view height. return Math.max(top, getPaddingTop() + collapseOffset); } else { return Math.min(topViewHeight, Math.max(top, getPaddingTop() + collapseOffset)); } } @Override public void onViewReleased(View releasedChild, float xvel, float yvel) { super.onViewReleased(releasedChild, xvel, yvel); // yvel > 0 Fling down || yvel < 0 Fling up int top; if (yvel > 0 || contentTop > topViewHeight) { top = topViewHeight + getPaddingTop(); } else { top = getPaddingTop() + collapseOffset; } dragHelper.settleCapturedViewAt(releasedChild.getLeft(), top); postInvalidate(); } @Override public void onViewDragStateChanged(int state) { super.onViewDragStateChanged(state); } }; @Override public void computeScroll() { if (dragHelper.continueSettling(true)) { ViewCompat.postInvalidateOnAnimation(this); } } @Override public boolean onInterceptTouchEvent(MotionEvent ev) { try { boolean intercept = shouldIntercept && dragHelper.shouldInterceptTouchEvent(ev); return intercept; } catch (NullPointerException e) { e.printStackTrace(); } return false; } @Override public boolean onTouchEvent(MotionEvent event) { final int action = MotionEventCompat.getActionMasked(event); if (!dispatchingChildrenContentView) { try { // There seems to be a bug on certain devices: "pointerindex out of range" in viewdraghelper // https://github.com/umano/AndroidSlidingUpPanel/issues/351 dragHelper.processTouchEvent(event); } catch (Exception e) { e.printStackTrace(); } } if (action == MotionEvent.ACTION_MOVE && ratio == 0.0f) { dispatchingChildrenContentView = true; if (!dispatchingChildrenDownFaked) { dispatchingChildrenStartedAtY = event.getY(); event.setAction(MotionEvent.ACTION_DOWN); dispatchingChildrenDownFaked = true; } dragContentView.dispatchTouchEvent(event); } if (dispatchingChildrenContentView && dispatchingChildrenStartedAtY < event.getY()) { resetDispatchingContentView(); } if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL) { resetDispatchingContentView(); dragContentView.dispatchTouchEvent(event); } return true; } private void resetDispatchingContentView() { dispatchingChildrenDownFaked = false; dispatchingChildrenContentView = false; dispatchingChildrenStartedAtY = Float.MAX_VALUE; } //================ // public //================ public PanelState getState() { return panelState; } public void openTopView(boolean anim) { // Before created if (dragContentView.getHeight() == 0) { panelState = PanelState.EXPANDED; if (panelListener != null) { panelListener.onSliding(1.0f); } } else { resetDragContent(anim, topViewHeight); } } public void closeTopView(boolean anim) { if (dragContentView.getHeight() == 0) { panelState = PanelState.COLLAPSED; if (panelListener != null) { panelListener.onSliding(0.0f); } }else{ resetDragContent(anim, getPaddingTop() + collapseOffset); } } public void updateTopViewHeight(int height){ ViewGroup.LayoutParams layoutParams = topView.getLayoutParams(); layoutParams.height = height; topView.setLayoutParams(layoutParams); } public void toggleTopView() { toggleTopView(false); } public void toggleTopView(boolean touchMode) { switch (panelState) { case COLLAPSED: openTopView(true); if (touchMode) { setTouchMode(true); } break; case EXPANDED: closeTopView(true); if (touchMode) { setTouchMode(false); } break; } } public DragTopLayout setTouchMode(boolean shouldIntercept) { this.shouldIntercept = shouldIntercept; return this; } /** * Setup the drag listener. * * @return SetupWizard */ public DragTopLayout listener(PanelListener panelListener) { this.panelListener = panelListener; return this; } /** * Set the refresh position while dragging you want. * The default value is 1.5f. * * @return SetupWizard */ public DragTopLayout setRefreshRatio(float ratio) { this.refreshRatio = ratio; return this; } /** * Set enable drag over. * The default value is true. * * @return SetupWizard */ public DragTopLayout setOverDrag(boolean overDrag) { this.overDrag = overDrag; return this; } /** * Set the content view. Pass the id of the view (R.id.xxxxx). * This one will be set as the content view and will be dragged together with the topView * * @param id The id (R.id.xxxxx) of the content view. * @return */ public DragTopLayout setDragContentViewId(int id) { this.dragContentViewId = id; return this; } /** * Set the top view. The top view is the header view that will be dragged out. * Pass the id of the view (R.id.xxxxx) * * @param id The id (R.id.xxxxx) of the top view * @return */ public DragTopLayout setTopViewId(int id) { this.topViewId = id; return this; } public boolean isOverDrag() { return overDrag; } /** * Get refresh state */ public boolean isRefreshing() { return isRefreshing; } public void setRefreshing(boolean isRefreshing) { this.isRefreshing = isRefreshing; } /** * Complete refresh and reset the refresh state. */ public void onRefreshComplete() { isRefreshing = false; } /** * Set the collapse offset * * @return SetupWizard */ public DragTopLayout setCollapseOffset(int px) { collapseOffset = px; resetContentHeight(); return this; } public int getCollapseOffset() { return collapseOffset; } // --------------------- public interface PanelListener { /** * Called while the panel state is changed. */ public void onPanelStateChanged(PanelState panelState); /** * Called while dragging. * ratio >= 0. */ public void onSliding(float ratio); /** * Called while the ratio over refreshRatio. */ public void onRefresh(); } public static class SimplePanelListener implements PanelListener { @Override public void onPanelStateChanged(PanelState panelState) { } @Override public void onSliding(float ratio) { } @Deprecated @Override public void onRefresh() { } } /** * Save the instance state */ private static class SavedState extends BaseSavedState { int panelState; SavedState(Parcelable superState) { super(superState); } } }
b89473617aed88a98e57d721864836611ff0839f
13c2d3db2d49c40c74c2e6420a9cd89377f1c934
/program_data/JavaProgramData/71/827.java
85f59c3030ecaf32dcb01dfc9ad79f9c5459e1b8
[ "MIT" ]
permissive
qiuchili/ggnn_graph_classification
c2090fefe11f8bf650e734442eb96996a54dc112
291ff02404555511b94a4f477c6974ebd62dcf44
refs/heads/master
2021-10-18T14:54:26.154367
2018-10-21T23:34:14
2018-10-21T23:34:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
920
java
package <missing>; public class GlobalMembers { public static int Main() { int n; n = Integer.parseInt(ConsoleInput.readToWhiteSpace(true)); for (int i = 0;i < n;i++) { int year; int mon1; int mon2; int sum = 0; int[] a = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; year = Integer.parseInt(ConsoleInput.readToWhiteSpace(true)); mon1 = Integer.parseInt(ConsoleInput.readToWhiteSpace(true)); mon2 = Integer.parseInt(ConsoleInput.readToWhiteSpace(true)); if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) { a[2] = 29; } if (mon1 > mon2) { int t; t = mon1; mon1 = mon2; mon2 = t; } for (int i = mon1;i < mon2;i++) { sum = sum + a[i]; } if (sum % 7 == 0) { System.out.print("YES"); System.out.print("\n"); } else { System.out.print("NO"); System.out.print("\n"); } } return 0; } }
ad0f17bcdf7dda4c0f8ac7a3df2b3137f2944b88
695f166dcf184219269913f6932924096c41147b
/mms-app/archive/pmml/SupportVectorMachineModel.java
26466a572d423494c5047e51d1be5b9108606a2f
[]
no_license
markmo/mms
c17168cec33533a890cab2aa72f165317919a7f8
9c3fe0338dda3dfec0cbf0392d74ffc7b21f735e
refs/heads/master
2021-05-28T00:19:39.591536
2013-12-03T13:02:30
2013-12-03T13:02:30
7,142,214
0
0
null
null
null
null
UTF-8
Java
false
false
11,581
java
package models.pmml; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}MiningSchema"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Output" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelStats" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelExplanation" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Targets" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LocalTransformations" minOccurs="0"/> * &lt;sequence> * &lt;choice> * &lt;element ref="{http://www.dmg.org/PMML-4_1}LinearKernelType"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}PolynomialKernelType"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}RadialBasisKernelType"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}SigmoidKernelType"/> * &lt;/choice> * &lt;/sequence> * &lt;element ref="{http://www.dmg.org/PMML-4_1}VectorDictionary"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}SupportVectorMachine" maxOccurs="unbounded"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}ModelVerification" minOccurs="0"/> * &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attribute name="modelName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="functionName" use="required" type="{http://www.dmg.org/PMML-4_1}MINING-FUNCTION" /> * &lt;attribute name="algorithmName" type="{http://www.w3.org/2001/XMLSchema}string" /> * &lt;attribute name="threshold" type="{http://www.dmg.org/PMML-4_1}REAL-NUMBER" default="0" /> * &lt;attribute name="svmRepresentation" type="{http://www.dmg.org/PMML-4_1}SVM-REPRESENTATION" default="SupportVectors" /> * &lt;attribute name="classificationMethod" type="{http://www.dmg.org/PMML-4_1}SVM-CLASSIFICATION-METHOD" default="OneAgainstAll" /> * &lt;attribute name="isScorable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "SupportVectorMachineModel", namespace = "http://www.dmg.org/PMML-4_1") public class SupportVectorMachineModel { @XmlElementRefs({ @XmlElementRef(name = "ModelVerification", namespace = "http://www.dmg.org/PMML-4_1", type = ModelVerification.class, required = false), @XmlElementRef(name = "SigmoidKernelType", namespace = "http://www.dmg.org/PMML-4_1", type = SigmoidKernelType.class, required = false), @XmlElementRef(name = "LocalTransformations", namespace = "http://www.dmg.org/PMML-4_1", type = LocalTransformations.class, required = false), @XmlElementRef(name = "SupportVectorMachine", namespace = "http://www.dmg.org/PMML-4_1", type = SupportVectorMachine.class, required = false), @XmlElementRef(name = "Output", namespace = "http://www.dmg.org/PMML-4_1", type = Output.class, required = false), @XmlElementRef(name = "Extension", namespace = "http://www.dmg.org/PMML-4_1", type = Extension.class, required = false), @XmlElementRef(name = "MiningSchema", namespace = "http://www.dmg.org/PMML-4_1", type = MiningSchema.class, required = false), @XmlElementRef(name = "ModelStats", namespace = "http://www.dmg.org/PMML-4_1", type = ModelStats.class, required = false), @XmlElementRef(name = "PolynomialKernelType", namespace = "http://www.dmg.org/PMML-4_1", type = PolynomialKernelType.class, required = false), @XmlElementRef(name = "VectorDictionary", namespace = "http://www.dmg.org/PMML-4_1", type = VectorDictionary.class, required = false), @XmlElementRef(name = "ModelExplanation", namespace = "http://www.dmg.org/PMML-4_1", type = ModelExplanation.class, required = false), @XmlElementRef(name = "LinearKernelType", namespace = "http://www.dmg.org/PMML-4_1", type = LinearKernelType.class, required = false), @XmlElementRef(name = "RadialBasisKernelType", namespace = "http://www.dmg.org/PMML-4_1", type = RadialBasisKernelType.class, required = false), @XmlElementRef(name = "Targets", namespace = "http://www.dmg.org/PMML-4_1", type = Targets.class, required = false) }) protected List<Object> content; @XmlAttribute(name = "modelName") protected String modelName; @XmlAttribute(name = "functionName", required = true) protected MININGFUNCTION functionName; @XmlAttribute(name = "algorithmName") protected String algorithmName; @XmlAttribute(name = "threshold") protected Double threshold; @XmlAttribute(name = "svmRepresentation") protected SVMREPRESENTATION svmRepresentation; @XmlAttribute(name = "classificationMethod") protected SVMCLASSIFICATIONMETHOD classificationMethod; @XmlAttribute(name = "isScorable") protected Boolean isScorable; /** * Gets the rest of the content model. * * <p> * You are getting this "catch-all" property because of the following reason: * The field name "Extension" is used by two different parts of a schema. See: * line 600 of file:/Users/markmo/src/mms/mms-app/schema/pmml-4-1.xsd * line 582 of file:/Users/markmo/src/mms/mms-app/schema/pmml-4-1.xsd * <p> * To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: * Gets the value of the content property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the content property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ModelVerification } * {@link SigmoidKernelType } * {@link LocalTransformations } * {@link SupportVectorMachine } * {@link Output } * {@link Extension } * {@link MiningSchema } * {@link ModelStats } * {@link PolynomialKernelType } * {@link VectorDictionary } * {@link RadialBasisKernelType } * {@link ModelExplanation } * {@link LinearKernelType } * {@link Targets } * * */ public List<Object> getContent() { if (content == null) { content = new ArrayList<Object>(); } return this.content; } /** * Gets the value of the modelName property. * * @return * possible object is * {@link String } * */ public String getModelName() { return modelName; } /** * Sets the value of the modelName property. * * @param value * allowed object is * {@link String } * */ public void setModelName(String value) { this.modelName = value; } /** * Gets the value of the functionName property. * * @return * possible object is * {@link MININGFUNCTION } * */ public MININGFUNCTION getFunctionName() { return functionName; } /** * Sets the value of the functionName property. * * @param value * allowed object is * {@link MININGFUNCTION } * */ public void setFunctionName(MININGFUNCTION value) { this.functionName = value; } /** * Gets the value of the algorithmName property. * * @return * possible object is * {@link String } * */ public String getAlgorithmName() { return algorithmName; } /** * Sets the value of the algorithmName property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithmName(String value) { this.algorithmName = value; } /** * Gets the value of the threshold property. * * @return * possible object is * {@link Double } * */ public double getThreshold() { if (threshold == null) { return 0.0D; } else { return threshold; } } /** * Sets the value of the threshold property. * * @param value * allowed object is * {@link Double } * */ public void setThreshold(Double value) { this.threshold = value; } /** * Gets the value of the svmRepresentation property. * * @return * possible object is * {@link SVMREPRESENTATION } * */ public SVMREPRESENTATION getSvmRepresentation() { if (svmRepresentation == null) { return SVMREPRESENTATION.SUPPORT_VECTORS; } else { return svmRepresentation; } } /** * Sets the value of the svmRepresentation property. * * @param value * allowed object is * {@link SVMREPRESENTATION } * */ public void setSvmRepresentation(SVMREPRESENTATION value) { this.svmRepresentation = value; } /** * Gets the value of the classificationMethod property. * * @return * possible object is * {@link SVMCLASSIFICATIONMETHOD } * */ public SVMCLASSIFICATIONMETHOD getClassificationMethod() { if (classificationMethod == null) { return SVMCLASSIFICATIONMETHOD.ONE_AGAINST_ALL; } else { return classificationMethod; } } /** * Sets the value of the classificationMethod property. * * @param value * allowed object is * {@link SVMCLASSIFICATIONMETHOD } * */ public void setClassificationMethod(SVMCLASSIFICATIONMETHOD value) { this.classificationMethod = value; } /** * Gets the value of the isScorable property. * * @return * possible object is * {@link Boolean } * */ public boolean isIsScorable() { if (isScorable == null) { return true; } else { return isScorable; } } /** * Sets the value of the isScorable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsScorable(Boolean value) { this.isScorable = value; } }
d0cbd5ec6f3f8bc62a2bb1975faf540060e1eb60
6d26fae2955aa359680e2a66a1e8dd218e495dc8
/Module 1/T01.02-Exercise-DisplayToyList/app/src/main/java/com/example/android/favoritetoys/MainActivity.java
8130a989b74931d6483a4b133615461a05a595a8
[]
no_license
Abhilash11Addanki/6052_MP
a6663dcd3f25900623f6bd423ccb337f2cb0d0d7
23d72ba5ebe7d20d4e140b1dfe2ddb4f13fc90a9
refs/heads/master
2020-04-28T03:08:06.975330
2019-03-25T16:56:54
2019-03-25T16:56:54
174,924,831
0
0
null
null
null
null
UTF-8
Java
false
false
1,618
java
/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.example.android.favoritetoys; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.widget.TextView; public class MainActivity extends AppCompatActivity { // TODO (1) Declare a TextView variable called mToysListTextView TextView mToysListTextView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mToysListTextView = (TextView) findViewById(R.id.tv_toy_names); // TODO (3) Use findViewById to get a reference to the TextView from the layout // TODO (4) Use the static ToyBox.getToyNames method and store the names in a String array String[] toyNames = ToyBox.getToyNames(); // TODO (5) Loop through each toy and append the name to the TextView (add \n for spacing) for (String toyName : toyNames) { mToysListTextView.append(toyName + "\n\n\n"); } } }
6b1ea12a0c5d7ba0d57e35ab8bc59a6b095a68c6
e2c6a7a5189169020eaf47040f85cbd9a62d3dff
/AnimalWebService/src/java/entity/Color.java
b149199e49aa7230a67e3562c9d153559a1a9c17
[]
no_license
biropatrik/allatnyilvantarto_rendszer
75f6a167521e8e100888d9669e509dc1d58597db
ea39d97c1bf625ee8a23456b858ac72ff5ce28a9
refs/heads/main
2023-07-21T07:07:40.836294
2021-08-27T17:27:13
2021-08-27T17:27:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,521
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package entity; import java.io.Serializable; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.NamedQueries; import javax.persistence.NamedQuery; import javax.persistence.Table; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; import javax.xml.bind.annotation.XmlRootElement; /** * * @author Patrik */ @Entity @Table(name = "color") @XmlRootElement @NamedQueries({ @NamedQuery(name = "Color.findAll", query = "SELECT c FROM Color c"), @NamedQuery(name = "Color.findById", query = "SELECT c FROM Color c WHERE c.id = :id"), @NamedQuery(name = "Color.findByName", query = "SELECT c FROM Color c WHERE c.name = :name")}) public class Color implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Basic(optional = false) @Column(name = "id") private Integer id; @Basic(optional = false) @NotNull @Size(min = 1, max = 250) @Column(name = "name") private String name; public Color() { } public Color(Integer id) { this.id = id; } public Color(Integer id, String name) { this.id = id; this.name = name; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public int hashCode() { int hash = 0; hash += (id != null ? id.hashCode() : 0); return hash; } @Override public boolean equals(Object object) { // TODO: Warning - this method won't work in the case the id fields are not set if (!(object instanceof Color)) { return false; } Color other = (Color) object; if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) { return false; } return true; } @Override public String toString() { return "entity.Color[ id=" + id + " ]"; } }
7d06a6a580fbb4215633c05da4b32aefb2198223
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/23/23_e3374f8da7be1767d0b2026e637db113e320d7c6/UrlParameterMultimap/23_e3374f8da7be1767d0b2026e637db113e320d7c6_UrlParameterMultimap_t.java
e62e2f1d57855e51129322616537d2222337d94c
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
6,678
java
package gumi.builders.url; import java.util.*; /** * A String to String multimap implementation best suitable for 0-100 entries. */ public class UrlParameterMultimap implements Map<String, List<String>> { private final List<Entry<String, String>> data; public static final class Immutable extends UrlParameterMultimap { public Immutable(final List<Entry<String, String>> data) { super(Collections.unmodifiableList(new LinkedList<Entry<String, String>>(data))); } } private UrlParameterMultimap(final List<Entry<String, String>> data) { this.data = data; } public int size() { return data.size(); } public boolean isEmpty() { return data.isEmpty(); } private static Entry<String, String> newEntry(final String key, final String value) { return new AbstractMap.SimpleImmutableEntry<String, String>(key, value); } public static UrlParameterMultimap newMultimap() { return new UrlParameterMultimap(new LinkedList<Entry<String, String>>()); } /** * Make a mutable copy. */ public UrlParameterMultimap deepCopy() { return new UrlParameterMultimap(new LinkedList<Entry<String, String>>(data)); } /** * Make a immutable copy. */ public Immutable immutable() { if (this instanceof Immutable) { return (Immutable) this; } else { return new Immutable(data); } } public boolean containsKey(final Object key) { if (key == null) { throw new IllegalArgumentException("key can't be null"); } for (final Entry<String, String> e : data) { if (key.equals(e.getKey())) { return true; } } return false; } public boolean containsValue(final Object value) { if (value == null) { throw new IllegalArgumentException("value can't be null"); } for (final Entry<String, String> e : data) { if (value.equals(e.getValue())) { return true; } } return false; } public List<String> get(final Object key) { final List<String> ret = new ArrayList<String>(); for (final Entry<String, String> e : data) { if (key.equals(e.getKey())) { ret.add(e.getValue()); } } return ret.isEmpty() ? null : ret; } public UrlParameterMultimap add(final String key, final String value) { data.add(newEntry(key, value)); return this; } public UrlParameterMultimap replaceValues(final String key, final String value) { this.remove(key); this.add(key, value); return this; } public List<String> put(final String key, final List<String> value) { final List<String> overflow = new ArrayList<String>(value); final ListIterator<Entry<String, String>> it = data.listIterator(); while (it.hasNext()) { final Entry<String, String> e = it.next(); if (key.equals(e.getKey()) && value.contains(e.getValue())) { overflow.remove(e.getValue()); } else if (key.equals(e.getKey())) { it.remove(); } } for (final String v : overflow) { this.add(key, v); } return null; } public List<String> remove(final Object key) { if (key == null) { throw new IllegalArgumentException("can't remove null"); } final List<String> ret = new ArrayList<String>(); final ListIterator<Entry<String, String>> it = data.listIterator(); while (it.hasNext()) { final Entry<String, String> e = it.next(); if (key.equals(e.getKey())) { ret.add(e.getValue()); it.remove(); } } return ret; } public UrlParameterMultimap removeAllValues(final String key) { this.remove(key); return this; } public UrlParameterMultimap remove(final String key, final String value) { if (key == null || value == null) { throw new IllegalArgumentException("can't remove null"); } final ListIterator<Entry<String, String>> it = data.listIterator(); while (it.hasNext()) { final Entry<String, String> e = it.next(); if (key.equals(e.getKey()) && value.equals(e.getValue())) { it.remove(); } } return this; } public void putAll(Map<? extends String, ? extends List<String>> m) { for (final Entry<? extends String, ? extends List<String>> e : m.entrySet()) { this.put(e.getKey(), e.getValue()); } } public void clear() { data.clear(); } public Set<String> keySet() { final Set<String> ret = new HashSet<String>(); for (final Entry<String, String> e : data) { ret.add(e.getKey()); } return ret; } public List<Entry<String, String>> flatEntryList() { return data; } public Set<Entry<String, List<String>>> entrySet() { final LinkedHashMap<String, List<String>> entries = new LinkedHashMap<String, List<String>>(); for (final Entry<String, String> e : data) { if (!entries.containsKey(e.getKey())) { entries.put(e.getKey(), new LinkedList<String>()); } entries.get(e.getKey()).add(e.getValue()); } for (final Entry<String, List<String>> e : entries.entrySet()) { e.setValue(Collections.unmodifiableList(e.getValue())); } return Collections.unmodifiableSet(entries.entrySet()); } public Collection<List<String>> values() { final List<List<String>> ret = new LinkedList<List<String>>(); for (final Entry<String, List<String>> e : this.entrySet()) { ret.add(e.getValue()); } return Collections.unmodifiableList(ret); } @Override public boolean equals(final Object other) { if (!(other instanceof UrlParameterMultimap)) { return false; } final UrlParameterMultimap otherMultimap = (UrlParameterMultimap) other; return data.equals(otherMultimap.data); } @Override public int hashCode() { return data.hashCode(); } }
086c63f196561dd086835260af8ac5c6195ed2e7
ae456aae742bbd99f6b106f5af42ca573160f39a
/app/src/main/java/research/bwsharingapp/sockcomm/CommConstants.java
18a855ebfc106814592be437f312251d9cd3ce3b
[]
no_license
alexditu/BwSharingApp
03e617d62d37e687df493fb2a166719987e515ee
ea6b613550349c35a4fbc93e4e3c0dc30ee246ef
refs/heads/master
2021-01-11T20:07:20.596962
2017-08-29T22:54:46
2017-08-29T22:54:46
79,042,200
0
0
null
null
null
null
UTF-8
Java
false
false
305
java
package research.bwsharingapp.sockcomm; /** * Created by alex on 5/1/17. */ public class CommConstants { public static final int COMM_PORT = 5555; /* connection to kibbutz server */ public static final int KB_PORT = 50051; public static final String KB_IP = "192.168.0.105"; }
11e15884326e159764959d307d567a17d35e333e
bd25a8756cdce49992df6ee19c27cffbf0313abe
/KH_semiProject/src/controller/mbs/LoginControllers.java
25a2a0bc17c24cac3c8dfdb10370c4584a536f3c
[]
no_license
lss7612/kh_semi_workspace
cb52de6886b9d9e7d72d7144c330ac086d917d5b
b5bcc5b6ae4bb9f47bdc906ded7ff57c30c26b37
refs/heads/master
2023-01-08T02:33:15.055698
2020-11-05T02:47:53
2020-11-05T02:47:53
305,536,373
2
3
null
2020-11-05T02:47:56
2020-10-19T23:22:09
JavaScript
UTF-8
Java
false
false
4,686
java
package controller.mbs; import java.io.IOException; import java.net.URLEncoder; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import dao.face.mbs.LoginDao; import dto.common.UserInfo; import service.face.chat.UserChatService; import service.impl.chat.UserChatServiceImpl; /** * Servlet implementation class LoginControllers */ @WebServlet("/Login/login") public class LoginControllers extends HttpServlet { private static final long serialVersionUID = 1L; private UserChatService userChatService = new UserChatServiceImpl(); @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { req.getRequestDispatcher("/views/login/login.jsp").forward(req, resp); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // 전달데이터 한글 인코딩 설정(UTF-8) req.setCharacterEncoding("UTF-8"); // 전달해주는고 resp.setContentType("text/html; charset=utf-8"); //세션 정보 가져오기 HttpSession session = req.getSession(); //클라이언트 ip확인하기 String userIp = getRemoteAddr(req); System.out.println(userIp); //채팅 유저 정보 객체 생성 UserInfo user = null; //유저 정보 가져오기(전달받은 id를 이용하여) user = userChatService.infoById(req.getParameter("user_id"), userIp); //세션에 유저 정보 저장 session.setAttribute("userinfo", user); session.setAttribute("userIp", userIp); //저장된 세션정보 확인 System.out.println("session info : "+session.getAttribute("userinfo")); LoginDao dao = new LoginDao(); // 사용자가 요청한 URL String url = req.getRequestURL().toString(); // // getRequestURL StringBuffer 로 되어있어서 toString으로 변환해 주어야 한다. // 스트링.indexOf("검색어") 검색어를 찾은 위치값, 없으면 -1 리턴 if (url.indexOf("/Login/login") != -1) { // 폼에서 입력한 값 String user_id = req.getParameter("user_id"); String user_pw = req.getParameter("user_pw"); /* String grade_no = req.getParameter("grade_no"); */ System.out.println("유저아이디 : " + user_id + "," + "유저 패스 : " + user_pw); int user_grade = dao.gradeCheck(user_id, user_pw); String user_name = dao.loginCheck(user_id, user_pw, 2); System.out.println("유저이름 : " + user_name + "\n" + "유저등급 : " + Integer.toString(user_grade)); // 로그인 여부 String message = new String(); String page = new String(); // if (user != null) { message = user_name + "(" + user_id + ")" + "님!"; page = "/views/sh/day1.jsp"; // session 객체 인스턴스 session.setAttribute("user_id", user_id); session.setAttribute("message", message); } else { message = "아이디 또는 비밀번호가 일치하지 않습니다."; // 로그인 페이지로 돌아감 page = "/Login/login?message=" + URLEncoder.encode(message, "utf-8"); } resp.sendRedirect(req.getContextPath() + page); } } //클라이언트 ip가져오기 public static String getRemoteAddr(HttpServletRequest request) { String ip = null; ip = request.getHeader("X-Forwarded-For"); if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("Proxy-Client-IP"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("WL-Proxy-Client-IP"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("HTTP_CLIENT_IP"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("HTTP_X_FORWARDED_FOR"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("X-Real-IP"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("X-RealIP"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("REMOTE_ADDR"); } if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getRemoteAddr(); } return ip; } }
87de377d6bc57208f952198c035acf04352f5636
6fa9eda692cf4fe6d48f2d40600db59c20803577
/platform-emf/src/main/java/com/softicar/platform/emf/action/marker/EmfScopeActionMarker.java
710aeab1af94467833bc66603107ebe9ce978f1b
[ "MIT" ]
permissive
softicar/platform
a5cbfcfe0e6097feae7f42d3058e716836c9f592
a6dad805156fc230a47eb7406959f29c59f2d1c2
refs/heads/main
2023-09-01T12:16:01.370646
2023-08-29T08:50:46
2023-08-29T08:50:46
408,834,598
4
2
MIT
2023-08-08T12:40:04
2021-09-21T13:38:04
Java
UTF-8
Java
false
false
380
java
package com.softicar.platform.emf.action.marker; import com.softicar.platform.emf.action.IEmfScopeAction; public class EmfScopeActionMarker extends AbstractEmfActionMarker { public EmfScopeActionMarker(IEmfScopeAction<?> action) { super(action.getClass()); } public <T extends IEmfScopeAction<?>> EmfScopeActionMarker(Class<T> actionClass) { super(actionClass); } }
11167bb9e96fb6eec39f609d23acd4af61884fc3
defdb3e9e262753b9d0b8af2dfa9f22a9e5767ad
/codingBlocks/src/main/java/leetcode/easy/L762PrimeNumberOfSetBits.java
e5dffad1d7cc059c7da1bebfc5a32ec7d944be0b
[]
no_license
khansaadbinhasan/interview-preparation
79f499263424cddb0756ffb11c30f3ea48edd089
1f574076128e4424fb7908f65bacc4612bbb9890
refs/heads/master
2023-08-23T03:42:17.302403
2021-10-24T11:53:00
2021-10-24T11:53:00
398,568,175
0
0
null
null
null
null
UTF-8
Java
false
false
753
java
package leetcode.easy; //6 //10 //10 //15 //1 //2 //1 //1 //1 //100 //1 //10000 public class L762PrimeNumberOfSetBits { public int countPrimeSetBits(int left, int right) { int count = 0; for( int i = left; i <= right; i++ ){ if( isPrime(getBits(i)) ) count++; } return count; } public int getBits(int n){ int count = 0; while( n > 0 ){ count += (n&1); n = n >> 1; } return count; } public boolean isPrime(int n){ if( n <= 1 ) return false; for( int i = 2; i < n; i++ ){ if( n % i == 0 ) return false; } return true; } }
fca49e2774333fac39b736e26ff5678a437b1aa4
4c18a1f39e44de40a047403c15a9a72a0385ccf8
/src/main/java/com/flink/item/Result.java
02abbed306896dd9a5197d9650a032e8c90dcb54
[ "Apache-2.0" ]
permissive
fangxy-7010/flinkLearn
8d694ce663cac627515c6736e80264671df2942c
adadb3efc232dd561fd19ed2d0e51cbf3b6f907f
refs/heads/master
2023-08-09T22:14:47.981389
2020-06-24T06:14:53
2020-06-24T06:14:53
null
0
0
null
null
null
null
UTF-8
Java
false
false
386
java
package com.flink.item; import lombok.Data; import java.io.Serializable; @Data public class Result implements Serializable { private static final long serialVersionUID = 1422543153662821631L; public String itemId; // 商品ID public String windowEndDate; // 窗口结束时间戳 public long viewCount; // 商品的点击量 public String behavior; }
5f83aa85f4b4ac94d49cd086f95007f782710e23
8b911334e0e10a8370c075e3dcf90a1e7f04b545
/src/main/java/com/example/role/configuration/SecurityConfig.java
1b64a1a975e9ce340d5be741d1d874c47c281b5f
[]
no_license
zees007/Spring-Security-Multiple-Role-Assignment
c5c0dc92738771dfa3153229e15c7ea18f03c506
0c2814e9491fd05b03708b6c19033b3c260431e5
refs/heads/master
2023-04-27T10:30:54.315426
2021-05-07T17:15:20
2021-05-07T17:15:20
365,303,917
0
0
null
null
null
null
UTF-8
Java
false
false
2,973
java
package com.example.role.configuration; import com.example.role.helpers.UserDeatilsServiceImpl; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; import org.springframework.security.authentication.dao.DaoAuthenticationProvider; import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; import org.springframework.security.config.http.SessionCreationPolicy; import org.springframework.security.core.userdetails.UserDetailsService; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; import org.springframework.security.web.AuthenticationEntryPoint; import org.springframework.security.web.authentication.www.BasicAuthenticationEntryPoint; /** * @author Zeeshan Adil * Created by mhmdz on Nov 27, 2020 */ @Configuration @EnableWebSecurity @ComponentScan("com.example.*") @PropertySource("classpath:application.properties") @EnableGlobalMethodSecurity(prePostEnabled = true, securedEnabled = true) public class SecurityConfig extends WebSecurityConfigurerAdapter { @Bean public UserDetailsService userDetailsService(){ return new UserDeatilsServiceImpl(); } @Bean public BCryptPasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(); } @Bean public DaoAuthenticationProvider authenticationProvider(){ DaoAuthenticationProvider authProvider = new DaoAuthenticationProvider(); authProvider.setPasswordEncoder(passwordEncoder()); authProvider.setUserDetailsService(userDetailsService()); return authProvider; } @Override protected void configure(AuthenticationManagerBuilder auth) throws Exception { auth.authenticationProvider(authenticationProvider()); } @Override protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests() .antMatchers("/projects/save/**").hasAuthority("PROVIDER") .antMatchers("projects/delete/**").hasAuthority("REQUESTOR") .anyRequest().authenticated(); // .and().formLogin().permitAll() // .and().logout().permitAll(); // .antMatchers("/").hasAnyAuthority("ADMIN", "REQUESTOR", "PROVIDER") // .antMatchers("/projects/save**").hasAuthority("ADMIN") // .antMatchers("projects/delete/**").hasAuthority("REQUESTOR") } }
ebdecb1db17da24e4e6fa7b82c8240c22f4a5b5a
e2ba61ed60afaa40f7d2cdd62e2e19b634688901
/Internet/GoogleMaps.java
42e1110acc21d849b671f590191a5e00869c9672
[]
no_license
AysenurA/KANBUL
c3d9ca1264a9563b9fe0f60f5acf385001a329c0
b221ce0d0f417fd4c03c03a2f175b22e55721ac3
refs/heads/master
2021-08-17T10:05:54.434705
2017-11-21T04:15:42
2017-11-21T04:15:42
105,702,528
0
2
null
2017-11-03T18:04:39
2017-10-03T20:57:46
Java
ISO-8859-9
Java
false
false
4,540
java
package Internet; import java.io.IOException; import java.net.URISyntaxException; import java.util.ArrayList; public class GoogleMaps { private String mahalle=""; private String sokak=""; private String cadde=""; private String il=""; private String ilçe=""; private String bulvar=""; private String postaKodu=""; private String no =""; public String maps ="https://www.google.com.tr/maps/place/"; public void ConnectMaps(String Address) throws IOException, URISyntaxException { String url=maps+Address; java.awt.Desktop.getDesktop().browse(new java.net.URI(url)); } public String GoogleMapsFindAddress(String Address) { // mahalle , Sokak , Cadde , İl / ilçe ,bulvar String[] retval = new String[100]; Address=Address.toLowerCase(); if(Address.contains("mahallesi") || Address.contains("mh.") ) { Address= Address.replace("mahallesi", "mahallesi,"); Address= Address.replace("mah.", "mahallesi,"); // System.out.println( Address); } if(Address.contains("sokak") || Address.contains("sk.") ) { Address= Address.replace("sokak", "sokak,"); Address= Address.replace("sok.", "sokak,"); // System.out.println( "sok:"+Address); } if(Address.contains("cad.")||Address.contains("caddesi")) { Address= Address.replace("caddesi", "caddesi,"); Address= Address.replace("cad.", "caddesi,"); //System.out.println("cad:"+Address); } if(Address.contains("bulvarı")||Address.contains("blv.")) { Address= Address.replace("bulvarı", "bulvarı,"); Address= Address.replace("blv", "blv.,"); //System.out.println("blv.:"+bulvar); } if(Address.contains("no:") || Address.contains("no") ) { int indx=Address.indexOf(Address.substring(Address.indexOf("no"))); String no = ""; for(int i = indx; ;i++) { if( Character.isDigit(Address.charAt(i))) { no +=Address.charAt(i)+""; } else if(!no.equals("")) break; } Address= Address.replace("no:"+no, "no:"+no+","); //System.out.println("no"+Address); } retval = Address.split(", "); for(int i = 0 ; i<retval.length;i++) { // System.out.println(retval[i]); if(retval[i].contains("mahallesi")) mahalle=retval[i]; else if(retval[i].contains("sokak")) sokak=retval[i]; else if(retval[i].contains("cadde")) { cadde=retval[i]; // System.out.println(cadde); } else if(retval[i].contains("bulvar") || retval[i].contains("blv.")) bulvar=retval[i]; else if(retval[i].contains("no")) no = retval[i]; else if(i==retval.length-1) { // System.out.println(retval[i]); postaKodu =retval[i].substring(0,retval[i].indexOf(" ")); ilçe=retval[i].substring(retval[i].indexOf(" ")+1,retval[i].indexOf("/")); il=retval[i].substring(retval[i].indexOf("/")+1); }} mahalle =(mahalle.replace(" ", "+")); sokak=(sokak.replace(" ", "+")); cadde=(cadde.replace(" ", "+")); bulvar=(bulvar.replace(" ", "+")); no=(no.replace(" ", "+")); il =il+"%2F"+ilçe; // System.out.println(il); //System.out.println(postaKodu.replace(" ", "+")); Address =mahalle+","+"+"+cadde+"+"+no+",+"+postaKodu+"+"+il; //Balkiraz+Mahallesi,+Mamak+Cd.+No:10,+06620+Mamak%2FAnkara/)) // eğer boş gelirse direkt relapca ile boslukları "" değişter ve formata ekle return Address; } public static void main (String []args) throws IOException, URISyntaxException { GoogleMaps test = new GoogleMaps(); String a=test.GoogleMapsFindAddress( " Mamak Caddesi No:10 06620 Mamak/Ankara"); test.ConnectMaps(a); } }
a84194f33d308a45fd408f26cea5ff304c380d17
872601067d4ebaeeea4b90b966ec87583a2f8b4a
/Java Programming Fundamentals (week 3,4 and 5)/Classes and Objects Mandatory Hands-on/885194/Ticket Price Calculation - Static/Main.java
4d6b0aaa5adbe4a5069511859054a71963d56d07
[]
no_license
VIJAYAJUPUDI/Stage1
ef36fb96157c2200457c4bddfc01f1d6b169ed5e
84087731d3ea7a5a966f80f5d8fab3e73bebce88
refs/heads/main
2023-03-04T19:25:14.105218
2021-02-12T08:52:05
2021-02-12T08:52:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,269
java
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Ticket ticket = new Ticket(); System.out.println("Enter no of bookings:"); int noOfBookings = sc.nextInt(); System.out.println("Enter the available tickets:"); int availableTickets = sc.nextInt(); ticket.setAvailableTickets(availableTickets); while(noOfBookings-- != 0) { System.out.println("Enter the ticketid:"); int ticketId = sc.nextInt(); ticket.setTicketid(ticketId); System.out.println("Enter the price:"); int price = sc.nextInt(); ticket.setPrice(price); System.out.println("Enter the no of tickets:"); int noOfTickets = sc.nextInt(); System.out.println("Available tickets: " + ticket.getAvailableTickets()); int totalAmount = ticket.calculateTicketCost(noOfTickets); System.out.println("Total amount:" + totalAmount); System.out.println("Available ticket after booking:" + ticket.getAvailableTickets()); } } }
c683b52b22f556ec4c8e3eaa8e0f0d7417fac78e
13bcb731080e5313bdf466097739ba59ad80756a
/src/com/fr/solution/plugin/chart/echarts/gauge/ui/EChartsGaugeChartTypePane.java
e23b05862135eb4cc9b70133c84718eb26afcf52
[]
no_license
carlhong/plugin-chart-echarts
4fe16e56b2c2027f35ffd16c9657c145fe23c128
7ca0b5c1975c4d6c0b5986dca7334e5981349248
refs/heads/master
2020-12-30T12:23:40.441070
2017-05-16T08:31:35
2017-05-16T08:31:35
91,431,844
0
0
null
2017-05-16T08:01:30
2017-05-16T08:01:30
null
UTF-8
Java
false
false
3,090
java
package com.fr.solution.plugin.chart.echarts.gauge.ui; import com.fr.chart.chartattr.Chart; import com.fr.chart.chartattr.Plot; import com.fr.design.mainframe.chart.gui.type.ChartImagePane; import com.fr.general.FRLogger; import com.fr.general.Inter; import com.fr.solution.plugin.chart.echarts.common.base.ECharts; import com.fr.solution.plugin.chart.echarts.gauge.EChartsGauge; import com.fr.solution.plugin.chart.echarts.gauge.plot.EChartsGaugePlot; import com.fr.solution.plugin.chart.echarts.common.ui.AbstractEChartsTypePane; import java.util.ArrayList; import java.util.List; public class EChartsGaugeChartTypePane extends AbstractEChartsTypePane { /** * 弹出框的标题 * * @return 弹出框的标题 */ public String title4PopupWindow() { return Inter.getLocText("Plugin-ECharts_Gauge"); } /** * 界面是否接受 * * @param ob 对象是否为chart * @return 界面是否接受对象 */ public boolean accept(Object ob) { return (ob instanceof ECharts) && ((ECharts) ob).getPlot().accept(EChartsGaugePlot.class); } @Override public Chart getDefaultChart() { return EChartsGauge.charts[0]; } @Override public void populateBean(Chart chart) { for (ChartImagePane imagePane : typeDemo) { imagePane.isPressing = false; } Plot plot = chart.getPlot(); if (plot instanceof EChartsGaugePlot) { lastTypeIndex = ((EChartsGaugePlot)plot).getGaugeType().ordinal(); typeDemo.get(lastTypeIndex).isPressing = true; } checkDemosBackground(); } @Override protected String getPlotTypeID() { return EChartsGaugePlot.PLOT_ID; } @Override protected String[] getTypeTipName() { return getNamesOfTypes(); } @Override protected String[] getTypeLayoutTipName() { return getNamesOfTypes(); } @Override public Plot getSelectedClonedPlot() { EChartsGaugePlot newPlot = null; Chart[] gaugeChart = EChartsGauge.charts; for (int i = 0, len = gaugeChart.length; i < len; i++) { if (typeDemo.get(i).isPressing) { newPlot = (EChartsGaugePlot)gaugeChart[i].getPlot(); } } Plot cloned = null; try { cloned = (Plot)newPlot.clone(); } catch (CloneNotSupportedException e) { FRLogger.getLogger().error("Error In ColumnChart"); } return cloned; } @Override public String[] getIconsOfTypes() { return new String[]{ "/com/fr/solution/plugin/chart/echarts/gauge/images/gauge60.png", //"/com/fr/solution/plugin/chart/echarts/gauge/images/gauge_type_area.png", //"/com/fr/solution/plugin/chart/echarts/gauge/images/gauge_type_radius.png", }; } @Override public String[] getNamesOfTypes() { return new String[]{ "Normal", //"Area", //"Redius" }; } }
a16b526b1d33dc043d245be032b7a10b7099a658
3e1328ba8d112b3a363cc2d4c6219521a938ff0e
/EasyAndroid/src/com/frame/easyandroid/util/PromptManager.java
c452f660432ca5e9db57aef197a44c9a4d081826
[]
no_license
rtk4616/EasyAndroids
10b388d1e7df4199c8960ad629980ad5f6aa56a9
e1af7088b999fa06d56e58968f92ba16d20151ce
refs/heads/master
2020-03-27T08:23:28.629790
2014-08-12T07:15:31
2014-08-12T07:15:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,635
java
package com.frame.easyandroid.util; import android.app.Dialog; import android.content.Context; import android.content.DialogInterface; import android.content.DialogInterface.OnKeyListener; import android.view.Gravity; import android.view.KeyEvent; import android.view.View; import android.view.View.OnClickListener; import android.view.Window; import android.view.WindowManager; import android.widget.Button; import android.widget.TextView; import com.frame.easyandroid.R; /** * Dialog显示的工具类 * * @author liuzhao * */ public class PromptManager { /** * 显示一个自定义的Dialog * * @param context * @param mag * 想要显示的信息 * @param listener * 回调接口 */ public static void showDialog(Context context, String mag, final dialogListener listener) { final Dialog d = getDialog(context, 0.5f); TextView tv = (TextView) d.findViewById(R.id.textView1); tv.setText(mag); d.setCanceledOnTouchOutside(true); Button ok = (Button) d.findViewById(R.id.button1); Button no = (Button) d.findViewById(R.id.button2); ok.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { listener.clickBut(true); d.dismiss(); } }); no.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { listener.clickBut(false); d.dismiss(); } }); d.show(); } /** * 获取显示Dialog的实例对象! * * @param context * @param f * 透明度 * @return */ private static Dialog getDialog(Context context, float f) { final Dialog d = new Dialog(context, R.style.init_game); Window window = d.getWindow(); WindowManager.LayoutParams lp = window.getAttributes(); lp.dimAmount = f;// 越大越不透明 window.setAttributes(lp); window.addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND); window.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); d.setContentView(R.layout.pop_twobtn); return d; } /** * 按功能键,模拟出来Menu进行显示! * * @param context * @param mag * 要显示的信息! * @param listener * 回调接口 */ public static void showMenu(Context context, String mag, final dialogListener listener) { final Dialog d = getDialog(context, 0.5f); TextView tv = (TextView) d.findViewById(R.id.textView1); tv.setText(mag); Window window = d.getWindow(); window.setGravity(Gravity.BOTTOM); Button ok = (Button) d.findViewById(R.id.button1); Button no = (Button) d.findViewById(R.id.button2); d.setCanceledOnTouchOutside(true);// 设置点击外部可以取消这个Dialog d.setOnKeyListener(new OnKeyListener() { @Override public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_MENU) { d.dismiss(); } return false; } }); ok.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { listener.clickBut(true); d.dismiss(); } }); no.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { /** * 在按功能键弹出的Dialog上点击取消,其实是什么事情都没做(没写代码) 在baseActivity中,可以看看理解下! */ listener.clickBut(false); d.dismiss(); } }); d.show(); } /** * 写一个接口,进行函数的回调,让调用者确定究竟做什么! * * @author liuzhao */ public interface dialogListener { void clickBut(boolean isOk); } }
8e086d9185d99c2ab139e75dbbe8cc9be5f11a10
eac3e88e31ad57b7bd88c04ca068142337207013
/src/estructuras/ast/sentencias/NodoBloque.java
f52264b8f6689ffd962bfabcb459ec6010ac5d90
[]
no_license
rferromoreno/minijava
965c5f3278e508623f5e5baa9bc5d3e1ffc0da57
1a416e9da5cef95182f90237983fb1623be865b0
refs/heads/master
2020-06-14T22:59:39.729159
2016-12-02T14:32:29
2016-12-02T14:32:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,277
java
package estructuras.ast.sentencias; import java.util.HashMap; import java.util.LinkedList; import estructuras.ts.TablaSimbolos; import estructuras.ts.variables.VarLocal; import estructuras.ts.variables.Variable; import excepciones.semanticas.ExcepcionSemantica; import excepciones.semanticas.ExcepcionVarLocalDuplicada; import modulos.GenCod; public class NodoBloque extends NodoSentencia { private LinkedList<NodoSentencia> sentencias; private HashMap<String, Variable> varsBloque; public NodoBloque() { sentencias = new LinkedList<NodoSentencia>(); varsBloque = new HashMap<String, Variable>(); } public NodoBloque(LinkedList<NodoSentencia> listaSent) { sentencias = listaSent; varsBloque = new HashMap<String, Variable>(); } public NodoBloque(LinkedList<NodoSentencia> listaSent, HashMap<String,Variable> variables) { sentencias = listaSent; varsBloque = new HashMap<String, Variable>(variables); } public LinkedList<NodoSentencia> getSentencias() { return sentencias; } public void setSentencias(LinkedList<NodoSentencia> sentencias) { this.sentencias = sentencias; } public HashMap<String, Variable> getVariables() { return varsBloque; } public void setVariables(HashMap<String,Variable> varsBloque) { this.varsBloque = varsBloque; } public void agregarVariable(VarLocal var) throws ExcepcionSemantica { if (varsBloque.containsKey(var.getToken().getLexema())) throw new ExcepcionVarLocalDuplicada(var.getToken().getLexema(),var.getToken().getLinea()); else { varsBloque.put(var.getToken().getLexema(), var); } } public void chequear() throws ExcepcionSemantica { NodoBloque anidado = TablaSimbolos.bloqueActual; TablaSimbolos.bloqueActual = this; for (NodoSentencia sent : sentencias) { sent.chequear(); } HashMap<String, Variable> tablaVariables = TablaSimbolos.metodoActual.getTablaVariables(); for (String nombreVar : varsBloque.keySet()) { tablaVariables.remove(nombreVar); } int cantVarsLocales = varsBloque.size(); if (cantVarsLocales >0) GenCod.gen("FMEM "+cantVarsLocales,"Libero las variables locales declaradas dentro de mi bloque"); TablaSimbolos.bloqueActual = anidado; } }
c9f3dea7b81fd5d14f8cc1e2913b084f4d035297
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/16/16_0b130240078cb3a2ea5a8c55929b2cc2915baeb4/GcmBroadcastReceiver/16_0b130240078cb3a2ea5a8c55929b2cc2915baeb4_GcmBroadcastReceiver_s.java
f194a33547418ce96c8ff9fbf9a47b5e841ae84e
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
4,456
java
package com.novel.reader; import com.google.android.gms.gcm.GoogleCloudMessaging; import android.app.Activity; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.support.v4.app.NotificationCompat; public class GcmBroadcastReceiver extends BroadcastReceiver{ static final String TAG = "GCMDemo"; public static final int NOTIFICATION_ID = 1; private NotificationManager mNotificationManager; NotificationCompat.Builder builder; Context ctx; @Override public void onReceive(Context context, Intent intent) { GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(context); ctx = context; String messageType = gcm.getMessageType(intent); if (GoogleCloudMessaging.MESSAGE_TYPE_SEND_ERROR.equals(messageType)) { // sendNotification("Send error: " + intent.getExtras().toString()); } else if (GoogleCloudMessaging.MESSAGE_TYPE_DELETED.equals(messageType)) { // sendNotification("Deleted messages on server: " + // intent.getExtras().toString()); } else { try{ sendNotification(intent); }catch(Exception e){ } } setResultCode(Activity.RESULT_OK); } int openActivity = 0; // 0: MainActivity, 1: MyNovelActivity, 2: BookmarkActivity , 3: CategoryActivity, 4: NovelIntroduceActivity PendingIntent contentIntent; // Put the GCM message into a notification and post it. private void sendNotification(Intent intent) { mNotificationManager = (NotificationManager) ctx.getSystemService(Context.NOTIFICATION_SERVICE); openActivity = Integer.parseInt(intent.getStringExtra("activity")); switch(openActivity){ case 0: contentIntent = PendingIntent.getActivity(ctx, 0, new Intent(ctx, MainActivity.class), 0); break; case 1: contentIntent = PendingIntent.getActivity(ctx, 0, new Intent(ctx, MyNovelActivity.class), 0); break; case 2: Intent activity_intent = new Intent(ctx, BookmarkActivity.class); if(intent.getStringExtra("is_resent").equals("true")) activity_intent.putExtra("IS_RECNET", true); else activity_intent.putExtra("IS_RECNET", false); contentIntent = PendingIntent.getActivity(ctx, 0, activity_intent, 0); break; case 3: Intent activity_intent1 = new Intent(ctx, CategoryActivity.class); activity_intent1.putExtra("CategoryName", intent.getStringExtra("category_name")); activity_intent1.putExtra("CategoryId", Integer.parseInt(intent.getStringExtra("category_id"))); contentIntent = PendingIntent.getActivity(ctx, 0, activity_intent1, 0); break; case 4: Intent activity_intent2 = new Intent(ctx, NovelIntroduceActivity.class); activity_intent2.putExtra("NovelName",intent.getStringExtra("novel_name")); activity_intent2.putExtra("NovelAuthor",intent.getStringExtra("novel_author")); activity_intent2.putExtra("NovelDescription",intent.getStringExtra("novel_description")); activity_intent2.putExtra("NovelUpdate",intent.getStringExtra("novel_update")); activity_intent2.putExtra("NovelPicUrl",intent.getStringExtra("novel_pic_url")); activity_intent2.putExtra("NovelArticleNum",intent.getStringExtra("novel_article_num")); activity_intent2.putExtra("NovelId",Integer.parseInt(intent.getStringExtra("novel_id"))); contentIntent = PendingIntent.getActivity(ctx, 0, activity_intent2, 0); break; } NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(ctx) .setSmallIcon(R.drawable.noti_app_icon) .setContentTitle(intent.getStringExtra("title")) .setStyle(new NotificationCompat.BigTextStyle() .bigText(intent.getStringExtra("big_text"))) .setContentText(intent.getStringExtra("content")) .setAutoCancel(true); mBuilder.setContentIntent(contentIntent); mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build()); } }
b79f53a3fdf2645c6cb789e5078b58e67c8067ab
b2ccf394db1988d3a30f17437a4e739ba437659d
/TestNG/Activity2.java
22cd1bd40e3c11a2ad389d745fca25ede27c990a
[]
no_license
nitishtnr/sdet
c749320214683f3976c82d52ee926603e07c3ce0
401762003ed34174867fd4ca495c180c9360f7cf
refs/heads/main
2023-04-10T02:19:27.217902
2021-04-16T08:57:54
2021-04-16T08:57:54
333,097,128
0
0
null
null
null
null
UTF-8
Java
false
false
1,805
java
package Activities; import org.testng.annotations.Test; import org.testng.Assert; import org.testng.SkipException; import org.testng.annotations.AfterTest; import org.testng.annotations.BeforeTest; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; public class Activity2 { WebDriver driver; @BeforeTest public void beforeMethod() { //Create a new instance of the Firefox driver driver = new FirefoxDriver(); //Open the browser driver.get("https://www.training-support.net/selenium/target-practice"); } @Test public void testCase1() { //This test case will pass String title = driver.getTitle(); System.out.println("Title is: " + title); Assert.assertEquals(title, "Target Practice"); } @Test public void testCase2() { //This test case will Fail WebElement blackButton = driver.findElement(By.cssSelector("button.black")); Assert.assertTrue(blackButton.isDisplayed()); Assert.assertEquals(blackButton.getText(), "black"); } @Test(enabled = false) public void testCase3() { //This test will be skipped and not counted String subHeading = driver.findElement(By.className("sub")).getText(); Assert.assertTrue(subHeading.contains("Practice")); } @Test public void testCase4() { //This test will be skipped and will be be shown as skipped throw new SkipException("Skipping test case"); } @AfterTest public void afterMethod() { //Close the browser driver.close(); } }
17092aca82125e7c7cc4a16bd1495358a17537ce
c794a0fff31e27b832ec7a89184aa6c857c7b767
/src/main/java/swordOffer/Exercise_44.java
ebb798096e37188ce6286d42c81b276e2f2fda6d
[]
no_license
zhanglbjames/exercises
e80a23b5601024660253c2bd52b14c68245681c4
6c15ade78474ff42fc5b8e189b8672004daf3cbb
refs/heads/master
2021-01-25T11:43:46.694711
2017-12-02T08:12:01
2017-12-02T08:12:01
93,943,850
0
0
null
null
null
null
UTF-8
Java
false
false
1,163
java
package swordOffer; /** * @author [email protected] * @version Created on 2017/8/22. */ /** * 每年六一儿童节,牛客都会准备一些小礼物去看望孤儿院的小朋友,今年亦是如此。 * HF作为牛客的资深元老,自然也准备了一些小游戏。 * 其中,有个游戏是这样的:首先,让小朋友们围成一个大圈。 * 然后,他随机指定一个数m,让编号为0的小朋友开始报数。 * 每次喊到m-1的那个小朋友要出列唱首歌,然后可以在礼品箱中任意的挑选礼物, * 并且不再回到圈中,从他的下一个小朋友开始,继续0...m-1报数....这样下去.... * 直到剩下最后一个小朋友,可以不用表演,并且拿到牛客名贵的“名侦探柯南”典藏版(名额有限哦!!^_^)。 * 请你试着想下,哪个小朋友会得到这份礼品呢?(注:小朋友的编号是从0到n-1) */ public class Exercise_44 { public int lastRemaining(int n, int m) { if (n < 1 || m < 1) { return -1; } int last = 0; for (int i = 2; i <= n; i++) { last = (last + m) % i; } return last; } }
60cc281cdb9507e1cce65469a6151f9865d6fb35
fd947bb2c5e95fb8497c988808309430c74282c0
/M10_DavidGomezMuns/src/com/lambdas/domain/Alumno.java
f1d28687c2605838b98667d3f6b4c96087545552
[]
no_license
davidmuns/Ejercicios_Modulo10_BackEnd-Java
a5c44e22291372106b63f182e491a5b45114b699
7cb95fcdf3202e05fa1b87d8e5d49085429e8ba3
refs/heads/main
2023-06-10T05:53:56.732130
2021-07-03T15:41:33
2021-07-03T15:41:33
382,651,290
0
0
null
null
null
null
UTF-8
Java
false
false
832
java
package com.lambdas.domain; import java.util.Comparator; public class Alumno implements Comparator<Alumno>{ private String nombre, curso; private int edad, nota; public Alumno(String nombre, String curso, int edad, int nota) { super(); this.nombre = nombre; this.curso = curso; this.edad = edad; this.nota = nota; } public String getNombre() { return nombre; } public String getCurso() { return curso; } public int getEdad() { return edad; } public int getNota() { return nota; } @Override public String toString() { return "Alumno [nombre=" + nombre + ", curso=" + curso + ", edad=" + edad + ", nota=" + nota + "]"; } @Override public int compare(Alumno a1, Alumno a2) { return a1.getNombre().compareTo(a2.getNombre()); } }
5060441969680f4a4e600ce86dbef3891cc3977b
60181d2036c6536ca1c41d4414478efab35d112d
/backend/src/main/java/org/laptech/gws/data/SongPartType.java
45f8a61202753642047e4190919877401db9707f
[]
no_license
AlisaPigul/GuitarWebSite
bdbf03e65e53c187c514fc32fa0cb957d5949a3f
2d1eff7ec7292777f0b5a25c3ecef3401ac6936f
refs/heads/master
2020-06-10T02:07:54.021839
2017-01-25T19:27:00
2017-01-25T19:27:00
76,128,658
0
1
null
null
null
null
UTF-8
Java
false
false
138
java
package org.laptech.gws.data; /** * @author rlapin */ public enum SongPartType { INTRO,VERSE,CHORUS,PRE_CHORUS,BRIDGE,OUTRO,SOLO }
765046c471c3c7e5b3636a8da048257055078da8
cb4e737b4255da27733b1262e60837d958fe8469
/presto-testng-services/src/main/java/io/prestosql/testng/services/FlakyTestRetryAnalyzer.java
5fc056aad8bb0163bcae68ece2a3b588e63e592e
[ "Apache-2.0" ]
permissive
pmady/presto
f028c6bffcdc8f26c8ceab74107be0412646c87e
39f7e08c0ad4c1d1fdd9f13e6cbc7ff804b9a27e
refs/heads/master
2022-12-02T04:15:04.729395
2020-08-18T21:33:24
2020-08-20T17:40:36
257,678,386
0
0
Apache-2.0
2020-04-21T18:15:43
2020-04-21T18:15:43
null
UTF-8
Java
false
false
2,940
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.prestosql.testng.services; import io.airlift.log.Logger; import org.testng.IRetryAnalyzer; import org.testng.ITestNGMethod; import org.testng.ITestResult; import javax.annotation.concurrent.GuardedBy; import java.lang.reflect.Method; import java.util.HashMap; import java.util.Map; import java.util.stream.Stream; import static com.google.common.collect.ImmutableList.toImmutableList; import static java.lang.String.format; public class FlakyTestRetryAnalyzer implements IRetryAnalyzer { private static final Logger log = Logger.get(FlakyTestRetryAnalyzer.class); public static final int ALLOWED_RETRIES_COUNT = 2; @GuardedBy("this") private final Map<String, Long> retryCounter = new HashMap<>(); @Override public boolean retry(ITestResult result) { if (!isTestRetryable(result)) { return false; } long retryCount; ITestNGMethod method = result.getMethod(); synchronized (this) { String name = getName(method, result.getParameters()); retryCount = retryCounter.getOrDefault(name, 0L); retryCount++; if (retryCount > ALLOWED_RETRIES_COUNT) { return false; } retryCounter.put(name, retryCount); } log.warn( result.getThrowable(), "Test %s::%s attempt %s failed, retrying...,", result.getTestClass().getName(), method.getMethodName(), retryCount); return true; } private static boolean isTestRetryable(ITestResult result) { Method method = result.getMethod().getConstructorOrMethod().getMethod(); if (method == null) { return false; } return method.getAnnotation(Flaky.class) != null; } private static String getName(ITestNGMethod method, Object[] parameters) { String actualTestClass = method.getTestClass().getName(); if (parameters.length != 0) { return format( "%s::%s(%s)", actualTestClass, method.getMethodName(), String.join(",", Stream.of(parameters).map(Object::toString).collect(toImmutableList()))); } return format("%s::%s", actualTestClass, method.getMethodName()); } }
6932fbbb72220955c74569cb53b98fb0a4b4b985
a4fa8f97c43bdd6a31dcff88499ecc722daff3d8
/VehicleObjArray/src/com/vehicles/Truck.java
39423ae7afbd97afd4a55a530c035c5e6f941135
[]
no_license
nagavinay336/Proj
83938d5556ec844ca854ce8c92dad247ba47e3b0
990c522a86a7dd1b23246563c4d1621fd44e08d5
refs/heads/master
2023-08-19T17:54:24.682009
2021-10-27T05:17:03
2021-10-27T05:17:03
365,981,759
0
0
null
null
null
null
UTF-8
Java
false
false
481
java
package com.vehicles; public class Truck extends Vehicle { private int load; public Truck(int noOfWheels, String model, String color,int load) { super(noOfWheels, model, color); this.load=load; } public int getLoad() { return load; } public void setLoad(int load) { this.load = load; } @Override public void rideVehicle() { System.out.println("I am Truck riding with : " + noOfWheels + " wheels and with extra load of "+load); } }
f6f31d41ab75f3d98fc092c8d940e168a5391e0d
f13727f12da683df4888f82393833cbeb0a8a159
/java/jpwr/bcompfc/src/JopcBasefcppo5motoraggr21.java
fcd20536279267254d967c3f252ef0492aac3ee7
[]
no_license
Strongc/proview
2d5c54c0f9b2b4272f2a6e9ccf3aba794d3d794a
bf17a7ab3fd3f1b4288d6e6dff3107e3a7f31327
refs/heads/master
2020-12-14T18:45:03.413323
2014-04-10T15:40:51
2014-04-10T15:40:51
null
0
0
null
null
null
null
WINDOWS-1252
Java
false
false
361,010
java
package jpwr.bcompfc; import jpwr.rt.*; import jpwr.jop.*; import jpwr.jopc.*; import java.awt.*; import java.awt.geom.*; import java.awt.image.*; import java.awt.font.*; import javax.swing.*; import java.awt.event.*; public class JopcBasefcppo5motoraggr21 extends JopFrame implements JopUtilityIfc { JPanel contentPane; BorderLayout borderLayout1 = new BorderLayout(); public LocalPanel localPanel = new LocalPanel(); boolean scrollbar = false; Dimension size; pwr_valuelong pwr_valuelong7; pwr_indsquare pwr_indsquare8; pwr_mbopenobject pwr_mbopenobject11; pwr_mbtrend pwr_mbtrend12; pwr_mbfast pwr_mbfast13; pwr_mbphoto pwr_mbphoto14; pwr_mbdatasheet pwr_mbdatasheet15; pwr_mbopenplc pwr_mbopenplc16; pwr_mbcircuitdiagram pwr_mbcircuitdiagram17; pwr_mbrtnavigator pwr_mbrtnavigator18; pwr_mbhelpclass pwr_mbhelpclass19; pwr_mbblockevents pwr_mbblockevents20; pwr_mbhistevent pwr_mbhistevent21; pwr_mbnote pwr_mbnote22; pwr_mbhelp pwr_mbhelp23; pwr_valuelong pwr_valuelong24; pwr_smallbuttoncenter pwr_smallbuttoncenter25; pwr_valuelong pwr_valuelong26; pwr_indsquare pwr_indsquare27; pwr_indsquare pwr_indsquare30; pwr_valuesmall pwr_valuesmall33; pwr_valuesmall pwr_valuesmall34; pwr_menubar2 pwr_menubar235; pwr_pulldownmenu2 pwr_pulldownmenu236; pwr_pulldownmenu2 pwr_pulldownmenu237; pwr_pulldownmenu2 pwr_pulldownmenu238; pwr_pulldownmenu2 pwr_pulldownmenu239; pwr_pulldownmenu2 pwr_pulldownmenu240; pwr_motor2 pwr_motor241; pwr_smallbuttoncenter pwr_smallbuttoncenter42; pwr_indround pwr_indround43; pwr_indround pwr_indround44; pwr_smallbuttoncenter pwr_smallbuttoncenter45; pwr_smallbuttoncenter pwr_smallbuttoncenter46; pwr_indround pwr_indround47; pwr_indround pwr_indround48; Grp169_ grp169_49; pwr_indsquare pwr_indsquare50; pwr_smallbuttoncenter pwr_smallbuttoncenter54; pwr_valuemedium pwr_valuemedium55; pwr_valuemedium pwr_valuemedium56; pwr_valuemedium pwr_valuemedium58; pwr_valueinputmediumrd pwr_valueinputmediumrd62; Grp210_ grp210_63; Grp212_ grp212_64; pwr_valuemedium pwr_valuemedium65; pwr_indsquare pwr_indsquare69; pwr_mbsimulate pwr_mbsimulate70; pwr_rodcouplinganim pwr_rodcouplinganim71; pwr_motorman pwr_motorman72; pwr_indsquare pwr_indsquare73; Grp223_ grp223_74; Grp226_ grp226_75; pwr_smallbuttoncenter pwr_smallbuttoncenter76; pwr_fuse3 pwr_fuse380; bcomp_fc bcomp_fc81; pwr_safetyswitch pwr_safetyswitch82; pwr_mbup pwr_mbup83; public JopcBasefcppo5motoraggr21( JopSession session, String instance, boolean scrollbar) { super( session, instance); this.scrollbar = scrollbar; geInit(); } public JopcBasefcppo5motoraggr21( JopSession session, String instance, boolean scrollbar, boolean noinit) { super( session, instance); this.scrollbar = scrollbar; if ( !noinit) geInit(); } public void geInit() { JopSpider.setSystemName( "äw›·Dó·Dó·p—uÄ›·ë · ã ·x6Ý¿çY˜·Dó·Dó·x—u ã ·"); engine.setAnimationScanTime( 200); engine.setScanTime( 500); size = new Dimension( 417, 669); Dimension dsize = new Dimension(localPanel.original_width,localPanel.original_height); this.addComponentListener(new AspectRatioListener(this,size)); contentPane = (JPanel) this.getContentPane(); contentPane.setLayout(borderLayout1); if ( scrollbar) contentPane.add( new JScrollPane(localPanel), BorderLayout.CENTER); else contentPane.add(localPanel, BorderLayout.CENTER); contentPane.setOpaque(true); localPanel.setLayout( new RatioLayout()); // scaletest localPanel.setOpaque(true); localPanel.setBackground(GeColor.getColor(31, GeColor.NO_COLOR)); this.setSize(size); if ( engine.isInstance()) setTitle( engine.getInstance()); else this.setTitle("JopcBasefcppo5motoraggr21"); pwr_valuelong7 = new pwr_valuelong(session); pwr_valuelong7.setBounds(new Rectangle(17,47,367,20)); pwr_valuelong7.setFillColor(31); pwr_valuelong7.setBorderColor(32); localPanel.add(pwr_valuelong7, new Proportion(pwr_valuelong7.getBounds(), dsize)); pwr_indsquare8 = new pwr_indsquare(session); pwr_indsquare8.setBounds(new Rectangle(162,449,14,15)); pwr_indsquare8.setFillColor(294); pwr_indsquare8.setShadow(1); localPanel.add(pwr_indsquare8, new Proportion(pwr_indsquare8.getBounds(), dsize)); pwr_mbopenobject11 = new pwr_mbopenobject(session); pwr_mbopenobject11.setBounds(new Rectangle(195,25,18,18)); pwr_mbopenobject11.setShadow(1); localPanel.add(pwr_mbopenobject11, new Proportion(pwr_mbopenobject11.getBounds(), dsize)); pwr_mbtrend12 = new pwr_mbtrend(session); pwr_mbtrend12.setBounds(new Rectangle(56,25,18,18)); pwr_mbtrend12.setShadow(1); localPanel.add(pwr_mbtrend12, new Proportion(pwr_mbtrend12.getBounds(), dsize)); pwr_mbfast13 = new pwr_mbfast(session); pwr_mbfast13.setBounds(new Rectangle(76,25,18,18)); pwr_mbfast13.setShadow(1); localPanel.add(pwr_mbfast13, new Proportion(pwr_mbfast13.getBounds(), dsize)); pwr_mbphoto14 = new pwr_mbphoto(session); pwr_mbphoto14.setBounds(new Rectangle(96,25,18,18)); pwr_mbphoto14.setShadow(1); localPanel.add(pwr_mbphoto14, new Proportion(pwr_mbphoto14.getBounds(), dsize)); pwr_mbdatasheet15 = new pwr_mbdatasheet(session); pwr_mbdatasheet15.setBounds(new Rectangle(116,25,18,18)); pwr_mbdatasheet15.setShadow(1); localPanel.add(pwr_mbdatasheet15, new Proportion(pwr_mbdatasheet15.getBounds(), dsize)); pwr_mbopenplc16 = new pwr_mbopenplc(session); pwr_mbopenplc16.setBounds(new Rectangle(215,25,18,18)); pwr_mbopenplc16.setShadow(1); localPanel.add(pwr_mbopenplc16, new Proportion(pwr_mbopenplc16.getBounds(), dsize)); pwr_mbcircuitdiagram17 = new pwr_mbcircuitdiagram(session); pwr_mbcircuitdiagram17.setBounds(new Rectangle(235,25,18,18)); pwr_mbcircuitdiagram17.setShadow(1); localPanel.add(pwr_mbcircuitdiagram17, new Proportion(pwr_mbcircuitdiagram17.getBounds(), dsize)); pwr_mbrtnavigator18 = new pwr_mbrtnavigator(session); pwr_mbrtnavigator18.setBounds(new Rectangle(175,25,18,18)); pwr_mbrtnavigator18.setShadow(1); localPanel.add(pwr_mbrtnavigator18, new Proportion(pwr_mbrtnavigator18.getBounds(), dsize)); pwr_mbhelpclass19 = new pwr_mbhelpclass(session); pwr_mbhelpclass19.setBounds(new Rectangle(255,25,18,18)); pwr_mbhelpclass19.setShadow(1); localPanel.add(pwr_mbhelpclass19, new Proportion(pwr_mbhelpclass19.getBounds(), dsize)); pwr_mbblockevents20 = new pwr_mbblockevents(session); pwr_mbblockevents20.setBounds(new Rectangle(155,25,18,18)); pwr_mbblockevents20.setShadow(1); localPanel.add(pwr_mbblockevents20, new Proportion(pwr_mbblockevents20.getBounds(), dsize)); pwr_mbhistevent21 = new pwr_mbhistevent(session); pwr_mbhistevent21.setBounds(new Rectangle(136,25,18,18)); localPanel.add(pwr_mbhistevent21, new Proportion(pwr_mbhistevent21.getBounds(), dsize)); pwr_mbnote22 = new pwr_mbnote(session); pwr_mbnote22.setBounds(new Rectangle(36,25,17,18)); localPanel.add(pwr_mbnote22, new Proportion(pwr_mbnote22.getBounds(), dsize)); pwr_mbhelp23 = new pwr_mbhelp(session); pwr_mbhelp23.setBounds(new Rectangle(17,25,18,18)); localPanel.add(pwr_mbhelp23, new Proportion(pwr_mbhelp23.getBounds(), dsize)); pwr_valuelong24 = new pwr_valuelong(session); pwr_valuelong24.setBounds(new Rectangle(17,69,367,20)); pwr_valuelong24.setFillColor(31); pwr_valuelong24.setBorderColor(32); localPanel.add(pwr_valuelong24, new Proportion(pwr_valuelong24.getBounds(), dsize)); pwr_smallbuttoncenter25 = new pwr_smallbuttoncenter(session); pwr_smallbuttoncenter25.setBounds(new Rectangle(5,604,45,19)); pwr_smallbuttoncenter25.setFillColor(102); pwr_smallbuttoncenter25.setBorderColor(37); localPanel.add(pwr_smallbuttoncenter25, new Proportion(pwr_smallbuttoncenter25.getBounds(), dsize)); pwr_valuelong26 = new pwr_valuelong(session); pwr_valuelong26.setBounds(new Rectangle(61,603,334,21)); pwr_valuelong26.setFillColor(31); pwr_valuelong26.setBorderColor(31); localPanel.add(pwr_valuelong26, new Proportion(pwr_valuelong26.getBounds(), dsize)); pwr_indsquare27 = new pwr_indsquare(session); pwr_indsquare27.setBounds(new Rectangle(349,97,14,15)); pwr_indsquare27.setFillColor(295); pwr_indsquare27.setShadow(1); localPanel.add(pwr_indsquare27, new Proportion(pwr_indsquare27.getBounds(), dsize)); pwr_indsquare30 = new pwr_indsquare(session); pwr_indsquare30.setBounds(new Rectangle(349,118,14,15)); pwr_indsquare30.setFillColor(175); pwr_indsquare30.setShadow(1); localPanel.add(pwr_indsquare30, new Proportion(pwr_indsquare30.getBounds(), dsize)); pwr_valuesmall33 = new pwr_valuesmall(session); pwr_valuesmall33.setBounds(new Rectangle(302,230,70,15)); localPanel.add(pwr_valuesmall33, new Proportion(pwr_valuesmall33.getBounds(), dsize)); pwr_valuesmall34 = new pwr_valuesmall(session); pwr_valuesmall34.setBounds(new Rectangle(302,249,70,16)); localPanel.add(pwr_valuesmall34, new Proportion(pwr_valuesmall34.getBounds(), dsize)); pwr_menubar235 = new pwr_menubar2(session); pwr_menubar235.setBounds(new Rectangle(1,1,407,22)); pwr_menubar235.setShadow(1); localPanel.add(pwr_menubar235, new Proportion(pwr_menubar235.getBounds(), dsize)); pwr_pulldownmenu236 = new pwr_pulldownmenu2(session); pwr_pulldownmenu236.setBounds(new Rectangle(9,1,42,22)); pwr_pulldownmenu236.setShadow(1); localPanel.add(pwr_pulldownmenu236, new Proportion(pwr_pulldownmenu236.getBounds(), dsize)); pwr_pulldownmenu237 = new pwr_pulldownmenu2(session); pwr_pulldownmenu237.setBounds(new Rectangle(329,1,67,22)); pwr_pulldownmenu237.setShadow(1); localPanel.add(pwr_pulldownmenu237, new Proportion(pwr_pulldownmenu237.getBounds(), dsize)); pwr_pulldownmenu238 = new pwr_pulldownmenu2(session); pwr_pulldownmenu238.setBounds(new Rectangle(221,1,67,22)); pwr_pulldownmenu238.setShadow(1); localPanel.add(pwr_pulldownmenu238, new Proportion(pwr_pulldownmenu238.getBounds(), dsize)); pwr_pulldownmenu239 = new pwr_pulldownmenu2(session); pwr_pulldownmenu239.setBounds(new Rectangle(53,1,67,22)); pwr_pulldownmenu239.setShadow(1); localPanel.add(pwr_pulldownmenu239, new Proportion(pwr_pulldownmenu239.getBounds(), dsize)); pwr_pulldownmenu240 = new pwr_pulldownmenu2(session); pwr_pulldownmenu240.setBounds(new Rectangle(125,1,86,22)); pwr_pulldownmenu240.setShadow(1); localPanel.add(pwr_pulldownmenu240, new Proportion(pwr_pulldownmenu240.getBounds(), dsize)); pwr_motor241 = new pwr_motor2(session); pwr_motor241.setBounds(new Rectangle(161,503,96,72)); localPanel.add(pwr_motor241, new Proportion(pwr_motor241.getBounds(), dsize)); pwr_smallbuttoncenter42 = new pwr_smallbuttoncenter(session); pwr_smallbuttoncenter42.setBounds(new Rectangle(34,172,46,19)); pwr_smallbuttoncenter42.setFillColor(32); localPanel.add(pwr_smallbuttoncenter42, new Proportion(pwr_smallbuttoncenter42.getBounds(), dsize)); pwr_indround43 = new pwr_indround(session); pwr_indround43.setBounds(new Rectangle(88,174,16,15)); pwr_indround43.setShadow(1); localPanel.add(pwr_indround43, new Proportion(pwr_indround43.getBounds(), dsize)); pwr_indround44 = new pwr_indround(session); pwr_indround44.setBounds(new Rectangle(88,197,16,16)); pwr_indround44.setShadow(1); localPanel.add(pwr_indround44, new Proportion(pwr_indround44.getBounds(), dsize)); pwr_smallbuttoncenter45 = new pwr_smallbuttoncenter(session); pwr_smallbuttoncenter45.setBounds(new Rectangle(124,173,59,19)); pwr_smallbuttoncenter45.setFillColor(32); localPanel.add(pwr_smallbuttoncenter45, new Proportion(pwr_smallbuttoncenter45.getBounds(), dsize)); pwr_smallbuttoncenter46 = new pwr_smallbuttoncenter(session); pwr_smallbuttoncenter46.setBounds(new Rectangle(124,197,59,19)); pwr_smallbuttoncenter46.setFillColor(32); localPanel.add(pwr_smallbuttoncenter46, new Proportion(pwr_smallbuttoncenter46.getBounds(), dsize)); pwr_indround47 = new pwr_indround(session); pwr_indround47.setBounds(new Rectangle(86,248,16,15)); pwr_indround47.setFillColor(114); pwr_indround47.setShadow(1); localPanel.add(pwr_indround47, new Proportion(pwr_indround47.getBounds(), dsize)); pwr_indround48 = new pwr_indround(session); pwr_indround48.setBounds(new Rectangle(193,174,16,15)); pwr_indround48.setFillColor(294); pwr_indround48.setShadow(1); localPanel.add(pwr_indround48, new Proportion(pwr_indround48.getBounds(), dsize)); grp169_49 = new Grp169_(session); grp169_49.setBounds(new Rectangle(35,249,35,16)); localPanel.add(grp169_49, new Proportion(grp169_49.getBounds(), dsize)); pwr_indsquare50 = new pwr_indsquare(session); pwr_indsquare50.setBounds(new Rectangle(162,353,14,15)); pwr_indsquare50.setFillColor(294); pwr_indsquare50.setShadow(1); localPanel.add(pwr_indsquare50, new Proportion(pwr_indsquare50.getBounds(), dsize)); pwr_smallbuttoncenter54 = new pwr_smallbuttoncenter(session); pwr_smallbuttoncenter54.setBounds(new Rectangle(37,372,55,21)); pwr_smallbuttoncenter54.setFillColor(32); pwr_smallbuttoncenter54.setShadow(1); localPanel.add(pwr_smallbuttoncenter54, new Proportion(pwr_smallbuttoncenter54.getBounds(), dsize)); pwr_valuemedium55 = new pwr_valuemedium(session); pwr_valuemedium55.setBounds(new Rectangle(309,513,49,15)); pwr_valuemedium55.setShadow(1); localPanel.add(pwr_valuemedium55, new Proportion(pwr_valuemedium55.getBounds(), dsize)); pwr_valuemedium56 = new pwr_valuemedium(session); pwr_valuemedium56.setBounds(new Rectangle(309,531,49,15)); pwr_valuemedium56.setShadow(1); localPanel.add(pwr_valuemedium56, new Proportion(pwr_valuemedium56.getBounds(), dsize)); pwr_valuemedium58 = new pwr_valuemedium(session); pwr_valuemedium58.setBounds(new Rectangle(359,516,18,12)); pwr_valuemedium58.setFillColor(31); pwr_valuemedium58.setBorderColor(31); localPanel.add(pwr_valuemedium58, new Proportion(pwr_valuemedium58.getBounds(), dsize)); pwr_valueinputmediumrd62 = new pwr_valueinputmediumrd(session); pwr_valueinputmediumrd62.setBounds(new Rectangle(123,242,75,28)); pwr_valueinputmediumrd62.setShadow(1); localPanel.add(pwr_valueinputmediumrd62, new Proportion(pwr_valueinputmediumrd62.getBounds(), dsize)); grp210_63 = new Grp210_(session); grp210_63.setBounds(new Rectangle(127,228,38,16)); localPanel.add(grp210_63, new Proportion(grp210_63.getBounds(), dsize)); grp212_64 = new Grp212_(session); grp212_64.setBounds(new Rectangle(199,247,26,18)); grp212_64.setFillColor(31); grp212_64.setBorderColor(31); localPanel.add(grp212_64, new Proportion(grp212_64.getBounds(), dsize)); pwr_valuemedium65 = new pwr_valuemedium(session); pwr_valuemedium65.setBounds(new Rectangle(309,549,49,15)); pwr_valuemedium65.setShadow(1); localPanel.add(pwr_valuemedium65, new Proportion(pwr_valuemedium65.getBounds(), dsize)); pwr_indsquare69 = new pwr_indsquare(session); pwr_indsquare69.setBounds(new Rectangle(308,176,14,15)); pwr_indsquare69.setFillColor(175); pwr_indsquare69.setShadow(1); localPanel.add(pwr_indsquare69, new Proportion(pwr_indsquare69.getBounds(), dsize)); pwr_mbsimulate70 = new pwr_mbsimulate(session); pwr_mbsimulate70.setBounds(new Rectangle(366,25,17,18)); localPanel.add(pwr_mbsimulate70, new Proportion(pwr_mbsimulate70.getBounds(), dsize)); pwr_rodcouplinganim71 = new pwr_rodcouplinganim(session); pwr_rodcouplinganim71.setBounds(new Rectangle(155,530,10,20)); localPanel.add(pwr_rodcouplinganim71, new Proportion(pwr_rodcouplinganim71.getBounds(), dsize)); pwr_motorman72 = new pwr_motorman(session); pwr_motorman72.setBounds(new Rectangle(115,96,62,42)); pwr_motorman72.setShadow(1); pwr_motorman72.setGradient(12); localPanel.add(pwr_motorman72, new Proportion(pwr_motorman72.getBounds(), dsize)); pwr_indsquare73 = new pwr_indsquare(session); pwr_indsquare73.setBounds(new Rectangle(162,478,14,15)); pwr_indsquare73.setFillColor(294); pwr_indsquare73.setShadow(1); localPanel.add(pwr_indsquare73, new Proportion(pwr_indsquare73.getBounds(), dsize)); grp223_74 = new Grp223_(session); grp223_74.setBounds(new Rectangle(35,477,38,15)); localPanel.add(grp223_74, new Proportion(grp223_74.getBounds(), dsize)); grp226_75 = new Grp226_(session); grp226_75.setBounds(new Rectangle(37,197,39,16)); localPanel.add(grp226_75, new Proportion(grp226_75.getBounds(), dsize)); pwr_smallbuttoncenter76 = new pwr_smallbuttoncenter(session); pwr_smallbuttoncenter76.setBounds(new Rectangle(34,197,46,19)); pwr_smallbuttoncenter76.setFillColor(32); localPanel.add(pwr_smallbuttoncenter76, new Proportion(pwr_smallbuttoncenter76.getBounds(), dsize)); pwr_fuse380 = new pwr_fuse3(session); pwr_fuse380.setBounds(new Rectangle(281,299,13,35)); pwr_fuse380.setRotate(-90); pwr_fuse380.setShadow(1); localPanel.add(pwr_fuse380, new Proportion(pwr_fuse380.getBounds(), dsize)); bcomp_fc81 = new bcomp_fc(session); bcomp_fc81.setBounds(new Rectangle(256,343,62,82)); bcomp_fc81.setShadow(1); localPanel.add(bcomp_fc81, new Proportion(bcomp_fc81.getBounds(), dsize)); pwr_safetyswitch82 = new pwr_safetyswitch(session); pwr_safetyswitch82.setBounds(new Rectangle(269,439,36,37)); pwr_safetyswitch82.setFillColor(32); pwr_safetyswitch82.setShadow(1); localPanel.add(pwr_safetyswitch82, new Proportion(pwr_safetyswitch82.getBounds(), dsize)); pwr_mbup83 = new pwr_mbup(session); pwr_mbup83.setBounds(new Rectangle(347,25,18,18)); localPanel.add(pwr_mbup83, new Proportion(pwr_mbup83.getBounds(), dsize)); pwr_valuelong7.dd.setDynType(1025); pwr_valuelong7.dd.setActionType(0); pwr_valuelong7.dd.setElements(new GeDynElemIfc[] { new GeDynValue(pwr_valuelong7.dd, "$object.Description##String80","%s") }); pwr_indsquare8.dd.setDynType(5); pwr_indsquare8.dd.setActionType(2); pwr_indsquare8.dd.setAccess(65532); pwr_indsquare8.dd.setElements(new GeDynElemIfc[] { new GeDynDigLowColor(pwr_indsquare8.dd, "$object.SafetySwitch.On.ActualValue##Boolean",114) ,new GeDynPopupMenu(pwr_indsquare8.dd, "$object.SafetySwitch.On") }); pwr_mbopenobject11.dd.setDynType(129); pwr_mbopenobject11.dd.setActionType(8256); pwr_mbopenobject11.dd.setAccess(65532); pwr_mbopenobject11.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbopenobject11.dd, "$cmd(check method/method=\"Open Object\"/object=$object)",1) ,new GeDynCommand(pwr_mbopenobject11.dd, "call method/method=\"Open Object\"/object=$object") ,new GeDynTipText(pwr_mbopenobject11.dd, JopLang.transl("Open Object")) }); pwr_mbtrend12.dd.setDynType(129); pwr_mbtrend12.dd.setActionType(8256); pwr_mbtrend12.dd.setAccess(65532); pwr_mbtrend12.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbtrend12.dd, "$cmd(check method/method=\"Trend\"/object=$object)",1) ,new GeDynCommand(pwr_mbtrend12.dd, "call method/method=\"Trend\"/object=$object") ,new GeDynTipText(pwr_mbtrend12.dd, JopLang.transl("Trend")) }); pwr_mbfast13.dd.setDynType(129); pwr_mbfast13.dd.setActionType(8256); pwr_mbfast13.dd.setAccess(65532); pwr_mbfast13.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbfast13.dd, "$cmd(check method/method=\"Fast\"/object=$object)",1) ,new GeDynCommand(pwr_mbfast13.dd, "call method/method=\"Fast\"/object=$object") ,new GeDynTipText(pwr_mbfast13.dd, JopLang.transl("Fast")) }); pwr_mbphoto14.dd.setDynType(129); pwr_mbphoto14.dd.setActionType(8256); pwr_mbphoto14.dd.setAccess(65532); pwr_mbphoto14.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbphoto14.dd, "$cmd(check method/method=\"Photo\"/object=$object)",1) ,new GeDynCommand(pwr_mbphoto14.dd, "call method/method=\"Photo\"/object=$object") ,new GeDynTipText(pwr_mbphoto14.dd, JopLang.transl("Photo")) }); pwr_mbdatasheet15.dd.setDynType(129); pwr_mbdatasheet15.dd.setActionType(8256); pwr_mbdatasheet15.dd.setAccess(65532); pwr_mbdatasheet15.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbdatasheet15.dd, "$cmd(check method/method=\"DataSheet\"/object=$object)",1) ,new GeDynCommand(pwr_mbdatasheet15.dd, "call method/method=\"DataSheet\"/object=$object") ,new GeDynTipText(pwr_mbdatasheet15.dd, JopLang.transl("DataSheet")) }); pwr_mbopenplc16.dd.setDynType(129); pwr_mbopenplc16.dd.setActionType(8256); pwr_mbopenplc16.dd.setAccess(65532); pwr_mbopenplc16.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbopenplc16.dd, "$cmd(check method/method=\"Open Plc\"/object=$object)",1) ,new GeDynCommand(pwr_mbopenplc16.dd, "call method/method=\"Open Plc\"/object=$object") ,new GeDynTipText(pwr_mbopenplc16.dd, JopLang.transl("Open Plc")) }); pwr_mbcircuitdiagram17.dd.setDynType(129); pwr_mbcircuitdiagram17.dd.setActionType(8256); pwr_mbcircuitdiagram17.dd.setAccess(65535); pwr_mbcircuitdiagram17.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbcircuitdiagram17.dd, "$cmd(check method/method=\"CircuitDiagram\"/object=$object)",1) ,new GeDynCommand(pwr_mbcircuitdiagram17.dd, "call method/method=\"CircuitDiagram\"/object=$object") ,new GeDynTipText(pwr_mbcircuitdiagram17.dd, JopLang.transl("CircuitDiagram")) }); pwr_mbrtnavigator18.dd.setDynType(129); pwr_mbrtnavigator18.dd.setActionType(8256); pwr_mbrtnavigator18.dd.setAccess(65532); pwr_mbrtnavigator18.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbrtnavigator18.dd, "$cmd(check method/method=\"RtNavigator\"/object=$object)",1) ,new GeDynCommand(pwr_mbrtnavigator18.dd, "call method/method=\"RtNavigator\"/object=$object") ,new GeDynTipText(pwr_mbrtnavigator18.dd, JopLang.transl("RtNavigator")) }); pwr_mbhelpclass19.dd.setDynType(129); pwr_mbhelpclass19.dd.setActionType(8256); pwr_mbhelpclass19.dd.setAccess(65532); pwr_mbhelpclass19.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbhelpclass19.dd, "$cmd(check method/method=\"Help Class\"/object=$object)",1) ,new GeDynCommand(pwr_mbhelpclass19.dd, "call method/method=\"Help Class\"/object=$object") ,new GeDynTipText(pwr_mbhelpclass19.dd, JopLang.transl("Help Class")) }); pwr_mbblockevents20.dd.setDynType(129); pwr_mbblockevents20.dd.setActionType(8256); pwr_mbblockevents20.dd.setAccess(65532); pwr_mbblockevents20.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbblockevents20.dd, "$cmd(check method/method=\"Block Events...\"/object=$object)",1) ,new GeDynCommand(pwr_mbblockevents20.dd, "call method/method=\"Block Events...\"/object=$object") ,new GeDynTipText(pwr_mbblockevents20.dd, JopLang.transl("Block Events")) }); pwr_mbhistevent21.dd.setDynType(129); pwr_mbhistevent21.dd.setActionType(8256); pwr_mbhistevent21.dd.setAccess(65532); pwr_mbhistevent21.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbhistevent21.dd, "$cmd(check method/method=\"Hist Event...\"/object=$object)",0) ,new GeDynCommand(pwr_mbhistevent21.dd, "call method/method=\"Hist Event...\"/object=$object") ,new GeDynTipText(pwr_mbhistevent21.dd, JopLang.transl("Hist Event")) }); pwr_mbnote22.dd.setDynType(129); pwr_mbnote22.dd.setActionType(8256); pwr_mbnote22.dd.setAccess(65532); pwr_mbnote22.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbnote22.dd, "$cmd(check method/method=\"Note\"/object=$object)",0) ,new GeDynCommand(pwr_mbnote22.dd, "call method/method=\"Note\"/object=$object") ,new GeDynTipText(pwr_mbnote22.dd, JopLang.transl("Note")) }); pwr_mbhelp23.dd.setDynType(128); pwr_mbhelp23.dd.setActionType(8256); pwr_mbhelp23.dd.setAccess(65532); pwr_mbhelp23.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbhelp23.dd, "$cmd(check method/method=\"Help\"/object=$object)",1) ,new GeDynCommand(pwr_mbhelp23.dd, "call method/method=\"Help\"/object=$object") ,new GeDynTipText(pwr_mbhelp23.dd, JopLang.transl("Help")) }); pwr_valuelong24.dd.setDynType(1025); pwr_valuelong24.dd.setActionType(0); pwr_valuelong24.dd.setElements(new GeDynElemIfc[] { new GeDynValue(pwr_valuelong24.dd, "$object.Specification##String80","%s") }); pwr_smallbuttoncenter25.dd.setDynType(128); pwr_smallbuttoncenter25.dd.setActionType(64); pwr_smallbuttoncenter25.dd.setAccess(65532); pwr_smallbuttoncenter25.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_smallbuttoncenter25.dd, "$object.Note##String80",0) ,new GeDynCommand(pwr_smallbuttoncenter25.dd, "call method/method=\"Note\"/object=$object") }); pwr_smallbuttoncenter25.setAnnot1("Note !"); pwr_valuelong26.dd.setDynType(1025); pwr_valuelong26.dd.setActionType(0); pwr_valuelong26.dd.setElements(new GeDynElemIfc[] { new GeDynValue(pwr_valuelong26.dd, "$object.Note##String80","%s") }); pwr_indsquare27.dd.setDynType(5); pwr_indsquare27.dd.setActionType(0); pwr_indsquare27.dd.setElements(new GeDynElemIfc[] { new GeDynDigLowColor(pwr_indsquare27.dd, "$object.Ready##Boolean",29) }); pwr_indsquare30.dd.setDynType(5); pwr_indsquare30.dd.setActionType(0); pwr_indsquare30.dd.setElements(new GeDynElemIfc[] { new GeDynDigLowColor(pwr_indsquare30.dd, "$object.ExtInterlock##Boolean",29) }); pwr_valuesmall33.dd.setDynType(1025); pwr_valuesmall33.dd.setActionType(0); pwr_valuesmall33.dd.setElements(new GeDynElemIfc[] { new GeDynValue(pwr_valuesmall33.dd, "$object.RunTimeCounter.TotalNOfStarts##UInt32","%d") }); pwr_valuesmall34.dd.setDynType(1025); pwr_valuesmall34.dd.setActionType(0); pwr_valuesmall34.dd.setElements(new GeDynElemIfc[] { new GeDynValue(pwr_valuesmall34.dd, "$object.RunTimeCounter.TotalRunTime##DeltaTime","%1t") }); pwr_menubar235.dd.setDynType(1); pwr_menubar235.dd.setActionType(0); pwr_pulldownmenu236.dd.setDynType(0); pwr_pulldownmenu236.dd.setActionType(524288); pwr_pulldownmenu236.dd.setAccess(65535); pwr_pulldownmenu236.dd.setElements(new GeDynElemIfc[] { new GeDynPulldownMenu(pwr_pulldownmenu236.dd, new String[] { JopLang.transl("Print"),JopLang.transl("Close"),null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null}, new GeDyn[] { new GeDyn(pwr_pulldownmenu236,1,65,65535,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu236.dd, "print graph/class/inst=$object") }), new GeDyn(pwr_pulldownmenu236,1,262145,65535,new GeDynElemIfc[] { new GeDynCloseGraph(pwr_pulldownmenu236.dd) }), null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null }) }); pwr_pulldownmenu236.setAnnot1("File"); pwr_pulldownmenu237.dd.setDynType(1); pwr_pulldownmenu237.dd.setActionType(524288); pwr_pulldownmenu237.dd.setAccess(65532); pwr_pulldownmenu237.dd.setElements(new GeDynElemIfc[] { new GeDynPulldownMenu(pwr_pulldownmenu237.dd, new String[] { JopLang.transl("Help"),JopLang.transl("Help Class"),null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null}, new GeDyn[] { new GeDyn(pwr_pulldownmenu237,1,65,65535,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu237.dd, "call method/method=\"Help\"/object=$object") }), new GeDyn(pwr_pulldownmenu237,1,65,65532,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu237.dd, "call method/method=\"Help Class\"/object=$object") }), null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null }) }); pwr_pulldownmenu237.setAnnot1("Help"); pwr_pulldownmenu238.dd.setDynType(1); pwr_pulldownmenu238.dd.setActionType(524288); pwr_pulldownmenu238.dd.setAccess(65535); pwr_pulldownmenu238.dd.setElements(new GeDynElemIfc[] { new GeDynPulldownMenu(pwr_pulldownmenu238.dd, new String[] { JopLang.transl("SafetySwitch.On Di"),null,null,null,JopLang.transl("FrequencyConverter.ActSpeed"),JopLang.transl("FrequencyConverter.ActTorque"),JopLang.transl("FrequencyConverter.ActCurrent"),JopLang.transl("FrequencyConverter.RefSpeed"),JopLang.transl("Motor.TempSwitch.Switch Di"),JopLang.transl("Motor.TempSensor.Value Ai"),null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null}, new GeDyn[] { new GeDyn(pwr_pulldownmenu238,1,65,65535,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu238.dd, "open graph /class /inst=$object.SafetySwitch.On") }), null,null,null, new GeDyn(pwr_pulldownmenu238,1,65,65535,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu238.dd, "open graph /class /inst=$object.FrequencyConverter.ActSpeed") }), new GeDyn(pwr_pulldownmenu238,1,65,65535,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu238.dd, "open graph /class /inst=$object.FrequencyConverter.ActTorque") }), new GeDyn(pwr_pulldownmenu238,1,65,65535,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu238.dd, "open graph /class /inst=$object.FrequencyConverter.ActCurrent") }), new GeDyn(pwr_pulldownmenu238,1,65,65535,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu238.dd, "open graph /class /inst=$object.FrequencyConverter.RefSpeed") }), new GeDyn(pwr_pulldownmenu238,129,65,33619964,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu238.dd, "$object.Motor.DisableTempSwitch##Boolean",0) ,new GeDynCommand(pwr_pulldownmenu238.dd, "open graph /class /inst=$object.Motor.TempSwitch.Switch") }), new GeDyn(pwr_pulldownmenu238,129,65,33619964,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu238.dd, "$object.Motor.DisableTempSensor##Boolean",0) ,new GeDynCommand(pwr_pulldownmenu238.dd, "open graph /class /inst=$object.Motor.TempSensor.Value") }), null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null }) }); pwr_pulldownmenu238.setAnnot1("Signals"); pwr_pulldownmenu239.dd.setDynType(1); pwr_pulldownmenu239.dd.setActionType(524288); pwr_pulldownmenu239.dd.setAccess(65535); pwr_pulldownmenu239.dd.setElements(new GeDynElemIfc[] { new GeDynPulldownMenu(pwr_pulldownmenu239.dd, new String[] { JopLang.transl("Help"),JopLang.transl("Note"),JopLang.transl("Trend"),JopLang.transl("Fast"),JopLang.transl("Photo"),JopLang.transl("DataSheet"),JopLang.transl("Hist Event..."),JopLang.transl("Block Events..."),JopLang.transl("RtNavigator"),JopLang.transl("Open Object"),JopLang.transl("Open Plc"),JopLang.transl("CircuitDiagram"),JopLang.transl("Help Class"),null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null}, new GeDyn[] { new GeDyn(pwr_pulldownmenu239,129,65,65535,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"Help\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"Help\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"Note\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"Note\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"Trend\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"Trend\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"Fast\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"Fast\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"Photo\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"Photo\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"DataSheet\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"DataSheet\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"Hist Event...\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"Hist Event...\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"Block Events...\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"Block Events...\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"RtNavigator\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"RtNavigator\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"Open Object\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"Open Object\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"Open Plc\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"Open Plc\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"CircuitDiagram\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"CircuitDiagram\"/object=$object") }), new GeDyn(pwr_pulldownmenu239,129,65,65532,new GeDynElemIfc[] { new GeDynInvisible(pwr_pulldownmenu239.dd, "$cmd(check method/method=\"Help Class\"/object=$object)",0) ,new GeDynCommand(pwr_pulldownmenu239.dd, "call method/method=\"Help Class\"/object=$object") }), null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null }) }); pwr_pulldownmenu239.setAnnot1("Methods"); pwr_pulldownmenu240.dd.setDynType(1); pwr_pulldownmenu240.dd.setActionType(524288); pwr_pulldownmenu240.dd.setAccess(65535); pwr_pulldownmenu240.dd.setElements(new GeDynElemIfc[] { new GeDynPulldownMenu(pwr_pulldownmenu240.dd, new String[] { JopLang.transl("SafetySwitch"),null,null,JopLang.transl("FrequencyConverter"),JopLang.transl("Motor"),null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null}, new GeDyn[] { new GeDyn(pwr_pulldownmenu240,1,65,65535,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu240.dd, "open graph /class /inst=$object.SafetySwitch") }), null,null, new GeDyn(pwr_pulldownmenu240,1,65,65535,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu240.dd, "open graph /class /inst=$object.FrequencyConverter") }), new GeDyn(pwr_pulldownmenu240,1,65,65535,new GeDynElemIfc[] { new GeDynCommand(pwr_pulldownmenu240.dd, "open graph /class /inst=$object.Motor") }), null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null }) }); pwr_pulldownmenu240.setAnnot1("Components"); pwr_motor241.dd.setDynType(0); pwr_motor241.dd.setActionType(66); pwr_motor241.dd.setAccess(65535); pwr_motor241.dd.setElements(new GeDynElemIfc[] { new GeDynPopupMenu(pwr_motor241.dd, "$object.Motor") ,new GeDynCommand(pwr_motor241.dd, "open graph/class/instance=$object.motor") }); pwr_smallbuttoncenter42.dd.setDynType(129); pwr_smallbuttoncenter42.dd.setActionType(6); pwr_smallbuttoncenter42.dd.setAccess(65532); pwr_smallbuttoncenter42.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_smallbuttoncenter42.dd, "$object.Mode.ManAutoHide##Boolean",0) ,new GeDynInvisible(pwr_smallbuttoncenter42.dd, "$object.Mode.ManModDim##Boolean",1) ,new GeDynPopupMenu(pwr_smallbuttoncenter42.dd, "$object.Mode.OpMan") ,new GeDynSetDig(pwr_smallbuttoncenter42.dd, "$object.Mode.OpMan##Boolean") }); pwr_smallbuttoncenter42.setAnnot1("Man"); pwr_indround43.dd.setDynType(133); pwr_indround43.dd.setActionType(0); pwr_indround43.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_indround43.dd, "$object.Mode.ManAutoHide##Boolean",0) ,new GeDynDigLowColor(pwr_indround43.dd, "!$object.Mode.AutoMode##Boolean",29) }); pwr_indround44.dd.setDynType(133); pwr_indround44.dd.setActionType(0); pwr_indround44.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_indround44.dd, "$object.Mode.ExternOrdHide##Boolean",0) ,new GeDynDigLowColor(pwr_indround44.dd, "$object.Mode.AutoMode##Boolean",29) }); pwr_smallbuttoncenter45.dd.setDynType(129); pwr_smallbuttoncenter45.dd.setActionType(6); pwr_smallbuttoncenter45.dd.setAccess(65532); pwr_smallbuttoncenter45.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_smallbuttoncenter45.dd, "$object.Mode.ManOrdHide##Boolean",0) ,new GeDynInvisible(pwr_smallbuttoncenter45.dd, "$object.Mode.ManOrdDim##Boolean",1) ,new GeDynPopupMenu(pwr_smallbuttoncenter45.dd, "$object.Mode.OpManStart") ,new GeDynSetDig(pwr_smallbuttoncenter45.dd, "$object.MOde.OpManStart##Boolean") }); pwr_smallbuttoncenter45.setAnnot1("Start"); pwr_smallbuttoncenter46.dd.setDynType(129); pwr_smallbuttoncenter46.dd.setActionType(6); pwr_smallbuttoncenter46.dd.setAccess(65532); pwr_smallbuttoncenter46.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_smallbuttoncenter46.dd, "$object.Mode.ManOrdHide##Boolean",0) ,new GeDynInvisible(pwr_smallbuttoncenter46.dd, "$object.Mode.ManOrdDim##Boolean",1) ,new GeDynPopupMenu(pwr_smallbuttoncenter46.dd, "$object.Mode.OpManStop") ,new GeDynSetDig(pwr_smallbuttoncenter46.dd, "$object.Mode.OpManStop##Boolean") }); pwr_smallbuttoncenter46.setAnnot1("Stop"); pwr_indround47.dd.setDynType(133); pwr_indround47.dd.setActionType(0); pwr_indround47.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_indround47.dd, "$object.Mode.LocalModHide##Boolean",0) ,new GeDynDigLowColor(pwr_indround47.dd, "$object.Mode.LocalMode##Boolean",29) }); pwr_indround48.dd.setDynType(5); pwr_indround48.dd.setActionType(0); pwr_indround48.dd.setElements(new GeDynElemIfc[] { new GeDynDigLowColor(pwr_indround48.dd, "$object.FrequencyConverter.ConvertRun##Boolean",29) }); grp169_49.dd.setDynType(129); grp169_49.dd.setActionType(0); grp169_49.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(grp169_49.dd, "$object.Mode.LocalModHide##Boolean",0) }); pwr_indsquare50.dd.setDynType(117); pwr_indsquare50.dd.setActionType(2); pwr_indsquare50.dd.setAccess(65532); pwr_indsquare50.dd.setElements(new GeDynElemIfc[] { new GeDynDigFlash(pwr_indsquare50.dd, "$object.FrequencyConverter.PowerStartUp##Boolean",294,9999) ,new GeDynDigError(pwr_indsquare50.dd, "$object.FrequencyConverter.IndError##Boolean") ,new GeDynDigWarning(pwr_indsquare50.dd, "$object.FrequencyConverter.IndWarning##Boolean") ,new GeDynDigLowColor(pwr_indsquare50.dd, "$object.FrequencyConverter.ReadyRemote##Boolean",29) ,new GeDynPopupMenu(pwr_indsquare50.dd, "$object.FrequencyConverter") }); pwr_smallbuttoncenter54.dd.setDynType(1); pwr_smallbuttoncenter54.dd.setActionType(4); pwr_smallbuttoncenter54.dd.setAccess(65532); pwr_smallbuttoncenter54.dd.setElements(new GeDynElemIfc[] { new GeDynSetDig(pwr_smallbuttoncenter54.dd, "$object.FrequencyConverter.OpReset##Boolean") }); pwr_smallbuttoncenter54.setAnnot1("Reset"); pwr_valuemedium55.dd.setDynType(1024); pwr_valuemedium55.dd.setActionType(2); pwr_valuemedium55.dd.setAccess(65532); pwr_valuemedium55.dd.setElements(new GeDynElemIfc[] { new GeDynValue(pwr_valuemedium55.dd, "$object.FrequencyConverter.ActSpeed.ActualValue##Float32","%9.3f") ,new GeDynPopupMenu(pwr_valuemedium55.dd, "$object.FrequencyConverter.ActSpeed") }); pwr_valuemedium56.dd.setDynType(1025); pwr_valuemedium56.dd.setActionType(2); pwr_valuemedium56.dd.setAccess(65532); pwr_valuemedium56.dd.setElements(new GeDynElemIfc[] { new GeDynValue(pwr_valuemedium56.dd, "$object.FrequencyConverter.ActTorque.ActualValue##Float32","%7.1f") ,new GeDynPopupMenu(pwr_valuemedium56.dd, "$object.FrequencyConverter.ActTorque") }); pwr_valuemedium58.dd.setDynType(1025); pwr_valuemedium58.dd.setActionType(0); pwr_valuemedium58.dd.setElements(new GeDynElemIfc[] { new GeDynValue(pwr_valuemedium58.dd, "$object.FrequencyConverter.ActSpeed.Unit##String16","%s") }); pwr_valueinputmediumrd62.dd.setDynType(1153); pwr_valueinputmediumrd62.dd.setActionType(4096); pwr_valueinputmediumrd62.dd.setAccess(65532); pwr_valueinputmediumrd62.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_valueinputmediumrd62.dd, "$object.Mode.ManOrdHide##Boolean",0) ,new GeDynValue(pwr_valueinputmediumrd62.dd, "$object.Mode.OpRefMan##Float32","%9.3f") ,new GeDynValueInput(pwr_valueinputmediumrd62.dd, 0,0,"$object.Mode.OpMinRefMan##Float32","$object.Mode.OpMaxRefMan##Float32") }); pwr_valueinputmediumrd62.setAnnot1Font(pwr_valueinputmediumrd62.annotFont.deriveFont((float)14)); grp210_63.dd.setDynType(129); grp210_63.dd.setActionType(0); grp210_63.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(grp210_63.dd, "$object.Mode.ManOrdHide##Boolean",0) }); grp212_64.dd.setDynType(129); grp212_64.dd.setActionType(0); grp212_64.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(grp212_64.dd, "$object.Mode.ManOrdHide##Boolean",0) }); pwr_valuemedium65.dd.setDynType(1025); pwr_valuemedium65.dd.setActionType(2); pwr_valuemedium65.dd.setAccess(65532); pwr_valuemedium65.dd.setElements(new GeDynElemIfc[] { new GeDynValue(pwr_valuemedium65.dd, "$object.FrequencyConverter.ActCurrent.ActualValue##Float32","%7.1f") ,new GeDynPopupMenu(pwr_valuemedium65.dd, "$object.FrequencyConverter.ActCurrrent") }); pwr_indsquare69.dd.setDynType(5); pwr_indsquare69.dd.setActionType(0); pwr_indsquare69.dd.setElements(new GeDynElemIfc[] { new GeDynDigLowColor(pwr_indsquare69.dd, "$object.PowExtInterlock##Boolean",29) }); pwr_mbsimulate70.dd.setDynType(129); pwr_mbsimulate70.dd.setActionType(8256); pwr_mbsimulate70.dd.setAccess(65532); pwr_mbsimulate70.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbsimulate70.dd, "$cmd(check method/method=\"Simulate\"/object=$object)",0) ,new GeDynCommand(pwr_mbsimulate70.dd, "call method/method=\"Simulate\"/object=$object") ,new GeDynTipText(pwr_mbsimulate70.dd, JopLang.transl("Open simulate graph")) }); pwr_rodcouplinganim71.dd.setDynType(65537); pwr_rodcouplinganim71.dd.setActionType(0); pwr_rodcouplinganim71.dd.setElements(new GeDynElemIfc[] { new GeDynAnimation(pwr_rodcouplinganim71.dd, "$object.FrequencyConverter.ConvertRun##Boolean",1) }); pwr_motorman72.dd.setDynType(1077); pwr_motorman72.dd.setActionType(0); pwr_motorman72.dd.setElements(new GeDynElemIfc[] { new GeDynDigError(pwr_motorman72.dd, "$object.IndError##Boolean") ,new GeDynDigWarning(pwr_motorman72.dd, "$object.IndWarning##Boolean") ,new GeDynDigLowColor(pwr_motorman72.dd, "$object.FrequencyConverter.ConvertRun##Boolean",37) ,new GeDynValue(pwr_motorman72.dd, "$object.Mode.IndMode##String8","%s") }); pwr_indsquare73.dd.setDynType(176); pwr_indsquare73.dd.setActionType(2); pwr_indsquare73.dd.setAccess(65532); pwr_indsquare73.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_indsquare73.dd, "!$object.Motor.DisplayInd##Boolean",0) ,new GeDynDigError(pwr_indsquare73.dd, "$object.Motor.IndError##Boolean") ,new GeDynDigWarning(pwr_indsquare73.dd, "$object.Motor.IndWarning##Boolean") ,new GeDynPopupMenu(pwr_indsquare73.dd, "$object.Motor") }); grp223_74.dd.setDynType(129); grp223_74.dd.setActionType(0); grp223_74.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(grp223_74.dd, "!$object.Motor.DisplayInd##Boolean",0) }); grp226_75.dd.setDynType(129); grp226_75.dd.setActionType(0); grp226_75.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(grp226_75.dd, "$object.Mode.ExternOrdHide##Boolean",0) }); pwr_smallbuttoncenter76.dd.setDynType(129); pwr_smallbuttoncenter76.dd.setActionType(6); pwr_smallbuttoncenter76.dd.setAccess(65532); pwr_smallbuttoncenter76.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_smallbuttoncenter76.dd, "$object.Mode.ManAutoHide##Boolean",0) ,new GeDynInvisible(pwr_smallbuttoncenter76.dd, "$object.Mode.AutoModDim##Boolean",1) ,new GeDynPopupMenu(pwr_smallbuttoncenter76.dd, "$object.Mode.OpAuto") ,new GeDynSetDig(pwr_smallbuttoncenter76.dd, "$object.Mode.OpAuto##Boolean") }); pwr_smallbuttoncenter76.setAnnot1("Auto"); pwr_fuse380.dd.setDynType(1); pwr_fuse380.dd.setActionType(0); bcomp_fc81.dd.setDynType(1); bcomp_fc81.dd.setActionType(66); bcomp_fc81.dd.setAccess(65535); bcomp_fc81.dd.setElements(new GeDynElemIfc[] { new GeDynPopupMenu(bcomp_fc81.dd, "$object.FrequencyConverter") ,new GeDynCommand(bcomp_fc81.dd, "open graph /class/instance=$object.FrequencyConverter") }); pwr_safetyswitch82.dd.setDynType(32769); pwr_safetyswitch82.dd.setActionType(66); pwr_safetyswitch82.dd.setAccess(65535); pwr_safetyswitch82.dd.setElements(new GeDynElemIfc[] { new GeDynDigShift(pwr_safetyswitch82.dd, "!$object.SafetySwitch.On.ActualValue##Boolean") ,new GeDynPopupMenu(pwr_safetyswitch82.dd, "$object.SafetySwitch") ,new GeDynCommand(pwr_safetyswitch82.dd, "open graph/class/instance=$object.SafetySwitch") }); pwr_mbup83.dd.setDynType(129); pwr_mbup83.dd.setActionType(8256); pwr_mbup83.dd.setAccess(33619967); pwr_mbup83.dd.setElements(new GeDynElemIfc[] { new GeDynInvisible(pwr_mbup83.dd, "$cmd(check isattribute/object=$object)",0) ,new GeDynCommand(pwr_mbup83.dd, "open graph/class/parent/instance=$object") ,new GeDynTipText(pwr_mbup83.dd, JopLang.transl("Open parent object graph")) }); engine.setFrameReady(); } class LocalPanel extends JPanel { public LocalPanel() {} int fillColor = 9999; int originalFillColor = 9999; int textColor = 9999; int originalTextColor = 9999; int borderColor = 9999; int colorTone = 0; int originalColorTone = 0; int colorShift = 0; int originalColorShift = 0; int colorBrightness = 0; int originalColorBrightness = 0; int colorIntensity = 0; int originalColorIntensity = 0; int colorInverse = 0; int originalColorInverse = 0; int shadow = 0; boolean dimmed = false; public void setColorTone( int colorTone) { this.colorTone = colorTone; originalColorTone = colorTone; } public int getColorTone() { return colorTone; } public void setColorShift( int colorShift) { this.colorShift = colorShift; originalColorShift = colorShift; } public int getColorShift() { return colorShift; } public void setColorBrightness( int colorBrightness) { this.colorBrightness = colorBrightness; originalColorBrightness = colorBrightness; } public int getColorBrightness() { return colorBrightness; } public void setColorIntensity( int colorIntensity) { this.colorIntensity = colorIntensity; originalColorIntensity = colorIntensity; } public int getColorIntensity() { return colorIntensity; } public void setFillColor( int fillColor) { this.fillColor = fillColor; this.originalFillColor = fillColor; } public void resetFillColor() { fillColor = originalFillColor; } public int getFillColor() { return fillColor; } public void setBorderColor( int borderColor) { this.borderColor = borderColor; } public int getBorderColor() { return borderColor; } public int original_width = 409; public int original_height = 625; double rotate; public void setRotate( double rotate) { if ( rotate < 0) this.rotate = rotate % 360 + 360; else this.rotate = rotate % 360; } public double getRotate() { return rotate;} Shape[] shapes = new Shape[] { new Rectangle2D.Float(2.37535F, 23.1001F, 404.413F, 22.4305F), new Rectangle2D.Float(19.5788F, 144.332F, 207.761F, 130.401F), new Polygon( new int[] { 20, 227, 226, 20, 20, 20}, new int[] { 144, 144, 145, 145, 274, 275}, 6), new Polygon( new int[] { 227, 227, 226, 226, 20, 20}, new int[] { 275, 144, 145, 274, 274, 275}, 6), new Rectangle2D.Float(231.738F, 225.526F, 148.48F, 49.3706F), new Polygon( new int[] { 232, 380, 380, 232, 232, 232}, new int[] { 226, 226, 226, 226, 274, 275}, 6), new Polygon( new int[] { 380, 380, 380, 380, 232, 232}, new int[] { 275, 226, 226, 274, 274, 275}, 6), new Rectangle2D.Float(19.7601F, 279.568F, 361.006F, 322.47F), new Polygon( new int[] { 20, 381, 380, 21, 21, 20}, new int[] { 280, 280, 281, 281, 601, 602}, 6), new Polygon( new int[] { 381, 381, 380, 380, 21, 20}, new int[] { 602, 280, 281, 601, 601, 602}, 6), new Rectangle2D.Float(231.738F, 144.515F, 148.48F, 78.3917F), new Polygon( new int[] { 232, 380, 379, 233, 233, 232}, new int[] { 145, 145, 145, 145, 222, 223}, 6), new Polygon( new int[] { 380, 380, 379, 379, 233, 232}, new int[] { 223, 145, 145, 222, 222, 223}, 6), new Line2D.Float( 225.143F, 166.041F, 20.3042F, 166.041F), new Line2D.Float( 380.787F, 166F, 232.426F, 166F), new Line2D.Float( 113.158F, 166.971F, 113.158F, 273.415F), new Line2D.Float( 288F, 290F, 288F, 346F), new Line2D.Float( 288F, 442F, 288F, 424F), new Polygon( new int[] { 214, 284, 288, 288, 288, 284}, new int[] {508, 508, 504, 476, 504, 508}, 6), }; public void paint(Graphics g1) { Graphics2D g = (Graphics2D) g1; Component c; Point p; paintComponent(g); for ( int i = 0; i < getComponentCount(); i++) { AffineTransform save = g.getTransform(); c = getComponent(i); p = c.getLocation(); g.translate((int)p.getX(), (int)p.getY()); c.paint(g); g.setTransform(save); } } public void paintComponent(Graphics g1) { Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); double scaleWidth = (1.0*width/original_width); double scaleHeight = (1.0*height/original_height); AffineTransform save = g.getTransform(); g.setColor(getBackground()); g.fill(new Rectangle(0,0,getWidth(),getHeight())); g.transform( AffineTransform.getScaleInstance( scaleWidth, scaleHeight)); // scaletest AffineTransform save_tmp; { GradientPaint gp = new GradientPaint( 2.37535F,45.5306F, GeColor.getColor(31,colorTone,colorShift,colorIntensity,0, colorInverse, fillColor, dimmed), 2.37535F,23.1001F,GeColor.getColor(31,colorTone,colorShift,colorIntensity,-1, colorInverse, fillColor, dimmed),true); g.setPaint(gp); } g.fill( shapes[0]); { int fcolor = GeColor.getDrawtype(31, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[3]); } g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 12)); g.drawString( JopLang.transl("Start"),131, 188); { int fcolor = GeColor.getDrawtype(33, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[5]); g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[6]); } { int fcolor = GeColor.getDrawtype(31, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[8]); g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[9]); } { int fcolor = GeColor.getDrawtype(31, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[11]); g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[12]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(35, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[13]); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 12)); g.drawString( JopLang.transl("SafetySwitch"),36, 461); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 12)); g.drawString( JopLang.transl("Mode"),39, 162); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 12)); g.drawString( JopLang.transl("Ready"),273, 110); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 12)); g.drawString( JopLang.transl("Interlock"),273, 131); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 12)); g.drawString( JopLang.transl("Starts"),244, 244); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 12)); g.drawString( JopLang.transl("Run"),244, 264); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 12)); g.drawString( JopLang.transl("Frequencyconverter"),36, 365); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 12)); g.drawString( JopLang.transl("Power"),244, 161); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(35, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[14]); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 8)); g.drawString( JopLang.transl("%"),363, 545); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 8)); g.drawString( JopLang.transl("Torque"),264, 545); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 8)); g.drawString( JopLang.transl("Speed"),264, 527); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(35, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[15]); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 8)); g.drawString( JopLang.transl("A"),363, 563); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 8)); g.drawString( JopLang.transl("Current"),264, 563); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.PLAIN, 12)); g.drawString( JopLang.transl("Interlock"),239, 189); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[16]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[17]); { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[18]); } g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_smallbuttoncenter extends GeComponent { // Dimension size; public pwr_smallbuttoncenter( JopSession session) { super( session); size = new Dimension( 48, 21); annot1Font = new Font("Helvetica", Font.BOLD, 12); } int annot1Color = 0; public String getAnnot1() { return annot1;} public void setAnnot1( String s) { annot1 = JopLang.transl(s);} public void setAnnot1Font( Font font) { annot1Font = font;} public Font getAnnot1Font() { return annot1Font;} public void setAnnot1Color( int color) { annot1Color = color;} public int original_width = 48; public int original_height = 21; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 44F, 17F), new Polygon( new int[] { 2, 46, 43, 5, 5, 2}, new int[] { 2, 2, 5, 5, 16, 19}, 6), new Polygon( new int[] { 46, 46, 43, 43, 5, 2}, new int[] { 19, 2, 5, 16, 16, 19}, 6), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(102, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,1,-1,2F,2F,44F,17F, false,102, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } FontRenderContext frc = g.getFontRenderContext(); g.setColor(GeColor.getColor( annot1Color , colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont( annot1Font); save_tmp = g.getTransform(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_OFF); g.transform( AffineTransform.getScaleInstance( original_width/width * height/original_height, 1)); if ( annot1 != null) g.drawString( annot1, 24 * original_height / height * width / original_width- (float)g.getFont().getStringBounds(annot1, frc).getWidth()/2, 15F); g.setTransform( save_tmp); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_fuse3 extends GeComponent { // Dimension size; public pwr_fuse3( JopSession session) { super( session); size = new Dimension( 40, 16); } public int original_width = 40; public int original_height = 16; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 36F, 12F), new Polygon( new int[] { 2, 38, 37, 3, 3, 2}, new int[] { 2, 2, 3, 3, 13, 14}, 6), new Polygon( new int[] { 38, 38, 37, 37, 3, 2}, new int[] { 14, 2, 3, 13, 13, 14}, 6), new Rectangle2D.Float(2F, 2F, 6F, 12F), new Polygon( new int[] { 2, 8, 8, 2, 2, 2}, new int[] { 2, 2, 2, 2, 14, 14}, 6), new Polygon( new int[] { 8, 8, 8, 8, 2, 2}, new int[] { 14, 2, 2, 14, 14, 14}, 6), new Rectangle2D.Float(2F, 10F, 6F, 4F), new Polygon( new int[] { 2, 8, 8, 2, 2, 2}, new int[] { 10, 10, 10, 10, 14, 14}, 6), new Polygon( new int[] { 8, 8, 8, 8, 2, 2}, new int[] { 14, 10, 10, 14, 14, 14}, 6), new Rectangle2D.Float(2F, 2F, 6F, 4F), new Polygon( new int[] { 2, 8, 8, 2, 2, 2}, new int[] { 2, 2, 2, 2, 6, 6}, 6), new Polygon( new int[] { 8, 8, 8, 8, 2, 2}, new int[] { 6, 2, 2, 6, 6, 6}, 6), new Line2D.Float( 32F, 8F, 8F, 8F), new Rectangle2D.Float(32F, 2F, 6F, 12F), new Polygon( new int[] { 32, 38, 38, 32, 32, 32}, new int[] { 2, 2, 2, 2, 14, 14}, 6), new Polygon( new int[] { 38, 38, 38, 38, 32, 32}, new int[] { 14, 2, 2, 14, 14, 14}, 6), new Rectangle2D.Float(32F, 10F, 6F, 4F), new Polygon( new int[] { 32, 38, 38, 32, 32, 32}, new int[] { 10, 10, 10, 10, 14, 14}, 6), new Polygon( new int[] { 38, 38, 38, 38, 32, 32}, new int[] { 14, 10, 10, 14, 14, 14}, 6), new Rectangle2D.Float(32F, 2F, 6F, 4F), new Polygon( new int[] { 32, 38, 38, 32, 32, 32}, new int[] { 2, 2, 2, 2, 6, 6}, 6), new Polygon( new int[] { 38, 38, 38, 38, 32, 32}, new int[] { 6, 2, 2, 6, 6, 6}, 6), new Line2D.Float( 38F, 6F, 2F, 6F), new Rectangle2D.Float(2F, 2F, 6F, 12F), new Polygon( new int[] { 2, 8, 8, 2, 2, 2}, new int[] { 2, 2, 2, 2, 14, 14}, 6), new Polygon( new int[] { 8, 8, 8, 8, 2, 2}, new int[] { 14, 2, 2, 14, 14, 14}, 6), new Rectangle2D.Float(32F, 2F, 6F, 12F), new Polygon( new int[] { 32, 38, 38, 32, 32, 32}, new int[] { 2, 2, 2, 2, 14, 14}, 6), new Polygon( new int[] { 38, 38, 38, 38, 32, 32}, new int[] { 14, 2, 2, 14, 14, 14}, 6), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,36F,12F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[3]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,6F,12F, false,23, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[3]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[5]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[6]); } else { GeGradient.paint( g, gradient,2,-2,2F,10F,6F,4F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[6]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[7]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[8]); } } { int fcolor = GeColor.getDrawtype(22, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[9]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,6F,4F, false,22, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[10]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[11]); } } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[12]); { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[13]); } else { GeGradient.paint( g, gradient,2,-2,32F,2F,6F,12F, false,23, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[13]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[14]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[15]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[16]); } else { GeGradient.paint( g, gradient,2,-2,32F,10F,6F,4F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[16]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[17]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[18]); } } { int fcolor = GeColor.getDrawtype(22, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[19]); } else { GeGradient.paint( g, gradient,2,-2,32F,2F,6F,4F, false,22, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[19]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[20]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[21]); } } g.setStroke( new BasicStroke(2F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[22]); { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[24]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[25]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[23]); } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[27]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[28]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[26]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_valuemedium extends GeComponent { // Dimension size; public pwr_valuemedium( JopSession session) { super( session); size = new Dimension( 64, 24); annot1Font = new Font("Helvetica", Font.BOLD, 14); } int annot1Color = 0; public String getAnnot1() { return annot1;} public void setAnnot1( String s) { annot1 = JopLang.transl(s);} public void setAnnot1Font( Font font) { annot1Font = font;} public Font getAnnot1Font() { return annot1Font;} public void setAnnot1Color( int color) { annot1Color = color;} public int original_width = 64; public int original_height = 24; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 60F, 20F), new Polygon( new int[] { 2, 62, 61, 3, 3, 2}, new int[] { 2, 2, 3, 3, 21, 22}, 6), new Polygon( new int[] { 62, 62, 61, 61, 3, 2}, new int[] { 22, 2, 3, 21, 21, 22}, 6), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(41, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,60F,20F, false,41, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } g.setColor(GeColor.getColor( annot1Color , colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont( annot1Font); save_tmp = g.getTransform(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_OFF); g.transform( AffineTransform.getScaleInstance( original_width/width * height/original_height, 1)); if ( annot1 != null) g.drawString( annot1, 8 * original_height / height * width / original_width, 18F); g.setTransform( save_tmp); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_indround extends GeComponent { // Dimension size; public pwr_indround( JopSession session) { super( session); size = new Dimension( 18, 18); } public int original_width = 18; public int original_height = 18; Shape[] shapes = new Shape[] { new Arc2D.Float(2F, 2F, 14F, 14F, 35F, 140F, Arc2D.PIE), new Arc2D.Float(2F, 2F, 14F, 14F, 215F, 140F, Arc2D.PIE), new Arc2D.Float(2F, 2F, 14F, 14F, -5F, 40F, Arc2D.PIE), new Arc2D.Float(2F, 2F, 14F, 14F, 175F, 40F, Arc2D.PIE), new Arc2D.Float(4.1F, 4.1F, 9.8F, 9.8F, 0F, 360F, Arc2D.PIE), new Arc2D.Float(2F, 2F, 14F, 14F, 0F, 360F, Arc2D.PIE), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } ((Arc2D)shapes[0]).setArcType(Arc2D.PIE); ((Arc2D)shapes[1]).setArcType(Arc2D.PIE); ((Arc2D)shapes[2]).setArcType(Arc2D.PIE); ((Arc2D)shapes[3]).setArcType(Arc2D.PIE); ((Arc2D)shapes[4]).setArcType(Arc2D.PIE); { int fcolor = GeColor.getDrawtype(293, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[0]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[2]); g.fill( shapes[3]); g.fill( shapes[4]); } else { GeGradient.paint( g, 9,2,-2,2F,2F,14F,14F, false,293, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[5]); GeGradient.paint( g, gradient,2,-2,2F,2F,14F,14F, false,293, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[4]); } } else { if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[5]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,14F,14F, false,293, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[5]); } } } ((Arc2D)shapes[5]).setArcType(Arc2D.OPEN); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[5]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_valuelong extends GeComponent { // Dimension size; public pwr_valuelong( JopSession session) { super( session); size = new Dimension( 536, 18); annot1Font = new Font("Helvetica", Font.BOLD, 10); } int annot1Color = 0; public String getAnnot1() { return annot1;} public void setAnnot1( String s) { annot1 = JopLang.transl(s);} public void setAnnot1Font( Font font) { annot1Font = font;} public Font getAnnot1Font() { return annot1Font;} public void setAnnot1Color( int color) { annot1Color = color;} public int original_width = 536; public int original_height = 18; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 532F, 14F), new Polygon( new int[] { 2, 534, 533, 3, 3, 2}, new int[] { 2, 2, 3, 3, 15, 16}, 6), new Polygon( new int[] { 534, 534, 533, 533, 3, 2}, new int[] { 16, 2, 3, 15, 15, 16}, 6), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(41, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,532F,14F, false,41, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } g.setColor(GeColor.getColor( annot1Color , colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont( annot1Font); save_tmp = g.getTransform(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_OFF); g.transform( AffineTransform.getScaleInstance( original_width/width * height/original_height, 1)); if ( annot1 != null) g.drawString( annot1, 7 * original_height / height * width / original_width, 13F); g.setTransform( save_tmp); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_indsquare extends GeComponent { // Dimension size; public pwr_indsquare( JopSession session) { super( session); size = new Dimension( 16, 17); } public int original_width = 16; public int original_height = 17; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 12F, 13F), new Polygon( new int[] { 2, 14, 12, 4, 4, 2}, new int[] { 2, 2, 4, 4, 13, 15}, 6), new Polygon( new int[] { 14, 14, 12, 12, 4, 2}, new int[] { 15, 2, 4, 13, 13, 15}, 6), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(293, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,12F,13F, false,293, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_motor2 extends GeComponent { // Dimension size; public pwr_motor2( JopSession session) { super( session); size = new Dimension( 98, 74); } public int original_width = 98; public int original_height = 74; Shape[] shapes = new Shape[] { new Polygon( new int[] { 80, 80, 28, 24, 24, 28, 80}, new int[] {12, 62, 62, 58, 16, 12, 12}, 7), new Rectangle2D.Float(24F, 46F, 56F, 12F), new Rectangle2D.Float(2F, 34F, 18F, 4F), new Polygon( new int[] { 2, 20, 20, 2, 2, 2}, new int[] { 34, 34, 34, 34, 38, 38}, 6), new Polygon( new int[] { 20, 20, 20, 20, 2, 2}, new int[] { 38, 34, 34, 38, 38, 38}, 6), new Rectangle2D.Float(2F, 38F, 18F, 2F), new Polygon( new int[] { 2, 20, 20, 2, 2, 2}, new int[] { 38, 38, 38, 38, 40, 40}, 6), new Polygon( new int[] { 20, 20, 20, 20, 2, 2}, new int[] { 40, 38, 38, 40, 40, 40}, 6), new Rectangle2D.Float(2F, 34F, 18F, 6F), new Polygon( new int[] { 80, 92, 96, 96, 92, 80, 80}, new int[] {12, 12, 14, 60, 62, 62, 12}, 7), new Polygon( new int[] { 80, 81, 92, 92}, new int[] { 12, 15, 15,12}, 4), new Polygon( new int[] { 92, 92, 95, 96}, new int[] { 12, 15, 17,14}, 4), new Polygon( new int[] { 96, 95, 95, 96}, new int[] { 14, 17, 59,60}, 4), new Polygon( new int[] { 96, 95, 92, 92}, new int[] { 60, 59, 61,62}, 4), new Polygon( new int[] { 92, 92, 81, 80}, new int[] { 62, 61, 61,62}, 4), new Polygon( new int[] { 80, 81, 81, 80}, new int[] { 62, 61, 15,12}, 4), new Polygon( new int[] { 80, 81, 2, 2}, new int[] { 12, 15, 96,55}, 4), new Polygon( new int[] { 36, 36, 28, 28, 38, 40, 74, 76, 86, 86, 78, 78, 36}, new int[] {62, 68, 68, 72, 72, 70, 70, 72, 72, 68, 68, 62, 62}, 13), new Polygon( new int[] { 24, 22, 20, 20, 22, 24, 24}, new int[] {16, 16, 18, 56, 58, 58, 16}, 7), new Rectangle2D.Float(34F, 2F, 20F, 10F), new Polygon( new int[] { 34, 54, 52, 36, 36, 34}, new int[] { 2, 2, 4, 4, 10, 12}, 6), new Polygon( new int[] { 54, 54, 52, 52, 36, 34}, new int[] { 12, 2, 4, 10, 10, 12}, 6), new Rectangle2D.Float(38F, 62F, 38F, 6F), new Line2D.Float( 80F, 18F, 24F, 18F), new Line2D.Float( 80F, 22F, 24F, 22F), new Line2D.Float( 80F, 26F, 24F, 26F), new Line2D.Float( 80F, 32F, 24F, 32F), new Line2D.Float( 80F, 42F, 24F, 42F), new Line2D.Float( 80F, 48F, 24F, 48F), new Line2D.Float( 80F, 52F, 24F, 52F), new Line2D.Float( 80F, 56F, 24F, 56F), new Rectangle2D.Float(80F, 44F, 16F, 12F), new Polygon( new int[] { 80, 96, 96, 92, 80, 80}, new int[] {56, 56, 60, 62, 62, 56}, 6), new Arc2D.Float(36F, 4F, 6F, 6F, 0F, 360F, Arc2D.PIE), new Arc2D.Float(46F, 4F, 6F, 6F, 0F, 360F, Arc2D.PIE), new Polygon( new int[] { 20, 24, 24, 22, 20, 20}, new int[] {44, 44, 58, 58, 56, 44}, 6), new Polygon( new int[] { 24, 22, 20, 20, 22, 24, 24}, new int[] {16, 16, 18, 56, 58, 58, 16}, 7), new Rectangle2D.Float(80F, 22F, 16F, 6F), new Polygon( new int[] { 80, 92, 96, 96, 92, 80, 80}, new int[] {12, 12, 14, 60, 62, 62, 12}, 7), new Polygon( new int[] { 80, 81, 92, 92}, new int[] { 12, 15, 15,12}, 4), new Polygon( new int[] { 92, 92, 95, 96}, new int[] { 12, 15, 17,14}, 4), new Polygon( new int[] { 96, 95, 95, 96}, new int[] { 14, 17, 59,60}, 4), new Polygon( new int[] { 96, 95, 92, 92}, new int[] { 60, 59, 61,62}, 4), new Polygon( new int[] { 92, 92, 81, 80}, new int[] { 62, 61, 61,62}, 4), new Polygon( new int[] { 80, 81, 81, 80}, new int[] { 62, 61, 15,12}, 4), new Polygon( new int[] { 80, 81, 2, 2}, new int[] { 12, 15, 96,55}, 4), new Line2D.Float( 20F, 36F, 2F, 36F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(215, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(216, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[1]); } { int fcolor = GeColor.getDrawtype(22, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[2]); } else { GeGradient.paint( g, gradient,2,-2,2F,34F,18F,4F, false,22, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[2]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[3]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[4]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[5]); } else { GeGradient.paint( g, gradient,2,-2,2F,38F,18F,2F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[5]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[6]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[7]); } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[8]); } { int fcolor = GeColor.getDrawtype(22, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[9]); } else { GeGradient.paint( g, gradient,2,-2,80F,12F,16.0188F,50.4018F, false,22, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[10]); g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[11]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[12]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[13]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[14]); g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[15]); } } { int fcolor = GeColor.getDrawtype(26, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[17]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[17]); } { int fcolor = GeColor.getDrawtype(22, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[18]); } { int fcolor = GeColor.getDrawtype(56, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[19]); } else { GeGradient.paint( g, gradient,2,-2,34F,2F,20F,10F, false,56, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[19]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[20]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[21]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[19]); } { int fcolor = GeColor.getDrawtype(28, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[22]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(219, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[23]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(219, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[24]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(219, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[25]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(219, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[26]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(219, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[27]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(219, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[28]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(219, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[29]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(219, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[30]); { int fcolor = GeColor.getDrawtype(24, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[31]); } { int fcolor = GeColor.getDrawtype(26, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[32]); } g.setColor(GeColor.getColor(53, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed)); g.fill( shapes[33]); g.setColor(GeColor.getColor(53, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed)); g.fill( shapes[34]); { int fcolor = GeColor.getDrawtype(24, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[35]); } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[36]); } { int fcolor = GeColor.getDrawtype(20, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[37]); } { int fcolor = GeColor.getDrawtype(36, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[39]); g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[40]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[41]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[42]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[43]); g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[44]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[38]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(30, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[46]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_valuesmall extends GeComponent { // Dimension size; public pwr_valuesmall( JopSession session) { super( session); size = new Dimension( 50, 18); annot1Font = new Font("Helvetica", Font.BOLD, 10); } int annot1Color = 0; public String getAnnot1() { return annot1;} public void setAnnot1( String s) { annot1 = JopLang.transl(s);} public void setAnnot1Font( Font font) { annot1Font = font;} public Font getAnnot1Font() { return annot1Font;} public void setAnnot1Color( int color) { annot1Color = color;} public int original_width = 50; public int original_height = 18; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 46F, 14F), new Polygon( new int[] { 2, 48, 47, 3, 3, 2}, new int[] { 2, 2, 3, 3, 15, 16}, 6), new Polygon( new int[] { 48, 48, 47, 47, 3, 2}, new int[] { 16, 2, 3, 15, 15, 16}, 6), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(41, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,46F,14F, false,41, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } g.setColor(GeColor.getColor( annot1Color , colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont( annot1Font); save_tmp = g.getTransform(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_OFF); g.transform( AffineTransform.getScaleInstance( original_width/width * height/original_height, 1)); if ( annot1 != null) g.drawString( annot1, 7 * original_height / height * width / original_width, 13F); g.setTransform( save_tmp); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_valueinputmediumrd extends GeTextField { public pwr_valueinputmediumrd( JopSession session) { super( session); setFont( annotFont); setFillColor( 21); } int original_width = 70; int original_height = 29; boolean fontSet = false; public void paintComponent(Graphics g1) { if ( !fontSet) { float width = getWidth(); float height = getHeight(); setFont( annotFont.deriveFont((float)(height / original_height * annotFont.getSize()))); fontSet = true; } super.paintComponent( g1); } } protected class pwr_rodcouplinganim extends GeComponent { // Dimension size; public pwr_rodcouplinganim( JopSession session) { super( session); size = new Dimension( 12, 22); pages = 8; } public int original_width = 12; public int original_height = 22; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 14F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 2, 2, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 16F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 16, 16, 16, 16, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 16, 16, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 12F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 12, 12, 12, 12, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 12, 12, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 18F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 2, 2, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 6F, 8F, 1F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 6, 6, 6, 6, 7, 7}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 7, 6, 6, 7, 7, 7}, 6), }; int original_width_p2 = 12; int original_height_p2 = 22; Shape[] shapes_p2 = new Shape[] { new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 14F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 2, 2, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 16F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 16, 16, 16, 16, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 16, 16, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 12F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 12, 12, 12, 12, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 12, 12, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 18F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 2, 2, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 6F, 8F, 1F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 6, 6, 6, 6, 7, 7}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 7, 6, 6, 7, 7, 7}, 6), new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), }; int original_width_p3 = 12; int original_height_p3 = 22; Shape[] shapes_p3 = new Shape[] { new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 14F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 2, 2, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 16F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 16, 16, 16, 16, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 16, 16, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 12F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 12, 12, 12, 12, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 12, 12, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 18F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 2, 2, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 6F, 8F, 1F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 6, 6, 6, 6, 7, 7}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 7, 6, 6, 7, 7, 7}, 6), new Rectangle2D.Float(2F, 4F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 4, 4, 4, 4, 6, 6}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 6, 4, 4, 6, 6, 6}, 6), }; int original_width_p4 = 12; int original_height_p4 = 22; Shape[] shapes_p4 = new Shape[] { new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 14F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 2, 2, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 16F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 16, 16, 16, 16, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 16, 16, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 12F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 12, 12, 12, 12, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 12, 12, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 18F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 2, 2, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 6F, 8F, 1F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 6, 6, 6, 6, 7, 7}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 7, 6, 6, 7, 7, 7}, 6), new Rectangle2D.Float(2F, 7F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 7, 7, 7, 7, 9, 9}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 9, 7, 7, 9, 9, 9}, 6), }; int original_width_p5 = 12; int original_height_p5 = 22; Shape[] shapes_p5 = new Shape[] { new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 14F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 2, 2, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 16F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 16, 16, 16, 16, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 16, 16, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 12F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 12, 12, 12, 12, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 12, 12, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 18F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 2, 2, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 6F, 8F, 1F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 6, 6, 6, 6, 7, 7}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 7, 6, 6, 7, 7, 7}, 6), new Rectangle2D.Float(2F, 11F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 11, 11, 11, 11, 13, 13}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 13, 11, 11, 13, 13, 13}, 6), }; int original_width_p6 = 12; int original_height_p6 = 22; Shape[] shapes_p6 = new Shape[] { new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 14F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 2, 2, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 16F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 16, 16, 16, 16, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 16, 16, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 12F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 12, 12, 12, 12, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 12, 12, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 18F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 2, 2, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 6F, 8F, 1F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 6, 6, 6, 6, 7, 7}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 7, 6, 6, 7, 7, 7}, 6), new Rectangle2D.Float(2F, 15F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 15, 15, 15, 15, 17, 17}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 17, 15, 15, 17, 17, 17}, 6), }; int original_width_p7 = 12; int original_height_p7 = 22; Shape[] shapes_p7 = new Shape[] { new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 14F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 2, 2, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 16F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 16, 16, 16, 16, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 16, 16, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 12F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 12, 12, 12, 12, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 12, 12, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 18F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 2, 2, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 6F, 8F, 1F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 6, 6, 6, 6, 7, 7}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 7, 6, 6, 7, 7, 7}, 6), new Rectangle2D.Float(2F, 18F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 18, 18, 18, 18, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 18, 18, 20, 20, 20}, 6), }; int original_width_p8 = 12; int original_height_p8 = 22; Shape[] shapes_p8 = new Shape[] { new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 14F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 2, 2, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 16F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 16, 16, 16, 16, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 16, 16, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 12F, 8F, 4F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 12, 12, 12, 12, 16, 16}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 16, 12, 12, 16, 16, 16}, 6), new Rectangle2D.Float(2F, 2F, 8F, 2F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 4, 4}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 4, 2, 2, 4, 4, 4}, 6), new Rectangle2D.Float(2F, 2F, 8F, 18F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 2, 2, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 6F, 8F, 1F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 6, 6, 6, 6, 7, 7}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 7, 6, 6, 7, 7, 7}, 6), new Rectangle2D.Float(2F, 19F, 8F, 1F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 19, 19, 19, 19, 20, 20}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 20, 19, 19, 20, 20, 20}, 6), new Rectangle2D.Float(2F, 2F, 8F, 1F), new Polygon( new int[] { 2, 10, 10, 2, 2, 2}, new int[] { 2, 2, 2, 2, 3, 3}, 6), new Polygon( new int[] { 10, 10, 10, 10, 2, 2}, new int[] { 3, 2, 2, 3, 3, 3}, 6), }; public void paintComponent(Graphics g1) { switch ( page) { case 2 : paintComponent_p2(g1); return; case 3 : paintComponent_p3(g1); return; case 4 : paintComponent_p4(g1); return; case 5 : paintComponent_p5(g1); return; case 6 : paintComponent_p6(g1); return; case 7 : paintComponent_p7(g1); return; case 8 : paintComponent_p8(g1); return; default: ; } animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); } } { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[3]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,14F, false,23, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[3]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[5]); } } { int fcolor = GeColor.getDrawtype(27, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[6]); } else { GeGradient.paint( g, gradient,2,-2,2F,16F,8F,4F, false,27, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[6]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[7]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[8]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[9]); } else { GeGradient.paint( g, gradient,2,-2,2F,12F,8F,4F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[10]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[11]); } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[12]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[12]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[13]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[14]); } } { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[16]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[17]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[15]); } { int fcolor = GeColor.getDrawtype(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[18]); } else { GeGradient.paint( g, gradient,2,-2,2F,6F,8F,1F, false,3, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[18]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[19]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[20]); } } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public void paintComponent_p2(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[2]); } } { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[3]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,14F, false,23, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[3]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[5]); } } { int fcolor = GeColor.getDrawtype(27, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[6]); } else { GeGradient.paint( g, gradient,2,-2,2F,16F,8F,4F, false,27, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[6]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[7]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[8]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[9]); } else { GeGradient.paint( g, gradient,2,-2,2F,12F,8F,4F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[10]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[11]); } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[12]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[12]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[13]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[14]); } } { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[16]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[17]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p2[15]); } { int fcolor = GeColor.getDrawtype(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[18]); } else { GeGradient.paint( g, gradient,2,-2,2F,6F,8F,1F, false,3, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[18]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[19]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[20]); } } { int fcolor = GeColor.getDrawtype(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[21]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,0, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[21]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[22]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[23]); } } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public void paintComponent_p3(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p3[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p3[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p3[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p3[2]); } } { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p3[3]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,14F, false,23, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p3[3]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p3[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p3[5]); } } { int fcolor = GeColor.getDrawtype(27, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p3[6]); } else { GeGradient.paint( g, gradient,2,-2,2F,16F,8F,4F, false,27, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p3[6]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p3[7]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p3[8]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p3[9]); } else { GeGradient.paint( g, gradient,2,-2,2F,12F,8F,4F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p3[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p3[10]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p3[11]); } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p3[12]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p3[12]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p3[13]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p3[14]); } } { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p3[16]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p3[17]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p3[15]); } { int fcolor = GeColor.getDrawtype(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p3[18]); } else { GeGradient.paint( g, gradient,2,-2,2F,6F,8F,1F, false,3, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p3[18]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p3[19]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p3[20]); } } { int fcolor = GeColor.getDrawtype(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p3[21]); } else { GeGradient.paint( g, gradient,2,-2,2F,4F,8F,2F, false,0, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p3[21]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p3[22]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p3[23]); } } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public void paintComponent_p4(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p4[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p4[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p4[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p4[2]); } } { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p4[3]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,14F, false,23, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p4[3]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p4[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p4[5]); } } { int fcolor = GeColor.getDrawtype(27, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p4[6]); } else { GeGradient.paint( g, gradient,2,-2,2F,16F,8F,4F, false,27, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p4[6]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p4[7]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p4[8]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p4[9]); } else { GeGradient.paint( g, gradient,2,-2,2F,12F,8F,4F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p4[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p4[10]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p4[11]); } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p4[12]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p4[12]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p4[13]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p4[14]); } } { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p4[16]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p4[17]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p4[15]); } { int fcolor = GeColor.getDrawtype(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p4[18]); } else { GeGradient.paint( g, gradient,2,-2,2F,6F,8F,1F, false,3, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p4[18]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p4[19]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p4[20]); } } { int fcolor = GeColor.getDrawtype(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p4[21]); } else { GeGradient.paint( g, gradient,2,-2,2F,7F,8F,2F, false,0, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p4[21]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p4[22]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p4[23]); } } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public void paintComponent_p5(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p5[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p5[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p5[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p5[2]); } } { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p5[3]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,14F, false,23, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p5[3]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p5[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p5[5]); } } { int fcolor = GeColor.getDrawtype(27, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p5[6]); } else { GeGradient.paint( g, gradient,2,-2,2F,16F,8F,4F, false,27, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p5[6]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p5[7]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p5[8]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p5[9]); } else { GeGradient.paint( g, gradient,2,-2,2F,12F,8F,4F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p5[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p5[10]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p5[11]); } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p5[12]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p5[12]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p5[13]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p5[14]); } } { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p5[16]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p5[17]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p5[15]); } { int fcolor = GeColor.getDrawtype(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p5[18]); } else { GeGradient.paint( g, gradient,2,-2,2F,6F,8F,1F, false,3, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p5[18]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p5[19]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p5[20]); } } { int fcolor = GeColor.getDrawtype(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p5[21]); } else { GeGradient.paint( g, gradient,2,-2,2F,11F,8F,2F, false,0, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p5[21]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p5[22]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p5[23]); } } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public void paintComponent_p6(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p6[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p6[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p6[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p6[2]); } } { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p6[3]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,14F, false,23, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p6[3]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p6[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p6[5]); } } { int fcolor = GeColor.getDrawtype(27, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p6[6]); } else { GeGradient.paint( g, gradient,2,-2,2F,16F,8F,4F, false,27, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p6[6]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p6[7]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p6[8]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p6[9]); } else { GeGradient.paint( g, gradient,2,-2,2F,12F,8F,4F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p6[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p6[10]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p6[11]); } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p6[12]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p6[12]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p6[13]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p6[14]); } } { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p6[16]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p6[17]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p6[15]); } { int fcolor = GeColor.getDrawtype(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p6[18]); } else { GeGradient.paint( g, gradient,2,-2,2F,6F,8F,1F, false,3, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p6[18]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p6[19]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p6[20]); } } { int fcolor = GeColor.getDrawtype(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p6[21]); } else { GeGradient.paint( g, gradient,2,-2,2F,15F,8F,2F, false,0, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p6[21]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p6[22]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p6[23]); } } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public void paintComponent_p7(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p7[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p7[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p7[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p7[2]); } } { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p7[3]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,14F, false,23, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p7[3]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p7[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p7[5]); } } { int fcolor = GeColor.getDrawtype(27, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p7[6]); } else { GeGradient.paint( g, gradient,2,-2,2F,16F,8F,4F, false,27, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p7[6]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p7[7]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p7[8]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p7[9]); } else { GeGradient.paint( g, gradient,2,-2,2F,12F,8F,4F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p7[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p7[10]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p7[11]); } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p7[12]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p7[12]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p7[13]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p7[14]); } } { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p7[16]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p7[17]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p7[15]); } { int fcolor = GeColor.getDrawtype(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p7[18]); } else { GeGradient.paint( g, gradient,2,-2,2F,6F,8F,1F, false,3, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p7[18]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p7[19]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p7[20]); } } { int fcolor = GeColor.getDrawtype(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p7[21]); } else { GeGradient.paint( g, gradient,2,-2,2F,18F,8F,2F, false,0, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p7[21]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p7[22]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p7[23]); } } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public void paintComponent_p8(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p8[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p8[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p8[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p8[2]); } } { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p8[3]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,14F, false,23, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p8[3]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p8[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p8[5]); } } { int fcolor = GeColor.getDrawtype(27, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p8[6]); } else { GeGradient.paint( g, gradient,2,-2,2F,16F,8F,4F, false,27, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p8[6]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p8[7]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p8[8]); } } { int fcolor = GeColor.getDrawtype(25, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p8[9]); } else { GeGradient.paint( g, gradient,2,-2,2F,12F,8F,4F, false,25, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p8[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p8[10]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p8[11]); } } { int fcolor = GeColor.getDrawtype(21, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p8[12]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,2F, false,21, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p8[12]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p8[13]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p8[14]); } } { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p8[16]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p8[17]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p8[15]); } { int fcolor = GeColor.getDrawtype(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p8[18]); } else { GeGradient.paint( g, gradient,2,-2,2F,6F,8F,1F, false,3, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p8[18]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p8[19]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p8[20]); } } { int fcolor = GeColor.getDrawtype(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p8[21]); } else { GeGradient.paint( g, gradient,2,-2,2F,19F,8F,1F, false,0, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p8[21]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p8[22]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p8[23]); } } { int fcolor = GeColor.getDrawtype(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p8[24]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,8F,1F, false,0, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p8[24]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p8[25]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p8[26]); } } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbopenobject extends GeComponent { // Dimension size; public pwr_mbopenobject( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Rectangle2D.Float(6F, 6F, 8F, 8F), new Polygon( new int[] { 6, 14, 14, 6, 6, 6}, new int[] { 6, 6, 6, 6, 14, 14}, 6), new Polygon( new int[] { 14, 14, 14, 14, 6, 6}, new int[] { 14, 6, 6, 14, 14, 14}, 6), new Line2D.Float( 14F, 8F, 6F, 8F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(38, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[5]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[6]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbtrend extends GeComponent { // Dimension size; public pwr_mbtrend( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Line2D.Float( 14F, 14F, 6F, 14F), new Line2D.Float( 14F, 6F, 14F, 14F), new Polygon( new int[] { 14, 12, 10, 7, 5, 7, 10, 12}, new int[] {11, 11, 9, 11, 9, 11, 9, 11}, 8), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[4]); { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[5]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbfast extends GeComponent { // Dimension size; public pwr_mbfast( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Line2D.Float( 15.4286F, 14F, 5.99999F, 14F), new Line2D.Float( 6F, 6F, 6F, 14F), new Polygon( new int[] { 6, 8, 11, 13, 15, 13, 11, 8}, new int[] {10, 9, 12, 11, 12, 11, 12, 9}, 8), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[4]); { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[5]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbphoto extends GeComponent { // Dimension size; public pwr_mbphoto( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Rectangle2D.Float(6F, 6F, 8F, 8F), new Polygon( new int[] { 6, 14, 14, 6, 6, 6}, new int[] { 6, 6, 6, 6, 14, 14}, 6), new Polygon( new int[] { 14, 14, 14, 14, 6, 6}, new int[] { 14, 6, 6, 14, 14, 14}, 6), new Arc2D.Float(9F, 8F, 3F, 3F, 35F, 140F, Arc2D.PIE), new Arc2D.Float(9F, 8F, 3F, 3F, 215F, 140F, Arc2D.PIE), new Arc2D.Float(9F, 8F, 3F, 3F, -5F, 40F, Arc2D.PIE), new Arc2D.Float(9F, 8F, 3F, 3F, 175F, 40F, Arc2D.PIE), new Arc2D.Float(9.15F, 8.15F, 2.7F, 2.7F, 0F, 360F, Arc2D.PIE), new Arc2D.Float(9F, 8F, 3F, 3F, 0F, 360F, Arc2D.PIE), new Polygon( new int[] { 9, 9, 14, 14, 9}, new int[] {14, 10, 10, 14, 14}, 5), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[5]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); } { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[6]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[7]); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[8]); g.fill( shapes[9]); g.fill( shapes[10]); } else { GeGradient.paint( g, 9,2,-2,9F,8F,3F,3F, false,39, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[11]); GeGradient.paint( g, gradient,2,-2,9F,8F,3F,3F, false,39, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[10]); } } else { if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[11]); } else { GeGradient.paint( g, gradient,2,-2,9F,8F,3F,3F, false,39, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[11]); } } } { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[12]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbdatasheet extends GeComponent { // Dimension size; public pwr_mbdatasheet( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Rectangle2D.Float(7F, 6F, 6F, 8F), new Polygon( new int[] { 7, 13, 13, 7, 7, 7}, new int[] { 6, 6, 6, 6, 14, 14}, 6), new Polygon( new int[] { 13, 13, 13, 13, 7, 7}, new int[] { 14, 6, 6, 14, 14, 14}, 6), new Polygon( new int[] { 7, 9, 7, 7}, new int[] {10, 6, 6, 10}, 4), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[5]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); } { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[6]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[6]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbopenplc extends GeComponent { // Dimension size; public pwr_mbopenplc( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Rectangle2D.Float(8F, 6F, 4F, 8F), new Polygon( new int[] { 8, 12, 12, 8, 8, 8}, new int[] { 6, 6, 6, 6, 14, 14}, 6), new Polygon( new int[] { 12, 12, 12, 12, 8, 8}, new int[] { 14, 6, 6, 14, 14, 14}, 6), new Line2D.Float( 8F, 8F, 6F, 8F), new Line2D.Float( 8F, 12F, 6F, 12F), new Line2D.Float( 14F, 8F, 12F, 8F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[5]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[6]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[7]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[8]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbcircuitdiagram extends GeComponent { // Dimension size; public pwr_mbcircuitdiagram( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Rectangle2D.Float(5F, 7F, 10F, 7F), new Polygon( new int[] { 5, 15, 15, 5, 5, 5}, new int[] { 7, 7, 7, 7, 14, 14}, 6), new Polygon( new int[] { 15, 15, 15, 15, 5, 5}, new int[] { 14, 7, 7, 14, 14, 14}, 6), new Line2D.Float( 15F, 13F, 5F, 13F), new Line2D.Float( 11F, 9F, 5F, 9F), new Line2D.Float( 11F, 11F, 11F, 9F), new Rectangle2D.Float(7F, 11F, 4F, 1F), new Polygon( new int[] { 7, 11, 11, 7, 7, 7}, new int[] { 11, 11, 11, 11, 12, 12}, 6), new Polygon( new int[] { 11, 11, 11, 11, 7, 7}, new int[] { 12, 11, 11, 12, 12, 12}, 6), new Line2D.Float( 15F, 10F, 11F, 10F), new Line2D.Float( 15F, 8F, 11F, 8F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[5]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[6]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[7]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[8]); { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[9]); } else { GeGradient.paint( g, gradient,2,-2,7F,11F,4F,1F, false,39, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[9]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[10]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[11]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[9]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[12]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[13]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbrtnavigator extends GeComponent { // Dimension size; public pwr_mbrtnavigator( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Rectangle2D.Float(6F, 6F, 4F, 3F), new Polygon( new int[] { 6, 10, 10, 6, 6, 6}, new int[] { 6, 6, 6, 6, 9, 9}, 6), new Polygon( new int[] { 10, 10, 10, 10, 6, 6}, new int[] { 9, 6, 6, 9, 9, 9}, 6), new Rectangle2D.Float(8F, 10F, 4F, 5F), new Polygon( new int[] { 8, 12, 12, 8, 8, 8}, new int[] { 10, 10, 10, 10, 15, 15}, 6), new Polygon( new int[] { 12, 12, 12, 12, 8, 8}, new int[] { 15, 10, 10, 15, 15, 15}, 6), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[3]); } else { GeGradient.paint( g, gradient,2,-2,6F,6F,4F,3F, false,39, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[3]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[4]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[5]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); } { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[6]); } else { GeGradient.paint( g, gradient,2,-2,8F,10F,4F,5F, false,39, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[6]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[7]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[8]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[6]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbhelpclass extends GeComponent { // Dimension size; public pwr_mbhelpclass( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Polygon( new int[] { 8, 8, 12, 12, 10, 10, 10, 12, 12, 8}, new int[] {8, 7, 7, 10, 10, 12, 10, 10, 7, 7}, 10), new Line2D.Float( 10F, 13.772F, 10F, 13F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[4]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbblockevents extends GeComponent { // Dimension size; public pwr_mbblockevents( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Line2D.Float( 10F, 13.772F, 10F, 13F), new Line2D.Float( 10F, 11F, 10F, 6F), new Line2D.Float( 14F, 14F, 6F, 6F), new Line2D.Float( 14F, 6F, 6F, 14F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[4]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[5]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[6]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbhistevent extends GeComponent { // Dimension size; public pwr_mbhistevent( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Line2D.Float( 10F, 13.772F, 10F, 13F), new Polygon( new int[] { 8, 6, 10, 14, 12, 14, 10, 6}, new int[] {14, 14, 6, 14, 14, 14, 6, 14}, 8), new Line2D.Float( 10F, 11F, 10F, 8F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); { int fcolor = GeColor.getDrawtype(36, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[4]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[5]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbnote extends GeComponent { // Dimension size; public pwr_mbnote( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Line2D.Float( 10F, 13.772F, 10F, 13F), new Line2D.Float( 10F, 11F, 10F, 6F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[4]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbhelp extends GeComponent { // Dimension size; public pwr_mbhelp( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Line2D.Float( 10F, 6.772F, 10F, 6F), new Line2D.Float( 10.8199F, 13F, 8.81989F, 13F), new Polygon( new int[] { 10, 10, 9, 10}, new int[] {13, 9, 9, 9}, 4), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[4]); { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[5]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_menubar2 extends GeComponent { // Dimension size; public pwr_menubar2( JopSession session) { super( session); size = new Dimension( 554, 24); } public int original_width = 554; public int original_height = 24; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 550F, 20F), new Polygon( new int[] { 2, 2, 552, 552, 2}, new int[] {22, 20, 20, 22, 22}, 5), new Line2D.Float( 552F, 22F, 2F, 22F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(31, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } { int fcolor; if ( shadow != 0) fcolor = GeColor.getDrawtype(31, colorTone, colorShift, colorIntensity,-2, colorInverse, fillColor, dimmed); else fcolor = GeColor.getDrawtype(31, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[1]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[2]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_pulldownmenu2 extends GeComponent { // Dimension size; public pwr_pulldownmenu2( JopSession session) { super( session); size = new Dimension( 64, 24); annot1Font = new Font("Helvetica", Font.PLAIN, 12); } int annot1Color = 0; public String getAnnot1() { return annot1;} public void setAnnot1( String s) { annot1 = JopLang.transl(s);} public void setAnnot1Font( Font font) { annot1Font = font;} public Font getAnnot1Font() { return annot1Font;} public void setAnnot1Color( int color) { annot1Color = color;} public int original_width = 64; public int original_height = 24; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 60F, 20F), new Polygon( new int[] { 2, 2, 62, 62, 2}, new int[] {20, 22, 22, 20, 20}, 5), new Line2D.Float( 62F, 22F, 2F, 22F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(31, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } { int fcolor; if ( shadow != 0) fcolor = GeColor.getDrawtype(31, colorTone, colorShift, colorIntensity,-2, colorInverse, fillColor, dimmed); else fcolor = GeColor.getDrawtype(31, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[1]); } g.setStroke( new BasicStroke(1F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[2]); g.setColor(GeColor.getColor( annot1Color , colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont( annot1Font); save_tmp = g.getTransform(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_OFF); g.transform( AffineTransform.getScaleInstance( original_width/width * height/original_height, 1)); if ( annot1 != null) g.drawString( annot1, 7 * original_height / height * width / original_width, 17F); g.setTransform( save_tmp); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbsimulate extends GeComponent { // Dimension size; public pwr_mbsimulate( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Polygon( new int[] { 12, 7, 6, 14, 13, 5, 13, 14, 6, 7}, new int[] {6, 6, 8, 12, 14, 14, 14, 12, 8, 6}, 10), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(23, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[3]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_mbup extends GeComponent { // Dimension size; public pwr_mbup( JopSession session) { super( session); size = new Dimension( 20, 20); } public int original_width = 20; public int original_height = 20; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 16F, 16F), new Polygon( new int[] { 2, 18, 16, 4, 4, 2}, new int[] { 2, 2, 4, 4, 16, 18}, 6), new Polygon( new int[] { 18, 18, 16, 16, 4, 2}, new int[] { 18, 2, 4, 16, 16, 18}, 6), new Polygon( new int[] { 4, 10, 16, 4}, new int[] {14, 5, 14, 14}, 4), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,16F,16F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(39, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[3]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class bcomp_fc extends GeComponent { // Dimension size; public bcomp_fc( JopSession session) { super( session); size = new Dimension( 64, 84); } public int original_width = 64; public int original_height = 84; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 60F, 80F), new Polygon( new int[] { 2, 62, 60, 4, 4, 2}, new int[] { 2, 2, 4, 4, 80, 82}, 6), new Polygon( new int[] { 62, 62, 60, 60, 4, 2}, new int[] { 82, 2, 4, 80, 80, 82}, 6), new Polygon( new int[] { 29, 29, 31, 33, 35, 35}, new int[] {17, 15, 13, 13, 15, 17}, 6), new Polygon( new int[] { 19, 46}, new int[] {16, 16}, 2), new Rectangle2D.Float(18.3601F, 14.3614F, 27.2774F, 43.0943F), new Polygon( new int[] { 18, 46, 43, 21, 21, 18}, new int[] { 14, 14, 17, 17, 55, 57}, 6), new Polygon( new int[] { 46, 46, 43, 43, 21, 18}, new int[] { 57, 14, 17, 55, 55, 57}, 6), new Rectangle2D.Float(20F, 16F, 24F, 40F), new Polygon( new int[] { 20, 44, 43, 21, 21, 20}, new int[] { 16, 16, 17, 17, 55, 56}, 6), new Polygon( new int[] { 44, 44, 43, 43, 21, 20}, new int[] { 56, 16, 17, 55, 55, 56}, 6), new Rectangle2D.Float(22F, 25.1346F, 20F, 8F), new Rectangle2D.Float(24F, 28F, 16F, 4F), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,60F,80F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } { int fcolor = GeColor.getDrawtype(34, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[3]); } { int fcolor = GeColor.getDrawtype(34, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[4]); } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[6]); g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[7]); } { int fcolor = GeColor.getDrawtype(32, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[8]); } else { GeGradient.paint( g, gradient,2,-2,20F,16F,24F,40F, false,32, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[8]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[9]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[10]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[8]); } { int fcolor = 37; g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[11]); } { int fcolor = 39; g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[12]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_safetyswitch extends GeComponent { // Dimension size; public pwr_safetyswitch( JopSession session) { super( session); size = new Dimension( 64, 64); pages = 2; } public int original_width = 64; public int original_height = 64; Shape[] shapes = new Shape[] { new Rectangle2D.Float(2F, 2F, 60F, 60F), new Polygon( new int[] { 2, 62, 59, 5, 5, 2}, new int[] { 2, 2, 5, 5, 59, 62}, 6), new Polygon( new int[] { 62, 62, 59, 59, 5, 2}, new int[] { 62, 2, 5, 59, 59, 62}, 6), new Arc2D.Float(12F, 12F, 40F, 40F, 35F, 140F, Arc2D.PIE), new Arc2D.Float(12F, 12F, 40F, 40F, 215F, 140F, Arc2D.PIE), new Arc2D.Float(12F, 12F, 40F, 40F, -5F, 40F, Arc2D.PIE), new Arc2D.Float(12F, 12F, 40F, 40F, 175F, 40F, Arc2D.PIE), new Arc2D.Float(15.2F, 15.2F, 33.6F, 33.6F, 0F, 360F, Arc2D.PIE), new Arc2D.Float(12F, 12F, 40F, 40F, 0F, 360F, Arc2D.PIE), new Polygon( new int[] { 44, 44, 44, 38, 38}, new int[] {20, 20, 46, 50, 16}, 5), new Rectangle2D.Float(26F, 12F, 12F, 40F), new Polygon( new int[] { 26, 38, 35, 29, 29, 26}, new int[] { 12, 12, 15, 15, 49, 52}, 6), new Polygon( new int[] { 38, 38, 35, 35, 29, 26}, new int[] { 52, 12, 15, 49, 49, 52}, 6), new Line2D.Float( 32F, 26F, 32F, 12F), }; int original_width_p2 = 64; int original_height_p2 = 64; Shape[] shapes_p2 = new Shape[] { new Rectangle2D.Float(2F, 2F, 60F, 60F), new Polygon( new int[] { 2, 62, 59, 5, 5, 2}, new int[] { 2, 2, 5, 5, 59, 62}, 6), new Polygon( new int[] { 62, 62, 59, 59, 5, 2}, new int[] { 62, 2, 5, 59, 59, 62}, 6), new Arc2D.Float(12F, 12F, 40F, 40F, 35F, 140F, Arc2D.PIE), new Arc2D.Float(12F, 12F, 40F, 40F, 215F, 140F, Arc2D.PIE), new Arc2D.Float(12F, 12F, 40F, 40F, -5F, 40F, Arc2D.PIE), new Arc2D.Float(12F, 12F, 40F, 40F, 175F, 40F, Arc2D.PIE), new Arc2D.Float(15.2F, 15.2F, 33.6F, 33.6F, 0F, 360F, Arc2D.PIE), new Arc2D.Float(12F, 12F, 40F, 40F, 0F, 360F, Arc2D.PIE), new Polygon( new int[] { 46, 46, 20, 16, 50}, new int[] {44, 44, 44, 38, 38}, 5), new Polygon( new int[] { 8, 8, 12, 18, 22, 22, 20, 20, 18, 12, 10, 10}, new int[] {42, 26, 22, 22, 26, 42, 42, 26, 24, 24, 26, 42}, 12), new Rectangle2D.Float(5F, 42F, 20F, 16F), new Polygon( new int[] { 5, 25, 23, 7, 7, 5}, new int[] { 42, 42, 44, 44, 56, 58}, 6), new Polygon( new int[] { 25, 25, 23, 23, 7, 5}, new int[] { 58, 42, 44, 56, 56, 58}, 6), new Polygon( new int[] { 14, 14, 16, 16, 17, 18, 18, 17, 13, 12, 12, 13, 14}, new int[] {49, 53, 53, 49, 49, 48, 46, 45, 45, 46, 48, 49, 49}, 13), new Rectangle2D.Float(12F, 26F, 40F, 12F), new Polygon( new int[] { 12, 52, 49, 15, 15, 12}, new int[] { 26, 26, 29, 29, 35, 38}, 6), new Polygon( new int[] { 52, 52, 49, 49, 15, 12}, new int[] { 38, 26, 29, 35, 35, 38}, 6), new Line2D.Float( 38F, 32F, 52F, 32F), }; public void paintComponent(Graphics g1) { switch ( page) { case 2 : paintComponent_p2(g1); return; default: ; } animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(33, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,60F,60F, false,33, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[0]); } g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 10)); g.drawString( JopLang.transl("0"),54, 35); ((Arc2D)shapes[3]).setArcType(Arc2D.PIE); ((Arc2D)shapes[4]).setArcType(Arc2D.PIE); ((Arc2D)shapes[5]).setArcType(Arc2D.PIE); ((Arc2D)shapes[6]).setArcType(Arc2D.PIE); ((Arc2D)shapes[7]).setArcType(Arc2D.PIE); { int fcolor = 36; if ( shadow != 0) { if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[3]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[4]); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[5]); g.fill( shapes[6]); g.fill( shapes[7]); } else { GeGradient.paint( g, 9,2,-2,12F,12F,40F,40F, true,36, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[8]); GeGradient.paint( g, gradient,2,-2,12F,12F,40F,40F, true,36, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[7]); } } else { if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[8]); } else { GeGradient.paint( g, gradient,2,-2,12F,12F,40F,40F, true,36, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[8]); } } } ((Arc2D)shapes[8]).setArcType(Arc2D.OPEN); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[8]); { int fcolor; if ( shadow != 0) fcolor = GeColor.getDrawtype(36, GeColor.NO_TONE, 0, 0,-2, colorInverse, GeColor.NO_COLOR, dimmed); else fcolor = GeColor.getDrawtype(36, GeColor.NO_TONE, 0, 0, 0, colorInverse, GeColor.NO_COLOR, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[9]); } { int fcolor = 36; if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[10]); } else { GeGradient.paint( g, gradient,2,-2,26F,12F,12F,40F, true,36, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[10]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[11]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[12]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[10]); } g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 10)); g.drawString( JopLang.transl("1"),29, 11); g.setStroke( new BasicStroke(2F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[13]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public void paintComponent_p2(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = GeColor.getDrawtype(33, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[0]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,60F,60F, false,33, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[0]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[2]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p2[0]); } g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 10)); g.drawString( JopLang.transl("0"),54, 35); ((Arc2D)shapes_p2[3]).setArcType(Arc2D.PIE); ((Arc2D)shapes_p2[4]).setArcType(Arc2D.PIE); ((Arc2D)shapes_p2[5]).setArcType(Arc2D.PIE); ((Arc2D)shapes_p2[6]).setArcType(Arc2D.PIE); ((Arc2D)shapes_p2[7]).setArcType(Arc2D.PIE); { int fcolor = 36; if ( shadow != 0) { if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[3]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[4]); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[5]); g.fill( shapes_p2[6]); g.fill( shapes_p2[7]); } else { GeGradient.paint( g, 9,2,-2,12F,12F,40F,40F, true,36, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[8]); GeGradient.paint( g, gradient,2,-2,12F,12F,40F,40F, true,36, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[7]); } } else { if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[8]); } else { GeGradient.paint( g, gradient,2,-2,12F,12F,40F,40F, true,36, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[8]); } } } ((Arc2D)shapes_p2[8]).setArcType(Arc2D.OPEN); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p2[8]); { int fcolor; if ( shadow != 0) fcolor = GeColor.getDrawtype(36, GeColor.NO_TONE, 0, 0,-2, colorInverse, GeColor.NO_COLOR, dimmed); else fcolor = GeColor.getDrawtype(36, GeColor.NO_TONE, 0, 0, 0, colorInverse, GeColor.NO_COLOR, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[9]); } g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 10)); g.drawString( JopLang.transl("1"),29, 11); { int fcolor = 176; g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[10]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p2[10]); } { int fcolor = 176; if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[11]); } else { GeGradient.paint( g, gradient,2,-2,5F,42F,20F,16F, true,176, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[11]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[12]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[13]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p2[11]); } { int fcolor = GeColor.getDrawtype(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[14]); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p2[14]); } { int fcolor = 36; if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes_p2[15]); } else { GeGradient.paint( g, gradient,2,-2,12F,26F,40F,12F, true,36, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes_p2[15]); } if ( shadow != 0) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes_p2[16]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes_p2[17]); } g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p2[15]); } g.setStroke( new BasicStroke(2F, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)); g.setColor(GeColor.getColor(3, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes_p2[18]); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class pwr_motorman extends GeComponent { // Dimension size; public pwr_motorman( JopSession session) { super( session); size = new Dimension( 64, 44); annot1Font = new Font("Helvetica", Font.BOLD, 14); } int annot1Color = 0; public String getAnnot1() { return annot1;} public void setAnnot1( String s) { annot1 = JopLang.transl(s);} public void setAnnot1Font( Font font) { annot1Font = font;} public Font getAnnot1Font() { return annot1Font;} public void setAnnot1Color( int color) { annot1Color = color;} public int original_width = 64; public int original_height = 44; Shape[] shapes = new Shape[] { new Rectangle2D.Float(42F, 2F, 20F, 16F), new Arc2D.Float(2F, 2F, 40F, 40F, 35F, 140F, Arc2D.PIE), new Arc2D.Float(2F, 2F, 40F, 40F, 215F, 140F, Arc2D.PIE), new Arc2D.Float(2F, 2F, 40F, 40F, -5F, 40F, Arc2D.PIE), new Arc2D.Float(2F, 2F, 40F, 40F, 175F, 40F, Arc2D.PIE), new Arc2D.Float(5.2F, 5.2F, 33.6F, 33.6F, 0F, 360F, Arc2D.PIE), new Arc2D.Float(2F, 2F, 40F, 40F, 0F, 360F, Arc2D.PIE), new Polygon( new int[] { 12, 12, 22, 32, 32, 32, 22, 12}, new int[] {31, 13, 28, 13, 31, 13, 28, 13}, 8), }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } { int fcolor = 300; g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[0]); } ((Arc2D)shapes[1]).setArcType(Arc2D.PIE); ((Arc2D)shapes[2]).setArcType(Arc2D.PIE); ((Arc2D)shapes[3]).setArcType(Arc2D.PIE); ((Arc2D)shapes[4]).setArcType(Arc2D.PIE); ((Arc2D)shapes[5]).setArcType(Arc2D.PIE); { int fcolor = GeColor.getDrawtype(74, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); if ( shadow != 0) { if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.shiftColor( fcolor, -2, colorInverse)); g.fill( shapes[1]); g.setColor(GeColor.shiftColor( fcolor, 2, colorInverse)); g.fill( shapes[2]); g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[3]); g.fill( shapes[4]); g.fill( shapes[5]); } else { GeGradient.paint( g, 9,2,-2,2F,2F,40F,40F, false,74, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[6]); GeGradient.paint( g, gradient,2,-2,2F,2F,40F,40F, false,74, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[5]); } } else { if ( gradient == GeGradient.eGradient_No) { g.setColor(GeColor.getColor( fcolor)); g.fill( shapes[6]); } else { GeGradient.paint( g, gradient,2,-2,2F,2F,40F,40F, false,74, colorTone, colorShift, colorIntensity, colorInverse, fillColor, dimmed); g.fill( shapes[6]); } } } ((Arc2D)shapes[6]).setArcType(Arc2D.OPEN); g.setStroke( new BasicStroke(1F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[6]); g.setColor(GeColor.getColor( annot1Color , colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont( annot1Font); save_tmp = g.getTransform(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_OFF); g.transform( AffineTransform.getScaleInstance( original_width/width * height/original_height, 1)); if ( annot1 != null) g.drawString( annot1, 42 * original_height / height * width / original_width, 16F); g.setTransform( save_tmp); { int fcolor = GeColor.getDrawtype(2, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, fillColor, dimmed); g.setStroke( new BasicStroke(3F)); g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, borderColor, dimmed)); g.draw( shapes[7]); } } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class Grp169_ extends GeComponent { // Dimension size; public Grp169_( JopSession session) { super( session); size = new Dimension( 37, 18); } public int original_width = 37; public int original_height = 18; Shape[] shapes = new Shape[] { }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 12)); g.drawString( JopLang.transl("Local"),2, 13); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class Grp210_ extends GeComponent { // Dimension size; public Grp210_( JopSession session) { super( session); size = new Dimension( 40, 18); } public int original_width = 40; public int original_height = 18; Shape[] shapes = new Shape[] { }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 12)); g.drawString( JopLang.transl("Speed"),2, 13); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class Grp212_ extends GeComponent { // Dimension size; pwr_valuemedium pwr_valuemedium0; public Grp212_( JopSession session) { super( session); size = new Dimension( 28, 20); pwr_valuemedium0 = new pwr_valuemedium(session); pwr_valuemedium0.setBounds(new Rectangle(1,1,26,18)); pwr_valuemedium0.setFillColor(33); pwr_valuemedium0.setBorderColor(33); add(pwr_valuemedium0); pwr_valuemedium0.dd.setDynType(1025); pwr_valuemedium0.dd.setActionType(0); pwr_valuemedium0.dd.setElements(new GeDynElemIfc[] { new GeDynValue(pwr_valuemedium0.dd, "$object.FrequencyConverter.ActSpeed.Unit##String16","%s") }); } public int original_width = 28; public int original_height = 20; Shape[] shapes = new Shape[] { }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } save_tmp = g.getTransform(); g.translate( pwr_valuemedium0.getX(), pwr_valuemedium0.getY()); if ( pwr_valuemedium0.dd.dynType == 0) { pwr_valuemedium0.colorTone = colorTone; pwr_valuemedium0.colorBrightness = colorBrightness; pwr_valuemedium0.colorIntensity = colorIntensity; pwr_valuemedium0.colorShift = colorShift; pwr_valuemedium0.colorInverse = colorInverse; } pwr_valuemedium0.paintComponent(g); g.setTransform( save_tmp); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class Grp223_ extends GeComponent { // Dimension size; public Grp223_( JopSession session) { super( session); size = new Dimension( 40, 17); } public int original_width = 40; public int original_height = 17; Shape[] shapes = new Shape[] { }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 12)); g.drawString( JopLang.transl("Motor"),2, 13); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } protected class Grp226_ extends GeComponent { // Dimension size; public Grp226_( JopSession session) { super( session); size = new Dimension( 40, 18); } public int original_width = 40; public int original_height = 18; Shape[] shapes = new Shape[] { }; public void paintComponent(Graphics g1) { animationCount = 1; if ( !visible) return; Graphics2D g = (Graphics2D) g1; float width = getWidth(); float height = getHeight(); g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON); if ( 45.0 <= rotate && rotate < 135.0) { g.translate( width, 0.0); g.rotate( Math.PI * rotate/180, 0.0, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else if ( 135.0 <= rotate && rotate < 225.0) { g.rotate( Math.PI * rotate/180, width/2, height/2); g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); } else if ( 225.0 <= rotate && rotate < 315.0) { g.translate( -height, 0.0); g.rotate( Math.PI * rotate/180, height, 0.0); g.transform( AffineTransform.getScaleInstance( height/original_width, width/original_height)); } else g.transform( AffineTransform.getScaleInstance( width/original_width, height/original_height)); if ( (dd.dynType & GeDyn.mDynType_Rotate) != 0 && dd.rotate != 0) { g.rotate( Math.PI * dd.rotate/180, (dd.x0 - getX())*original_width/width, (dd.y0 - getY()) * original_height / height); } AffineTransform save = g.getTransform(); AffineTransform save_tmp; int rounds = 1; if ( fillLevel != 1F) rounds = 2; int oldColor = 0; for ( int i = 0; i < rounds; i++) { if ( rounds == 2) { switch ( i) { case 0: if ( levelColorTone != GeColor.COLOR_TONE_NO) { oldColor = colorTone; colorTone = levelColorTone; } else if ( levelFillColor != GeColor.COLOR_NO) { oldColor = fillColor; fillColor = levelFillColor; } break; case 1: if ( levelColorTone != GeColor.COLOR_TONE_NO) colorTone = oldColor; else if ( levelFillColor != GeColor.COLOR_NO) fillColor = oldColor; break; } switch ( levelDirection) { case Ge.DIRECTION_UP: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,fillLevel*original_height+Ge.cJBean_Offset,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,original_width,fillLevel * original_height+Ge.cJBean_Offset)); break; case Ge.DIRECTION_DOWN: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,original_width,(1-fillLevel)*original_height+Ge.cJBean_Offset)); else g.setClip(new Rectangle2D.Float(0F,(1-fillLevel)*original_height+Ge.cJBean_Offset,original_width,original_height)); break; case Ge.DIRECTION_RIGHT: if ( i == 0) g.setClip(new Rectangle2D.Float(fillLevel*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); else g.setClip(new Rectangle2D.Float(0F,0F,fillLevel*width+Ge.cJBean_Offset,height)); break; case Ge.DIRECTION_LEFT: if ( i == 0) g.setClip(new Rectangle2D.Float(0F,0F,(1-fillLevel)*original_width+Ge.cJBean_Offset,original_height)); else g.setClip(new Rectangle2D.Float((1-fillLevel)*original_width+Ge.cJBean_Offset,0F,original_width,original_height)); break; } } g.setColor(GeColor.getColor(0, colorTone, colorShift, colorIntensity, colorBrightness, colorInverse, textColor, dimmed)); g.setFont(new Font("Helvetica", Font.BOLD, 12)); g.drawString( JopLang.transl("Extern"),2, 13); } if ( rounds == 2) g.setClip(null); g.setTransform(save); } public Dimension getPreferredSize() { return size;} public Dimension getMinimumSize() { return size;} } public int getUtilityType() { return JopUtility.GRAPH; } public PwrtObjid getUtilityObjid() { if ( utilityAref != null) return utilityAref.getObjid(); else return null; } public PwrtAttrRef getUtilityAttrRef() { return utilityAref; } public String getUtilityName() { return this.getClass().getName(); } }
402744edd3a7f7bac10775b5a22d24c8bc50149c
129f58086770fc74c171e9c1edfd63b4257210f3
/src/testcases/CWE36_Absolute_Path_Traversal/CWE36_Absolute_Path_Traversal__URLConnection_52c.java
f6320ae188cef974019516700a2894cfb32b5a32
[]
no_license
glopezGitHub/Android23
1bd0b6a6c7ce3c7439a74f1e4dcef2c4c0fac4ba
6215d0684c4fbdc7217ccfbedfccfca69824cc5e
refs/heads/master
2023-03-07T15:14:59.447795
2023-02-06T13:59:49
2023-02-06T13:59:49
6,856,387
0
3
null
2023-02-06T18:38:17
2012-11-25T22:04:23
Java
UTF-8
Java
false
false
5,334
java
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE36_Absolute_Path_Traversal__URLConnection_52c.java Label Definition File: CWE36_Absolute_Path_Traversal.label.xml Template File: sources-sink-52c.tmpl.java */ /* * @description * CWE: 36 Absolute Path Traversal * BadSource: URLConnection Read data from a web server with URLConnection * GoodSource: A hardcoded string * Sinks: readFile * BadSink : read line from file from disk * Flow Variant: 53 Data flow: data passed as an argument from one method to another to another in three different classes in the same package * * */ package testcases.CWE36_Absolute_Path_Traversal; import testcasesupport.*; import java.io.*; import javax.servlet.http.*; import java.util.logging.Level; import java.util.logging.Logger; public class CWE36_Absolute_Path_Traversal__URLConnection_52c { public void bad_sink(String data ) throws Throwable { /* POTENTIAL FLAW: unvalidated or sandboxed value */ if (data != null) { File fIn = new File(data); FileInputStream fisSink = null; InputStreamReader isreadSink = null; BufferedReader buffreadSink = null; if( fIn.exists() && fIn.isFile() ) { try { fisSink = new FileInputStream(fIn); isreadSink = new InputStreamReader(fisSink, "UTF-8"); buffreadSink = new BufferedReader(isreadSink); IO.writeLine(buffreadSink.readLine()); } catch ( IOException ioe ) { IO.logger.log(Level.WARNING, "Error with stream reading", ioe); } finally { /* Close stream reading objects */ try { if( buffreadSink != null ) { buffreadSink.close(); } } catch( IOException ioe ) { IO.logger.log(Level.WARNING, "Error closing BufferedReader", ioe); } try { if( isreadSink != null ) { isreadSink.close(); } } catch( IOException ioe ) { IO.logger.log(Level.WARNING, "Error closing InputStreamReader", ioe); } try { if( fisSink != null ) { fisSink.close(); } } catch( IOException ioe ) { IO.logger.log(Level.WARNING, "Error closing FileInputStream", ioe); } } } } } /* goodG2B() - use goodsource and badsink */ public void goodG2B_sink(String data ) throws Throwable { /* POTENTIAL FLAW: unvalidated or sandboxed value */ if (data != null) { File fIn = new File(data); FileInputStream fisSink = null; InputStreamReader isreadSink = null; BufferedReader buffreadSink = null; if( fIn.exists() && fIn.isFile() ) { try { fisSink = new FileInputStream(fIn); isreadSink = new InputStreamReader(fisSink, "UTF-8"); buffreadSink = new BufferedReader(isreadSink); IO.writeLine(buffreadSink.readLine()); } catch ( IOException ioe ) { IO.logger.log(Level.WARNING, "Error with stream reading", ioe); } finally { /* Close stream reading objects */ try { if( buffreadSink != null ) { buffreadSink.close(); } } catch( IOException ioe ) { IO.logger.log(Level.WARNING, "Error closing BufferedReader", ioe); } try { if( isreadSink != null ) { isreadSink.close(); } } catch( IOException ioe ) { IO.logger.log(Level.WARNING, "Error closing InputStreamReader", ioe); } try { if( fisSink != null ) { fisSink.close(); } } catch( IOException ioe ) { IO.logger.log(Level.WARNING, "Error closing FileInputStream", ioe); } } } } } }
ba54d2c961b2019a55f1f27662e1a10e7ce29b64
212b669e3f2094968a4a2662c65db7b060271b0e
/src/main/java/com/dabast/mall/service/impl/TestPostsService.java
9554809b9712c489cdb10d94f44f50cd119c2cae
[]
no_license
YuxingXie/daba_mall
2ad9b281c7dcd1262f88de997663c4aa8b493cc4
6300913ecb7f451ffada2e8ae8358dbaa6b09402
refs/heads/master
2021-01-21T14:08:30.637944
2016-05-18T06:03:10
2016-05-18T06:03:10
38,106,681
0
1
null
null
null
null
UTF-8
Java
false
false
710
java
package com.dabast.mall.service.impl; import com.dabast.common.base.BaseEntityManager; import com.dabast.common.base.EntityDao; import com.dabast.entity.TestPosts; import com.dabast.mall.dao.TestPostsDao; import com.dabast.mall.service.ITestPostsService; import org.springframework.stereotype.Service; import javax.annotation.Resource; @Service public class TestPostsService extends BaseEntityManager<TestPosts> implements ITestPostsService { @Resource private TestPostsDao testPostsDao; protected EntityDao<TestPosts> getEntityDao() { return this.testPostsDao; } @Override public void insertDBRef(TestPosts testPosts) { testPostsDao.insertDBRef(testPosts); } }
42ed75e145181da544a4ad95e2ac76a38c22071d
d9670ff7f4b8bdec3209bb11222a8c0472487f34
/app/src/main/java/Model/Game.java
afc15c89f5137cb7f7b68294dac6023758b40a28
[]
no_license
Bryguy32/GoStop-Android
c404735a56515a60c9b73f9873a628a970f7bd57
a2dbcc31aae57a1be9ca09a29c48d2562fc12537
refs/heads/master
2022-12-16T03:25:42.499373
2020-09-12T12:26:46
2020-09-12T12:26:46
294,938,920
0
0
null
null
null
null
UTF-8
Java
false
false
1,463
java
package Model; import java.util.Vector; public class Game { private Round round = new Round(); private Serialization s = new Serialization(); private Vector<Card> v = new Vector<Card>(); /** * Constructor */ public Game() { } /** * Starts game * @return round */ public Round startGame() { round.setUpRound(); round.determineRound(); return round; } /** * Loads game from file * @return round */ public Round loadGame(String fileName) { s.loadGame(fileName); // Round number int roundNum = s.getRound(); round.setRound(roundNum); // Computer int cScore = s.getComputerScore(); round.setComputerScore(cScore); v = s.getComputerDeck(); round.setComputerDeck(v); v = s.getComputerCaptureDeck(); round.setComputerCaptureDeck(v); // Human int hScore = s.getHumanScore(); round.setHumanScore(hScore); v = s.getHumanDeck(); round.setHumanDeck(v); v = s.gethumanCaptureDeck(); round.sethumanCaptureDeck(v); //Layout v = s.getLayoutDeck(); round.setLayoutDeck(v); //Stock Pile v = s.getDeck(); round.setDeck(v); //Next player boolean isTurn = s.isComputerTurn(); round.currentPlayer(isTurn); return round; } }
744b71c657bae312d1c05f3d05b815d760d126d0
01b23223426a1eb84d4f875e1a6f76857d5e8cd9
/icefaces3/scratchpads/ICE-8156/icefaces/samples/core/chat/src/main/java/org/icefaces/sample/portlet/chat/ChatRoom.java
c94701e76a5b259c72048afeefc79f1260746d40
[ "Apache-2.0" ]
permissive
numbnet/icesoft
8416ac7e5501d45791a8cd7806c2ae17305cdbb9
2f7106b27a2b3109d73faf85d873ad922774aeae
refs/heads/master
2021-01-11T04:56:52.145182
2016-11-04T16:43:45
2016-11-04T16:43:45
72,894,498
0
0
null
null
null
null
UTF-8
Java
false
false
3,974
java
/* * Copyright 2004-2012 ICEsoft Technologies Canada Corp. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an "AS * IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.icefaces.sample.portlet.chat; import org.icefaces.application.PushRenderer; import org.icefaces.sample.portlet.chat.resources.ResourceUtil; import javax.faces.bean.ApplicationScoped; import javax.faces.bean.ManagedBean; import java.util.*; import java.util.logging.Logger; /** * The ChatRoom class is the hub of the application. It keeps track of * Participants (adding and removing) as well as the message history. * It is also responsible for firing Ajax Push requests when the state * of the application has changed. */ @ManagedBean @ApplicationScoped public class ChatRoom{ private static Logger log = Logger.getLogger(Participant.class.getName()); public static final String ROOM_RENDERER_NAME = "all"; private Map participants = Collections.synchronizedMap(new HashMap()); private List messages = Collections.synchronizedList(new ArrayList()); public ChatRoom() { } public void addParticipant(Participant participant) { if (hasParticipant(participant)) { return; } participants.put(participant.getHandle(), participant); PushRenderer.addCurrentSession(ChatRoom.ROOM_RENDERER_NAME); String localizedMessage = ResourceUtil.getLocalizedMessage("joined", participant.getHandle()); addMessage(participant, localizedMessage); } public void removeParticipant(Participant participant) { if (!hasParticipant(participant)) { return; } participants.remove(participant.getHandle()); String localizedMessage = ResourceUtil.getLocalizedMessage("left", participant.getHandle()); addMessage(participant, localizedMessage); PushRenderer.removeCurrentSession(ROOM_RENDERER_NAME); } public String[] getHandles() { return (String[]) participants.keySet().toArray(new String[participants.size()]); } public int getNumberOfParticipants() { return participants.size(); } public List getMessages() { return messages; } public int getNumberOfMessages() { return messages.size(); } protected void addMessage(Message message) { messages.add(0, message.getFormattedMessage()); } public void addMessage(Participant participant, String message) { if (participant != null && participant.getHandle() != null) { addMessage(new Message(participant, message)); PushRenderer.render(ROOM_RENDERER_NAME); } } public boolean hasParticipant(Participant participant) { return participants.containsKey(participant.getHandle()); } public List getMessages(int start, int number) { int totalMessages = messages.size(); if (start > totalMessages) { start = 0; } if ((start + number) > totalMessages) { number = totalMessages - start; } // The use of subList can lead to ConcurrentModificationExceptions // return messages.subList(start, start + number); List subList = new ArrayList(); for(int index = start; index < (start+number); index++){ subList.add(messages.get(index)); } return subList; } }
[ "ken.fyten@8668f098-c06c-11db-ba21-f49e70c34f74" ]
ken.fyten@8668f098-c06c-11db-ba21-f49e70c34f74
58ac92a28aee04e0fac6256e63738f40ebf35782
a0bdf113c0db3a150fa1a016cd2f5c423fb59e87
/src/main/java/com/github/minemanmods/MinemanUtilities/exceptions/FailedTransactionException.java
ddad6943e425d1cfc2d455d92b0eda9d3a6f8de9
[]
no_license
Lazersmoke/MinemanUtilities
3e548167838073c16ba39539f53501d07dd5c9e5
d9fb613753886c871c3fb637df94fd4c25ae12f2
refs/heads/master
2020-04-24T21:51:10.893976
2019-02-24T03:03:05
2019-02-24T03:03:05
172,291,840
0
0
null
2019-02-24T03:35:25
2019-02-24T03:35:25
null
UTF-8
Java
false
false
322
java
package com.github.minemanmods.MinemanUtilities.exceptions; import javax.validation.constraints.NotEmpty; import javax.validation.constraints.NotNull; public class FailedTransactionException extends Exception { public FailedTransactionException(@NotNull @NotEmpty String message) { super(message); } }
93b2087e1c78b02e7298133348aa14c0e5fe44b8
7fea8e98a079559da985c359ad2546b156aff877
/app/src/main/java/com/reatchall/charan/reatchallVendor/ChangePasswordActivity.java
dd1c7b6788a18fef982e3ab428dec193791586e0
[]
no_license
rrsam/ReatchAllVendor
ce9b8ad07d4819eba5e988279b5edb3719abda29
4e2ed2f6e8ae0755f35e1da70aff23f08608aefa
refs/heads/master
2020-05-04T08:11:04.802344
2019-04-20T11:23:29
2019-04-20T11:23:29
179,041,845
0
0
null
null
null
null
UTF-8
Java
false
false
1,344
java
package com.reatchall.charan.reatchallVendor; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.ImageView; /** * Created by NaNi on 20/02/18. */ public class ChangePasswordActivity extends AppCompatActivity { private static final String TAG = "NotificationsActivity"; ImageView backArrow; Button saveChanges,cancel; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_change_password); backArrow=(ImageView)findViewById(R.id.back_arrow); saveChanges=(Button)findViewById(R.id.saveChanges); cancel=(Button)findViewById(R.id.cancel); backArrow.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { finish(); } }); saveChanges.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { finish(); } }); cancel.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { finish(); } }); } }
f43e77a3640e82797e864d1cf84cd1858b134889
2dced78995e0c7bdb74e56dac34cb9353de47f27
/src/interfaces/Animation.java
8d1807daa69dd2799a34e3860c4f06d74dc82692
[]
no_license
Meniakk/SpaceInvader
d0340dbf81bc3172623d7031689da10dc981c3d4
589e4f9cfda735c230f696ba863387bb71c6baab
refs/heads/master
2021-08-27T20:45:34.012960
2021-08-05T13:23:11
2021-08-05T13:23:11
163,888,622
0
0
null
null
null
null
UTF-8
Java
false
false
423
java
package interfaces; import biuoop.DrawSurface; /** * An interface of Animation. */ public interface Animation { /** * Draws the objects. * @param d The draw surface to draw on. * @param dt The time passed. */ void doOneFrame(DrawSurface d, double dt); /** * Notify when to stop. * @return boolean, True if we should stop, false otherwise. */ boolean shouldStop(); }
cd812695049a4323f5fe99bf9c65f580fffe0867
9c13d45b0e43fb40d373b9e6dbb71569b0da304a
/app/src/main/java/io/yagus/viewbinding/MainActivity.java
11badd0707fd2f610167051b2f85e86f7cd9cc44
[]
no_license
dure21/viewBinding_docs
e741f65974ad4191214686eddfe54a351abff8b7
c1bbf0c1f5ad05d4fe5fb398305d839b47bc70b6
refs/heads/master
2021-04-04T13:16:36.570961
2020-03-19T09:25:11
2020-03-19T09:25:11
248,460,633
0
0
null
null
null
null
UTF-8
Java
false
false
557
java
package io.yagus.viewbinding; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import io.yagus.viewbinding.databinding.ActivityMainBinding; public class MainActivity extends AppCompatActivity { ActivityMainBinding binding; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); binding = ActivityMainBinding.inflate(getLayoutInflater()); setContentView(binding.getRoot()); binding.textView.setText("viewBinding 세팅 완료"); } }
27c21e7ae357fb2f8f9d2359d98f7537a5f906f9
1c48c5d434e8ce54fc36aec475f2dc095157c7b6
/src/main/java/com/fiscalizacao/repository/filter/UfFilter.java
79b545043968b4ed3feafaef3d3a668fc3315d33
[]
no_license
gbueno1086/fiscal
bec48ddd8d95d7728aecde79a024193073cfab77
03260cd706b6bdb61346cb16cde16c37c59080ba
refs/heads/main
2023-02-13T19:58:46.260273
2021-01-12T00:04:10
2021-01-12T00:04:10
314,661,081
0
0
null
null
null
null
UTF-8
Java
false
false
156
java
package com.fiscalizacao.repository.filter; import lombok.Getter; import lombok.Setter; @Getter @Setter public class UfFilter { private String nome; }
012cd2e8f576f7903c0eb8dd9a566cdf8dc6b6eb
0eb2efa85aa9b9920fbfff268afc4c5a67fcabe0
/jack/javabase/src/main/java/com/tntcpu/javabase/tij/concurrency/example/SerialNumberChecker.java
6b774a2fcb1df955c1839590c6d386f6c36ac6b3
[]
no_license
tntcpu/firefly
2b8dcc9a1829792a6351487ef3db4dadd9e281df
56e2b978ad60e8059c69aba50b28cfddc0234b4f
refs/heads/master
2022-07-01T20:12:03.429208
2020-03-14T13:06:15
2020-03-14T13:06:15
187,453,522
1
0
null
2022-06-17T02:49:52
2019-05-19T08:46:03
Java
UTF-8
Java
false
false
1,749
java
package com.tntcpu.javabase.tij.concurrency.example; import lombok.extern.slf4j.Slf4j; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; /** * @program: firefly * @description: * @author: ZhangZhentao * @create: 2019-08-21 **/ class CircularSet { private int[] array; private int len; private int index = 0; public CircularSet(int size) { array = new int[size]; len = size; for (int i = 0; i < size; i++) { array[i] = -1; } } public synchronized void add(int i) { array[index] = i; index = ++index % len; } public synchronized boolean contains(int val) { for (int i = 0; i < len; i++) { if (array[i] == val) { return true; } } return false; } } @Slf4j public class SerialNumberChecker { private static Logger logger = LoggerFactory.getLogger(SerialNumberChecker.class); private static final int SIZE = 10; private static CircularSet serials = new CircularSet(1000); private static ExecutorService exec = Executors.newCachedThreadPool(); static class SerialChecker implements Runnable { @Override public void run() { while (true) { int serial = SerialNumberGenerator.nextSerialNumber(); if (serials.contains(serial)) { logger.info("Duplicate: " + serial); System.exit(0); } serials.add(serial); } } } public static void main(String[] args) throws InterruptedException { for (int i = 0; i < SIZE; i++) { exec.execute(new SerialChecker()); } if (args.length > 0) { TimeUnit.SECONDS.sleep(Integer.valueOf(args[0])); logger.info("No duplicates detected"); System.exit(0); } } }
bb79fbcf276ee54a52da2cac87cf2478cecd74eb
093bef41a1523e9b4a61830807cab1138c4fa3ec
/src/main/java/xy/study/self/builder/Armor.java
09d3b4edff9a7b233638332149614f32f5b70e17
[]
no_license
xy1002xy/study
5746ea1c132366feccf0db13cd1fdfd6fdae2864
c1a89bb334330bd72ab7d453386d615c10f0cd84
refs/heads/master
2020-03-09T06:14:51.680797
2020-02-06T06:08:03
2020-02-06T06:08:03
128,634,191
0
0
null
null
null
null
UTF-8
Java
false
false
421
java
package xy.study.self.builder; import lombok.Getter; /** * @program: sell * @author: wxy * @create: 2018-12-11 13:33 * @desc: **/ @Getter public enum Armor { CLOTHES("clothes"), LEATHER("leather"), CHAIN_MAIL("chain mail"), PLATE_MAIL("plate mail"); private String name; Armor(String name) { this.name = name; } @Override public String toString() { return name; } }
5d5f8b7ead7015d9e69e7d2976d15814a3f2c83b
306083c6d4e15204e5f7f08f1e52c734e0b07bfe
/达内Java/springmvc需要的配置文件/目录结构/service/LoginService.java
97ffe3ef0fb1b06b9b8152ab2fc9222f45f1b3a3
[]
no_license
wudilaobaba/jiawa
03158609b89e40a0664c4fb1dbc896cb16cbed56
ad351726a2dda082cf4269daac34293337bbdcf2
refs/heads/master
2023-07-20T18:52:36.404183
2023-07-16T04:16:10
2023-07-16T04:16:10
184,720,577
0
0
null
2023-01-04T05:36:00
2019-05-03T08:11:28
CSS
UTF-8
Java
false
false
142
java
package com.whj.project.service; import com.whj.project.entity.Emp; public interface LoginService { Emp checkLogin(String name,int age); }
389ebe0bfb5527f65e004925ec039a9d466aacf5
02507a5e6c42af839370c63870be8ada9599a941
/store/src/main/java/com/easy/store/converter/eoschain/RexBeanConverter.java
83e5da350edafe2c4c012c6582475c53beedb1f2
[]
no_license
EasyDevWork/EasyAndroid2
42128245c2a1c3f4e483f8e83e101e7dd2130c20
8e70ef7389805f7504525a23aadcb8fda020aee3
refs/heads/master
2021-04-04T16:45:36.535233
2021-02-26T02:51:02
2021-02-26T02:51:02
248,472,146
0
1
null
null
null
null
UTF-8
Java
false
false
890
java
package com.easy.store.converter.eoschain; import android.text.TextUtils; import com.alibaba.fastjson.JSON; import com.easy.store.bean.eoschain.RexBean; import io.objectbox.converter.PropertyConverter; public class RexBeanConverter implements PropertyConverter<RexBean, String> { @Override public RexBean convertToEntityProperty(String databaseValue) { RexBean ownerKey = new RexBean(); if (!TextUtils.isEmpty(databaseValue)) { try { ownerKey = JSON.parseObject(databaseValue, RexBean.class); } catch (Exception e) { e.printStackTrace(); } } return ownerKey; } @Override public String convertToDatabaseValue(RexBean entityProperty) { if (entityProperty != null) { return JSON.toJSONString(entityProperty); } return null; } }
44d787caff4180207ecfa91c44510f5adf314bdd
def1efb4192e765815fea7b6fa7645d4677e981d
/CulinaryRecipesJPA/src/com/culinaryrecipes/model/Comment.java
89579fe7d4fb60925d3ba68c1cc70918508740e0
[ "MIT" ]
permissive
Shaventus/CulinaryRecipesPage
f77d5d6334e5c65652356dd0add367ddc16381de
92fc64f8ea79a60e2d10b791ae6e07ebcbfff5f1
refs/heads/master
2020-07-13T16:36:42.779858
2019-06-02T13:53:26
2019-06-02T13:53:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,142
java
package com.culinaryrecipes.model; import java.io.Serializable; import javax.persistence.*; import java.util.Date; import java.util.List; /** * The persistent class for the comment database table. * */ @Entity @NamedQuery(name="Comment.findAll", query="SELECT c FROM Comment c") public class Comment implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy=GenerationType.IDENTITY) private int idComment; @Temporal(TemporalType.TIMESTAMP) private Date datetime; @Lob private String text; //bi-directional many-to-one association to Account @ManyToOne private Account account; //bi-directional many-to-one association to Comment @ManyToOne private Comment comment; //bi-directional many-to-one association to Comment @OneToMany(mappedBy="comment") private List<Comment> comments; //bi-directional many-to-one association to Recipe @ManyToOne private Recipe recipe; public Comment() { } public int getIdComment() { return this.idComment; } public void setIdComment(int idComment) { this.idComment = idComment; } public Date getDatetime() { return this.datetime; } public void setDatetime(Date datetime) { this.datetime = datetime; } public String getText() { return this.text; } public void setText(String text) { this.text = text; } public Account getAccount() { return this.account; } public void setAccount(Account account) { this.account = account; } public Comment getComment() { return this.comment; } public void setComment(Comment comment) { this.comment = comment; } public List<Comment> getComments() { return this.comments; } public void setComments(List<Comment> comments) { this.comments = comments; } public Comment addComment(Comment comment) { getComments().add(comment); comment.setComment(this); return comment; } public Comment removeComment(Comment comment) { getComments().remove(comment); comment.setComment(null); return comment; } public Recipe getRecipe() { return this.recipe; } public void setRecipe(Recipe recipe) { this.recipe = recipe; } }
3c78e86e29d51658963d90ff076f34f17711514b
6f3d14b274809cdf047ed2dd23fbaa17b42ca9e4
/src/Utils/Vector2.java
3b42794dcf59b475973550c983cfe6d770daec4c
[]
no_license
lukamix/OOP-124159-Group12
8e9e0468f57ac83cea7e67277ab2a0585190fd87
0caf637264ce84df9f6634b2822f1972e1074f19
refs/heads/main
2023-06-05T11:40:36.315294
2021-05-25T09:38:50
2021-05-25T09:38:50
357,193,038
0
1
null
2021-06-14T11:30:47
2021-04-12T12:54:47
Java
UTF-8
Java
false
false
355
java
package Utils; public class Vector2 { public double x; public double y; public Vector2(){ this.x=0f; this.y=0f; } public Vector2(double x, double y){ this.x=x; this.y=y; } public void Translate(Vector2 destiny){ x=destiny.x; y=destiny.y; } public void Move(){ } }
90202901b70d188633a9bcad92bfb07493528e8d
61a5afc31de290a527dfbf0552c852577a706b7b
/plugin/src/main/java/me/scana/okgradle/internal/dsl/parser/settings/ProjectPropertiesDslElement.java
9bdf077b850b49aa70d45d202744b0ba84db5cb6
[ "Apache-2.0" ]
permissive
scana/ok-gradle
892ca48e019a774d1c72cad556f8d14b2c3bebd9
7ecbade228ea8f055eead30e18f4c3b4d244d2de
refs/heads/master
2023-09-04T10:39:08.921797
2021-01-10T19:11:04
2021-01-10T19:11:04
107,177,226
727
34
Apache-2.0
2021-01-09T15:07:27
2017-10-16T20:05:45
Java
UTF-8
Java
false
false
2,044
java
/* * Copyright (C) 2015 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package me.scana.okgradle.internal.dsl.parser.settings; import me.scana.okgradle.internal.dsl.parser.elements.GradleDslElement; import me.scana.okgradle.internal.dsl.parser.elements.GradleDslMethodCall; import me.scana.okgradle.internal.dsl.parser.elements.GradleNameElement; import me.scana.okgradle.internal.dsl.parser.elements.GradlePropertiesDslElement; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.io.File; public class ProjectPropertiesDslElement extends GradlePropertiesDslElement { @NonNls private static final String PROJECT_DIR = "projectDir"; @NonNls public static final String BUILD_FILE_NAME = "buildFileName"; public ProjectPropertiesDslElement(@Nullable GradleDslElement parent, @NotNull GradleNameElement name) { super(parent, null, name); } @Nullable public File projectDir() { GradleDslMethodCall projectDir = getPropertyElement(PROJECT_DIR, GradleDslMethodCall.class); if (projectDir != null) { return projectDir.getValue(File.class); } return null; } @Nullable public static String getStandardProjectKey(@NotNull String projectReference) { String standardForm = projectReference.replaceAll("\\s", "").replace("\"", "'"); if (standardForm.startsWith("project(':") && standardForm.endsWith("')")) { return standardForm; } return null; } }
16a9c7e30ad5f5c4a3a5312dfac8970244261980
b7e408d1ed1aadd1c0dbed14469c154066a202b3
/Pincode/src/main/java/directory/backend/BackendOps.java
9949d6e949ac75650fa1d7eb37d26a1536d5216c
[]
no_license
venkatt05/FULL-JS-Framewoks
25f22dfbfe615d9e830f8b6b72d22c80dcf4aff3
421275ddb81311b4441a9f5b923479925af3b338
refs/heads/main
2023-01-06T18:26:36.632047
2020-11-10T02:29:53
2020-11-10T02:29:53
null
0
0
null
null
null
null
UTF-8
Java
false
false
869
java
package directory.backend; import java.util.Arrays; public class BackendOps { private static ResultPojo resultPojo = new ResultPojo(); public void computeResults(String areaToSearch) { String userInput = areaToSearch.toLowerCase(); for (String area : CityCodes.chennaiCodes().keySet()) { if (area.contains(userInput)) { userInput = area; break; } } if (CityCodes.chennaiCodes().containsKey(userInput)) { int code = CityCodes.chennaiCodes().get(userInput); resultPojo.setAreas(Arrays.asList(userInput.toUpperCase())); resultPojo.setCode(code); } else { int value = Integer.parseInt(userInput); if (CityCodes.chennaiCodes().containsValue(value)) { resultPojo.setCode(value); resultPojo.setAreas(CityCodes.getAreas(value)); } } } public ResultPojo getPojoInstance() { return resultPojo; } }
c88482fcdc9ced606dc358c6684b2181b5c498d2
b23d28ce345017434daab3ffd2538adab4bcb13c
/src/main/java/com/zhf/sell/enums/OrderStatusEnum.java
37ee54797bc6f54baa7fcc85d0421eb4c37efe96
[]
no_license
FMJZHF/sell
aab3382f8f215cf3ac54d0019ff1c2dcab46cf0a
46b478fb4400f7812f42c55449a9a97bd1af0e3c
refs/heads/master
2020-03-19T11:06:30.010985
2018-06-14T08:31:38
2018-06-14T08:31:38
136,431,291
0
0
null
null
null
null
UTF-8
Java
false
false
387
java
package com.zhf.sell.enums; import lombok.Getter; /** * 订单状态 */ @Getter public enum OrderStatusEnum implements CodeEnum{ NEW(0,"新订单"), FINISHED(1,"完结"), CANNEL(2,"已取消"); private Integer code; private String message; OrderStatusEnum(Integer code, String message) { this.code = code; this.message = message; } }
34e14dcf920e442c0c41bb024fd7c8e841bea73f
f67952ffd190a1a5afa7084058d3d997fab2508d
/observer2/DisplayColors.java
c86ae212aca054f3ac2169b1c5e3bfdeaa7b99dd
[]
no_license
UT-SWLab/tutorial10_tylerpak
7543da5ceb183850297c00667e18ca922a30b425
88d0326cc9df0c25f9a4eb19f4d226d4835346d1
refs/heads/master
2023-01-23T01:35:51.910808
2020-11-24T22:00:35
2020-11-24T22:00:35
315,761,290
0
0
null
null
null
null
UTF-8
Java
false
false
3,212
java
package observer1; import javax.swing.*; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; import java.awt.*; public class DisplayColors{ public static void main(String[] args) { SwingFacade.launch(new DisplayColors().mainPanel(), "Compute Complementary Colors"); } protected ColorPanel originalColorPanel; protected ColorPanel complementaryColorPanel; protected static JSlider hueSlider; protected static JSlider saturationSlider; protected static JSlider brightnessSlider; protected JLabel hueValueLabel; protected JLabel saturationValueLabel; protected JLabel brightnessValueLabel; protected JPanel colorsPanel() { JPanel p = new JPanel(); p.setLayout(new GridLayout(1, 2)); originalColorPanel = new OriginalColorPanel(Color.getHSBColor(0, (float) .5, (float) .5)); originalColorPanel.setPreferredSize(new Dimension(300, 200)); p.add(SwingFacade.createTitledPanel("Original Color", originalColorPanel)); complementaryColorPanel = new ComplementaryColorPanel(Color.getHSBColor((float) .5, (float) .5, (float) .5)); complementaryColorPanel.setPreferredSize(new Dimension(300, 200)); p.add(SwingFacade.createTitledPanel("Complementary Color", complementaryColorPanel)); return p; } protected JPanel mainPanel() { JPanel p = new JPanel(); p.setLayout(new GridLayout(2, 1)); JPanel subP = new JPanel(); subP.setLayout(new GridLayout(3, 1)); hueSlider = slider(); subP.add(sliderBox("H", hueSlider, hueValueLabel)); saturationSlider = slider(); saturationSlider.setValue(50); subP.add(sliderBox("S", saturationSlider, saturationValueLabel)); brightnessSlider = slider(); brightnessSlider.setValue(50); subP.add(sliderBox("B", brightnessSlider, brightnessValueLabel)); JPanel colorsPanel = colorsPanel(); p.add(subP); p.add(colorsPanel); return p; } private JSlider slider() { JSlider slider = new JSlider(); slider.setValue(slider.getMinimum()); return slider; } private Box sliderBox(String sliderLabel, JSlider slider, JLabel valueLabel) { if (valueLabel == null) { valueLabel = new JLabel(); valueLabel.setFont(SwingFacade.getStandardFont()); valueLabel.setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 10)); valueLabel.setForeground(java.awt.Color.black); } Box b = Box.createHorizontalBox(); JLabel label = new JLabel(sliderLabel); label.setFont(SwingFacade.getStandardFont()); label.setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 10)); label.setForeground(java.awt.Color.black); b.add(label); b.add(valueLabel); b.add(slider); b.setPreferredSize(new Dimension(600, 50)); return b; } protected ColorPanel createColorPanel(Color initialColor) { ColorPanel colorPanel = new ColorPanel(initialColor); colorPanel.setPreferredSize(new Dimension(300, 200)); return colorPanel; } }
ca8ab7698c547221104fc055ed771bff581865a9
4223a9e47a284c8958cd14bb774330aed858ab45
/src/moneymoney/PageInfo.java
4e0d4ca3c685eb925ee4f6501e7c879364d3a36e
[]
no_license
nokun13/moneymoney_project
5374d39c652901bb6fa8fe5e87ef08aa77c3a0e6
264626d9aedeaf8cd08c27adf2e2f3576777c675
refs/heads/master
2023-01-29T11:54:56.095518
2020-12-08T14:42:52
2020-12-08T14:42:52
319,664,409
0
0
null
null
null
null
UTF-8
Java
false
false
473
java
package moneymoney; public class PageInfo { private int pageNum; private int alarm; private PageInfo() { } private static PageInfo pageInfo = new PageInfo(); public static PageInfo getInstance() { return pageInfo; } public int getPageNum() { return pageNum; } public void setPageNum(int pageNum) { this.pageNum = pageNum; } public int getAlarm() { return alarm; } public void setAlarm(int alarm) { this.alarm = alarm; } } // end class
eb2d8a2f16f86ba0027f9e8ad2cfe1917318af78
fdbe0b11a1b57c5dbdf376bf562e992f8f5e3228
/fastestSortingAlgorithm/src/fastest_sorting_algorithm.java
c04f627ffec5549a33415fe1d13aca404162f8be
[ "MIT" ]
permissive
dev-abir/programmedByAbir
05880b4e28aee7fbe8e0bb570264909a2eac8c57
3a8b550f5dfce8b3801ad5b10c1c13492ae00809
refs/heads/master
2021-12-21T15:59:38.474067
2021-12-15T06:29:39
2021-12-15T06:29:39
227,763,502
0
1
null
2019-12-15T16:07:10
2019-12-13T05:30:48
Java
UTF-8
Java
false
false
2,801
java
/** Created by : Abir Ganguly. ---------------------NOTE--------------------- THIS PROGRAM DOESN'T SUPPORT NEGATIVE NUMBERS, AS INPUT. ---------------------------------------------- */ import java.util.*; class fastest_sorting_algorithm { private static void getArray(int[] array, Scanner sc) { System.out.println("Enter array elements :"); int i; for(i = 0; i < array.length; i++) { System.out.print("Enter element " + (i + 1) + " : "); array[i] = sc.nextInt(); } } private static void displayArray(String message, int[] array) { System.out.print(message); int i; for(i = 0; i < array.length; i++) { System.out.print(array[i] + ", "); } System.out.println(); } private static int getmaxElement(int[] array) { int i, max = array[0]; for(i = 0; i < array.length; i++) { if(array[i] > max) {max = array[i];} } return max; } public static int[] sort(int[] array) { /** The elementCounter array will contain how many times each number is repeated. For example : array is = A = [6, 2, 0, 2, 5] This array has minimum element 0, and maximum is 6, so length of elementCounter should be (6 + 1) = 7(also consider 0) on traversing this array, the system will first encounter '6', so it will increse elementCounter[6] by 1. then the system will see '2', so it will increse elementCounter[2] by 1. then the system will see '0', so it will increse elementCounter[0] by 1. then the system will see '2', so it will increse elementCounter[2] by 1.(Now the value of elementCounter[2] is 2) then the system will see '5', so it will increse elementCounter[6] by 1. Now... elementCounter[0] is 1, so the sorted array should contain 0, 1 time. elementCounter[1] is 0, so the sorted array should not contain 1. elementCounter[2] is 2, so the sorted array should contain 2, two times. ...Like this, it will proceed.... */ int[] elementCounter = new int[getmaxElement(array) + 1]; //The user can also enter 0, as an element. int i; for(i = 0; i < array.length; i++) { elementCounter[array[i]] += 1; } int[] result = new int[array.length]; arrange(elementCounter, result); return result; } private static void arrange(int[] from, int[] to) { int x = 0, i, j; for(i = 0; i < from.length; i++) { for(j = 0; j < from[i]; j++) { to[x] = i; x++; } } } public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("Enter length of the array : "); int array_length = sc.nextInt(); int[] array = new int[array_length]; getArray(array, sc); displayArray("Original array : ", array); displayArray("Sorted array : ", sort(array)); sc.close(); } }
ac933034b209ba50fb1c57e75323311027c0018e
347929ca1ffc0f330d04470e6ebef42e585ecfcf
/src/main/java/com/jobcenter/service/impl/ProExpServiceImpl.java
a0a91f1677138ec6fa31007ea4e3130a74bfab53
[ "Apache-2.0" ]
permissive
yuhangzheng/6.24
3bc92d70a59fae88540ebc4a0624b25110669947
f74133fa4cac2394ad18aea5de16546cad8b0ea7
refs/heads/maven-version
2022-12-28T12:07:26.693557
2019-06-20T03:28:45
2019-06-20T03:29:07
188,972,941
3
0
Apache-2.0
2022-12-16T06:44:26
2019-05-28T07:02:47
Java
UTF-8
Java
false
false
886
java
package com.jobcenter.service.impl; import com.jobcenter.dao.ProExpDAO; import com.jobcenter.entity.ProExp; import com.jobcenter.service.ProExpService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class ProExpServiceImpl implements ProExpService { @Autowired private ProExpDAO proExpDAO; //添加项目经验的记录 @Override public int insert(ProExp record) { int row = proExpDAO.insert(record); return row; } //根据简历id查询 @Override public ProExp queryByResumeId(Integer resumeId) { return proExpDAO.queryProExpByResumeId ( resumeId ); } //根据简历id修改 @Override public Integer updateByResumeId(Integer resumeId ,ProExp proExp){ return proExpDAO.updateByResumeId ( resumeId,proExp); } }
783b0d78d0ac9f679529108cbcb27ce610f2afa4
72ee6fae1ceece4397a073e4e9a916d30cfdf7af
/NavUtilTest/app/src/main/java/com/mindorks/test/navutiltest/SubActivity.java
57da8eb623a4c7cfe7abe4e369bd6c80c2cd97f7
[]
no_license
dhruvgajwa/examples
512649f44e0cad55b73cf51e303a8f87670709df
a3ccc0a8cfd2e9ab81093edbfefdde957260e252
refs/heads/master
2020-03-22T04:05:07.697561
2017-04-04T18:27:36
2017-04-04T18:27:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,229
java
package com.mindorks.test.navutiltest; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.support.v4.app.NavUtils; import android.support.v4.app.TaskStackBuilder; import android.support.v7.app.AppCompatActivity; import android.view.MenuItem; import android.view.View; import android.widget.TextView; import android.widget.Toast; public class SubActivity extends AppCompatActivity { public static Intent getStartIntent(Context context) { Intent intent = new Intent(context, SubActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); return intent; } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_sub); if (getSupportActionBar() != null) { getSupportActionBar().setDisplayHomeAsUpEnabled(true); getSupportActionBar().setDisplayShowHomeEnabled(true); } final TextView textView = (TextView) findViewById(R.id.textView); findViewById(R.id.button).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { textView.setText("After the click state"); startActivity(SubSubActivity.getStartIntent(SubActivity.this)); } }); } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { // Respond to the action bar's Up/Home button case android.R.id.home: Intent upIntent = NavUtils.getParentActivityIntent(this); upIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); if (NavUtils.shouldUpRecreateTask(this, upIntent)) { // This activity is NOT part of this app's task, so create a new task // when navigating up, with a synthesized back stack. TaskStackBuilder.create(this) // Add all of this activity's parents to the back stack .addNextIntentWithParentStack(upIntent) // Navigate up to the closest parent .startActivities(); } else { // This activity is part of this app's task, so simply // navigate up to the logical parent activity. NavUtils.navigateUpTo(this, upIntent); } return true; } return super.onOptionsItemSelected(item); } /** * This is done so that onNewIntent of parent activity is called * rather that just finish the current activity (if acknowledgement is required for the parent activity) * Note: The NavUtils can be replaced by the call of onBackPressed() in onOptionsItemSelected in this case */ @Override public void onBackPressed() { startActivity(HomeActivity.getStartIntent(this)); } @Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); Toast.makeText(this, "Sub Activity Resumed", Toast.LENGTH_SHORT).show(); } }
c55cbbc2f15d818c49cb452bf6a00c29dab34675
7b411be4f3a36fa67e12ccb7ceef702291518528
/src/company/Rectangle.java
7814b0a710b8bfa28841673641998dbff104b587
[]
no_license
starry-ari/Unit7
5c892b33095b325038d0790ccef326ecebf424e2
bf957c82659dfac824543e1af29a24b28b141420
refs/heads/master
2022-06-28T07:08:45.161740
2020-04-03T16:26:39
2020-04-03T16:26:39
null
0
0
null
null
null
null
UTF-8
Java
false
false
382
java
package company; public class Rectangle { private double length; private double width; public Rectangle( double l, double w) { this.length =l; this.width =w; } public double getWidth() { return width; } public double getLength() { return length; } public double area() { double area = length * width; return area; } }
214e76979a035f76cb03ed084ef2ded192c0121d
ce1d7c1d91d964d054d0eaf0adf04c43bd4df0e7
/src/test/java/com/jc/dependency/support/DriverManager.java
cee5214c0a15431cdb00d477dc2ee6272754e8e1
[]
no_license
haibgit/spring-dependency-injection
234cee109fa255be03262ec955cfb0f1bdd7c2aa
eaf19187462032ed6e872ac417dd298800b97142
refs/heads/master
2021-10-08T09:15:37.000417
2018-12-10T11:58:38
2018-12-10T11:58:38
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,636
java
package com.jc.dependency.support; import io.github.bonigarcia.wdm.WebDriverManager; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.chrome.ChromeOptions; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; import java.util.concurrent.TimeUnit; @Component public class DriverManager { @Value("${browser:chrome}") private String browser; @Bean public WebDriver getDriver() { WebDriver driver; switch (browser.toLowerCase()) { case "chrome": driver = getChromeDriver(); break; default: driver = getChromeDriver(); break; } driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS); return driver; } private WebDriver getChromeDriver() { WebDriverManager.chromedriver().setup(); ChromeOptions options = new ChromeOptions(); options.addArguments("test-type"); options.addArguments("--start-maximized"); options.addArguments("disable-extensions"); options.addArguments("--disable-infobars"); options.setExperimentalOption("useAutomationExtension", false); Map<String, String> mobileEmulation = new HashMap<>(); mobileEmulation.put("deviceName", "Nexus 5"); options.setExperimentalOption("mobileEmulation", mobileEmulation); return new ChromeDriver(options); } }
056b479b163e71688980472789110563074c4607
1f1abe44bd0ef8b24703fc631a89cb5cb64c7af0
/app/src/main/java/com/idealist/www/useopencvwithcmake/Chat_Post.java
ff88e30376c4292c3b879c186490e012eb65f100
[]
no_license
parkcsm/Debat_Chat
92a51fc72d556c50ca6b712d9ad8c3307313498d
1ba02fae2a634155738e18d15f71b7e95ddc3c4a
refs/heads/master
2022-02-11T09:13:11.739215
2019-07-13T12:06:10
2019-07-13T12:06:10
194,493,172
1
0
null
null
null
null
UTF-8
Java
false
false
5,108
java
package com.idealist.www.useopencvwithcmake; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.ImageView; import android.widget.ListView; import android.widget.Toast; import com.android.volley.AuthFailureError; import com.android.volley.Request; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.StringRequest; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; public class Chat_Post extends AppCompatActivity { ImageView fab_post; public static ArrayList<Chat_Post_Item> PostPool; public static Chat_Post_Adapter adapter; public static ListView PostList; String board_load_url = "http://ec2-13-125-191-223.ap-northeast-2.compute.amazonaws.com:8080/update_board_info/load_board_info.php"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_chat__post); fab_post = findViewById(R.id.fab_post); fab_post.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent mIntent = new Intent(Chat_Post.this,Chat_Post_Write.class); startActivity(mIntent); } }); PostList = findViewById(R.id.post_listview); } @Override protected void onResume() { super.onResume(); PostPool = new ArrayList<>(); adapter = new Chat_Post_Adapter(Chat_Post.this, PostPool); PostList.setAdapter(adapter); Load_Board_Info_from_DB(new OpenChatRoom.CallBack() { // 인터페이스는 딱히 의미가 없다. 단지 코드를 눈에띄게 정리하고 정렬하는 용도로 사용한다. 앞으로 적극 사용하자. @Override public void getJsonArray(JSONArray jsonArray) throws JSONException { /** * 발생 문제 : For{Msg.add} =(미연동)> Adapter(Msg) [ Msg.size()가 계속 0으로 나옴 ] * For문안에다가 Adapter넣어서 문제 일시적으로 해결 (왜 For과 Array.add가 궁합이 안맞는지는 근본적인은 못참음) */ for (int i = jsonArray.length()-1; jsonArray.getJSONObject(i) != null; i--) { // Toast.makeText(OpenChatRoom.this, i + "통과", Toast.LENGTH_SHORT).show(); JSONObject jsonObject = jsonArray.getJSONObject(i); String Post_Image_Url = jsonObject.getString("Post_Image_Url"); String Writer = jsonObject.getString("Writer"); String Post_Text = jsonObject.getString("Post_Text"); String Like_Num = jsonObject.getString("Like_Num"); String Comment_Num = jsonObject.getString("Comment_Num"); String Regdate = jsonObject.getString("Regdate"); // Toast.makeText(Chat_Post.this, Writer + "//" + Post_Text + "//" + Like_Num + "//" + Comment_Num + "//" + Regdate + "//" +Post_Image_Url , Toast.LENGTH_SHORT).show(); Chat_Post_Item chat_post_item = new Chat_Post_Item(Post_Image_Url,Writer,Post_Text,false,Like_Num,Comment_Num, Regdate); PostPool.add(chat_post_item); adapter = new Chat_Post_Adapter(Chat_Post.this, PostPool); //--1 PostList.setAdapter(adapter); //--2 adapter.notifyDataSetChanged(); // Toast.makeText(OpenChatRoom.this, msgPool.size()+"", Toast.LENGTH_SHORT).show(); } } }); } private void Load_Board_Info_from_DB(final OpenChatRoom.CallBack onCallBack) { StringRequest stringRequest = new StringRequest(Request.Method.POST, board_load_url, new Response.Listener<String>() { @Override public void onResponse(String response) { try { JSONArray jsonArray = new JSONArray(response); onCallBack.getJsonArray(jsonArray); } catch (JSONException e) { e.printStackTrace(); } } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError error) { Toast.makeText(Chat_Post.this, "Error", Toast.LENGTH_SHORT).show(); error.printStackTrace(); } }) { @Override protected Map<String, String> getParams() throws AuthFailureError { Map<String, String> params = new HashMap<String, String>(); return params; } }; MySingleton.getmInstance(Chat_Post.this).addToRequestQue(stringRequest); } }
419a36836c00cef4c0c637516910309b6ef58976
2766753b25759170db2323bf5b85b2cdec44cc12
/src/main/java/com/yodel/todoapp/yodel/AllToBuyActivity.java
c8eee839d4a291a150815bb8ad5b44d94203b8b5
[]
no_license
mesala01/Yodel
f16757d704ebeda28fffed7a7eddba9233afa66f
1a0026c636b92d2167894f470ef2627b48e01409
refs/heads/master
2016-09-06T17:37:54.842788
2015-03-28T01:12:30
2015-03-28T01:12:30
31,622,104
0
1
null
null
null
null
UTF-8
Java
false
false
124
java
package com.yodel.todoapp.yodel; /** * Created by NenoandLaura on 2/26/2015. */ public class AllToBuyActivity { }
42f24fd2402daf254ff63a2dc529669ab6d8b462
047fd75e9b617205254243389302667ae05e17a4
/src/main/java/com/joy/xxfy/informationaldxn/module/safe/web/req/SafeInspectionAddReq.java
92365a5f3bd0e19e2c027040c85a9f5eb35c67c6
[]
no_license
joyblack/informational-dxn
7dafaecf7b61cdb77e2dbc64bbba3c40016f3938
12b9460f85335dbb4095369a579a765e5e20ad0a
refs/heads/master
2022-07-28T09:00:18.839635
2019-09-13T04:48:46
2019-09-13T04:48:46
202,953,069
0
1
null
2022-06-21T01:41:30
2019-08-18T02:56:43
Java
UTF-8
Java
false
false
1,293
java
package com.joy.xxfy.informationaldxn.module.safe.web.req; import com.joy.xxfy.informationaldxn.module.common.web.req.BaseAddReq; import com.joy.xxfy.informationaldxn.module.safe.domain.enums.InspectType; import lombok.Data; import lombok.ToString; import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotNull; import java.util.Date; @Data @ToString(callSuper = true) public class SafeInspectionAddReq extends BaseAddReq { /** * 巡检日期 */ @NotNull(message = "巡检日期不能为空") private Date inspectTime; /** * 巡检的煤矿 */ @NotNull(message = "巡检煤矿信息不能为空") private Long inspectCompanyId; /** * 巡检的部门 */ @NotNull(message = "巡检部门信息不能为空") private Long inspectDepartmentId; /** * 巡检的类型 */ @NotNull(message = "巡检类型不能为空") private InspectType inspectType; /** * 巡检地点 */ @NotBlank(message = "巡检地点不能为空") private String inspectPlace; /** * 问题描述 */ @NotBlank(message = "问题描述不能为空") private String problemDescribes; /** * 整改人 */ private String rectificationPeople; }
d6ca06f6db9242f46f5a3ddad1b17d9d670fe5e6
b02c387612a7b64c283af06acba994c065d8effc
/src/main/java/com/codeactuator/samriddhi/domain/Relative.java
8a1dc506251494b2133a6d72b8f72aa91dbd2d67
[]
no_license
codeactuator/samriddhi-social
cb6ed09485f915d3b35c2b829c1aaa8d5ba2e0e7
b248fd64e2a3a72651acc05140a9f706e63800ca
refs/heads/master
2023-02-17T15:32:15.509003
2021-01-11T08:01:28
2021-01-11T08:01:28
293,199,451
0
0
null
null
null
null
UTF-8
Java
false
false
1,074
java
package com.codeactuator.samriddhi.domain; import javax.persistence.*; import java.io.Serializable; import java.util.Objects; @Entity public class Relative implements Serializable { @Id @GeneratedValue private Long id; @ManyToOne private Person person; @ManyToOne private Relation relation; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Person getPerson() { return person; } public void setPerson(Person person) { this.person = person; } public Relation getRelation() { return relation; } public void setRelation(Relation relation) { this.relation = relation; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; Relative relative = (Relative) o; return Objects.equals(id, relative.id); } @Override public int hashCode() { return Objects.hash(id); } }
69d9b0499fe484b485e0b6eabb0595e54cca5576
cdc4c07cc87c88ccca9585a40a3600ce92c5e147
/ssia-ch15-ex3-as/src/main/java/uk/me/uohiro/ssia/config/AuthServerConfig.java
8f2f22c3a169a437e39f7b2ea7fb0fca67221a90
[]
no_license
osakanaya/Spring-Security-in-Action
ec587d617092747bb7f347161d3115bc6b14c3f3
968af23e16d7469216777c0924c259f6bbea716d
refs/heads/main
2023-03-14T12:52:55.367766
2021-03-08T14:01:57
2021-03-08T14:01:57
345,674,746
2
1
null
null
null
null
UTF-8
Java
false
false
3,072
java
package uk.me.uohiro.ssia.config; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.io.ClassPathResource; import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.core.userdetails.UserDetailsService; import org.springframework.security.oauth2.config.annotation.configurers.ClientDetailsServiceConfigurer; import org.springframework.security.oauth2.config.annotation.web.configuration.AuthorizationServerConfigurerAdapter; import org.springframework.security.oauth2.config.annotation.web.configuration.EnableAuthorizationServer; import org.springframework.security.oauth2.config.annotation.web.configurers.AuthorizationServerEndpointsConfigurer; import org.springframework.security.oauth2.config.annotation.web.configurers.AuthorizationServerSecurityConfigurer; import org.springframework.security.oauth2.provider.token.TokenStore; import org.springframework.security.oauth2.provider.token.store.JwtAccessTokenConverter; import org.springframework.security.oauth2.provider.token.store.JwtTokenStore; import org.springframework.security.oauth2.provider.token.store.KeyStoreKeyFactory; @Configuration @EnableAuthorizationServer public class AuthServerConfig extends AuthorizationServerConfigurerAdapter { @Value("${password}") private String password; @Value("${privateKey}") private String privateKey; @Value("${alias}") private String alias; @Autowired private AuthenticationManager authenticationManager; @Autowired private UserDetailsService userDetailsService; @Override public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception { endpoints.authenticationManager(authenticationManager) .tokenStore(tokenStore()) .accessTokenConverter(jwtAccessTokenConverter()); endpoints.userDetailsService(userDetailsService); } @Bean public TokenStore tokenStore() { return new JwtTokenStore(jwtAccessTokenConverter()); } @Bean public JwtAccessTokenConverter jwtAccessTokenConverter() { JwtAccessTokenConverter converter = new JwtAccessTokenConverter(); KeyStoreKeyFactory keyStoreKeyFactory = new KeyStoreKeyFactory(new ClassPathResource(privateKey), password.toCharArray()); converter.setKeyPair(keyStoreKeyFactory.getKeyPair(alias)); return converter; } @Override public void configure(ClientDetailsServiceConfigurer clients) throws Exception { clients.inMemory() .withClient("client") .secret("secret") .authorizedGrantTypes("password", "refresh_token") .scopes("read") .and() .withClient("resourceserver") .secret("resourceserversecret"); } @Override public void configure(AuthorizationServerSecurityConfigurer security) throws Exception { security.tokenKeyAccess("isAuthenticated()"); } }
b6abaf6ce0e31629f21510cb04d3f99b6ad053ee
3f1883bcad99a2103080ce179c60d468dfcbcdd2
/app/src/main/java/activity/MessageListAdapter.java
efa7237ad8b5e26cec58a44b642f6e529564e752
[]
no_license
kunteshbh/IntMarks
a38e13ac66973df814857873c8ad0c42176ca95c
b0ae1fdd0e893749c269d4c731e46219ac24091f
refs/heads/master
2023-03-19T18:40:10.531033
2017-04-03T15:08:30
2017-04-03T15:08:30
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,190
java
package activity; import java.util.List; import android.annotation.SuppressLint; import android.app.Activity; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.TextView; import com.example.hp.intmarks.R; /** * Created by HP on 25/03/2017. */ public class MessageListAdapter extends BaseAdapter { private Context context; private List<Message> messagesItems; public MessageListAdapter(Context context, List<Message> navDrawerItems) { this.context = context; this.messagesItems = navDrawerItems; } @Override public int getCount() { return messagesItems.size(); } @Override public Object getItem(int position) { return messagesItems.get(position); } @Override public long getItemId(int position) { return position; } @SuppressLint("InflateParams") @Override public View getView(int position, View convertView, ViewGroup parent) { /** * The following list not implemented reusable list items as list items * are showing incorrect data Add the solution if you have one * */ Message m = messagesItems.get(position); LayoutInflater mInflater = (LayoutInflater) context .getSystemService(Activity.LAYOUT_INFLATER_SERVICE); // Identifying the message owner if (messagesItems.get(position).isSelf()) { // message belongs to you, so load the right aligned layout convertView = mInflater.inflate(R.layout.list_item_message_right, null); } else { // message belongs to other person, load the left aligned layout convertView = mInflater.inflate(R.layout.list_item_message_left, null); } TextView lblFrom = (TextView) convertView.findViewById(R.id.lblMsgFrom); TextView txtMsg = (TextView) convertView.findViewById(R.id.txtMsg); txtMsg.setText(m.getMessage()); lblFrom.setText(m.getFromName()); return convertView; } }
eddaefe54000a4884961925619aabbb33b1cd2bb
4e19a4963031b3a25e1e93cee71bbfb3f11c137a
/grammar/ALFABaseListener.java
7c3db08ce43ff14c3b176eaae48dd8be5fb36589
[]
no_license
bellaj/Antlr4_Cpp_RandomCoding
20d85c41538ea21d864451005b55bc245b636b5d
5ca95e376d10cb8b66685b21180b21d94b26115c
refs/heads/master
2020-03-27T20:35:45.872946
2018-09-02T00:32:21
2018-09-02T00:32:21
147,079,724
1
0
null
2018-09-02T11:38:20
2018-09-02T11:38:20
null
UTF-8
Java
false
false
8,507
java
// Generated from ALFA.g4 by ANTLR 4.7.1 import org.antlr.v4.runtime.ParserRuleContext; import org.antlr.v4.runtime.tree.ErrorNode; import org.antlr.v4.runtime.tree.TerminalNode; /** * This class provides an empty implementation of {@link ALFAListener}, * which can be extended to create a listener which only needs to handle a subset * of the available methods. */ public class ALFABaseListener implements ALFAListener { /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterTranslationunit(ALFAParser.TranslationunitContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitTranslationunit(ALFAParser.TranslationunitContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterDeclarationseq(ALFAParser.DeclarationseqContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitDeclarationseq(ALFAParser.DeclarationseqContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterNamespaceDefinition(ALFAParser.NamespaceDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitNamespaceDefinition(ALFAParser.NamespaceDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterPolicysetDefinition(ALFAParser.PolicysetDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitPolicysetDefinition(ALFAParser.PolicysetDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterPolicyDefinition(ALFAParser.PolicyDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitPolicyDefinition(ALFAParser.PolicyDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterRuleDefinition(ALFAParser.RuleDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitRuleDefinition(ALFAParser.RuleDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterOnBlock(ALFAParser.OnBlockContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitOnBlock(ALFAParser.OnBlockContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterOnPermitBlock(ALFAParser.OnPermitBlockContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitOnPermitBlock(ALFAParser.OnPermitBlockContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterOnDenyBlock(ALFAParser.OnDenyBlockContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitOnDenyBlock(ALFAParser.OnDenyBlockContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterTargetDefinition(ALFAParser.TargetDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitTargetDefinition(ALFAParser.TargetDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterClauseDefinition(ALFAParser.ClauseDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitClauseDefinition(ALFAParser.ClauseDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterBooleenExpression(ALFAParser.BooleenExpressionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitBooleenExpression(ALFAParser.BooleenExpressionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterConditionDefinition(ALFAParser.ConditionDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitConditionDefinition(ALFAParser.ConditionDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterCondition(ALFAParser.ConditionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitCondition(ALFAParser.ConditionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterFunctionType(ALFAParser.FunctionTypeContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitFunctionType(ALFAParser.FunctionTypeContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterFunctionName(ALFAParser.FunctionNameContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitFunctionName(ALFAParser.FunctionNameContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterImportDefinition(ALFAParser.ImportDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitImportDefinition(ALFAParser.ImportDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterPermitdeny(ALFAParser.PermitdenyContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitPermitdeny(ALFAParser.PermitdenyContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterCombiningAlgorithm(ALFAParser.CombiningAlgorithmContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitCombiningAlgorithm(ALFAParser.CombiningAlgorithmContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterAdviceDefinition(ALFAParser.AdviceDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitAdviceDefinition(ALFAParser.AdviceDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterObligationDefinition(ALFAParser.ObligationDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitObligationDefinition(ALFAParser.ObligationDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterAttributeDefinition(ALFAParser.AttributeDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitAttributeDefinition(ALFAParser.AttributeDefinitionContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void enterEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void exitEveryRule(ParserRuleContext ctx) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void visitTerminal(TerminalNode node) { } /** * {@inheritDoc} * * <p>The default implementation does nothing.</p> */ @Override public void visitErrorNode(ErrorNode node) { } }
0ebac40c05125afe5b57fb2b99bbfcc3861f897c
f9fcde801577e7b9d66b0df1334f718364fd7b45
/icepdf-6.0.0/icepdf/core/src/org/icepdf/core/pobjects/graphics/PatternColor.java
7dbccfb4d2eaa765ce63c8904e839782e2816d6d
[ "Apache-2.0" ]
permissive
numbnet/icepdf_FULL-versii
86d74147dc107e4f2239cd4ac312f15ebbeec473
b67e1ecb60aca88cacdca995d24263651cf8296b
refs/heads/master
2021-01-12T11:13:57.107091
2016-11-04T16:43:45
2016-11-04T16:43:45
72,880,329
1
1
null
null
null
null
UTF-8
Java
false
false
2,930
java
/* * Copyright 2006-2015 ICEsoft Technologies Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an "AS * IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.icepdf.core.pobjects.graphics; import org.icepdf.core.pobjects.Name; import org.icepdf.core.pobjects.Reference; import org.icepdf.core.util.Library; import java.awt.*; import java.util.HashMap; /** * <p>Pattern colour implements PColorSpace but is more of a parser placeholder * for dealing with 'cs' token which sets a pattern Colour space. The pattern * color space can either define a Pattern dictionary which contains valid * pattern object which are then specified by the 'scn' or 'SCN' tokens. The * pattern can also define straight up color space rgb, gray, N etc.</p> * <p>If the PatternColor contains dictionary of Pattern Object from the * pages resources then this object is created with the corrisponding * dictionary reference. </p> * * @since 1.0 */ public class PatternColor extends PColorSpace { public static final Name PATTERN_KEY = new Name("Pattern"); private Pattern pattern; private PColorSpace PColorSpace; /** * Creates a new instance of PatternColor. * * @param library document library. * @param entries dictionary entries. */ public PatternColor(Library library, HashMap entries) { super(library, entries); } /** * Not applicable to a Pattern Colour space. * * @return value of zero */ public int getNumComponents() { if (PColorSpace != null) { return PColorSpace.getNumComponents(); } return 0; } /** * Not applicable to a Pattern Colour space. * * @param f any value. * @return always returns null. */ public Color getColor(float[] f, boolean fillAndStroke) { if (PColorSpace != null) { return PColorSpace.getColor(f); } return Color.black; } public Pattern getPattern(Reference reference) { if (entries != null) { return (Pattern) entries.get(reference); } return null; } public PColorSpace getPColorSpace() { return PColorSpace; } public void setPColorSpace(PColorSpace PColorSpace) { this.PColorSpace = PColorSpace; } public Pattern getPattern() { return pattern; } public void setPattern(Pattern pattern) { this.pattern = pattern; } }
[ "patrick.corless@8668f098-c06c-11db-ba21-f49e70c34f74" ]
patrick.corless@8668f098-c06c-11db-ba21-f49e70c34f74
cc919a32252d2edcfd069509e8471860832371ff
edc48d177d3290b2c213d7e740110aab234c3f33
/GitSearcher/GitSearcher.Android/obj/Debug/81/android/src/com/companyname/gitsearcher/android/R.java
281cad031e6c432082958714789300b3c599b892
[]
no_license
ezis94/Git_User_Search
970be7af16943f5e0161f06b5c8b73f10f6efd71
3ab572ec621f7c6c06338788da67279cb25a7200
refs/heads/master
2020-04-30T19:12:45.876552
2019-03-25T16:16:59
2019-03-25T16:16:59
177,031,901
1
0
null
null
null
null
UTF-8
Java
false
false
698,965
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.companyname.gitsearcher.android; public final class R { public static final class anim { public static final int abc_fade_in=0x7f050000; public static final int abc_fade_out=0x7f050001; public static final int abc_grow_fade_in_from_bottom=0x7f050002; public static final int abc_popup_enter=0x7f050003; public static final int abc_popup_exit=0x7f050004; public static final int abc_shrink_fade_out_from_bottom=0x7f050005; public static final int abc_slide_in_bottom=0x7f050006; public static final int abc_slide_in_top=0x7f050007; public static final int abc_slide_out_bottom=0x7f050008; public static final int abc_slide_out_top=0x7f050009; public static final int design_bottom_sheet_slide_in=0x7f05000a; public static final int design_bottom_sheet_slide_out=0x7f05000b; public static final int design_snackbar_in=0x7f05000c; public static final int design_snackbar_out=0x7f05000d; public static final int tooltip_enter=0x7f05000e; public static final int tooltip_exit=0x7f05000f; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f060000; } public static final class attr { /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarDivider=0x7f01006b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f01006c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f010065; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> */ public static final int actionBarSize=0x7f01006a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f010067; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarStyle=0x7f010066; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f010061; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f010060; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010062; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTheme=0x7f010068; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f010069; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionButtonStyle=0x7f010086; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f010082; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionLayout=0x7f0100dd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f01006d; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int actionMenuTextColor=0x7f01006e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeBackground=0x7f010071; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f010070; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f010073; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f010075; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f010074; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f010079; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f010076; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f01007b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f010077; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f010078; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f010072; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeStyle=0x7f01006f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f01007a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f010063; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f010064; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionProviderClass=0x7f0100df; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionViewClass=0x7f0100de; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f01008e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f0100b3; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alertDialogCenterButtons=0x7f0100b4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogStyle=0x7f0100b2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogTheme=0x7f0100b5; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int allowStacking=0x7f0100cb; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alpha=0x7f0100cc; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static final int alphabeticModifiers=0x7f0100da; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowHeadLength=0x7f0100d3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowShaftLength=0x7f0100d4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f0100ba; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeMaxTextSize=0x7f010054; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeMinTextSize=0x7f010053; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoSizePresetSizes=0x7f010052; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeStepGranularity=0x7f010051; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>uniform</code></td><td>1</td><td></td></tr> </table> */ public static final int autoSizeTextType=0x7f010050; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int background=0x7f01002e; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f010030; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f01002f; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int backgroundTint=0x7f010116; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int backgroundTintMode=0x7f010117; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int barLength=0x7f0100d5; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_autoHide=0x7f010141; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_hideable=0x7f01011e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_overlapTop=0x7f01014a; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> </table> */ public static final int behavior_peekHeight=0x7f01011d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_skipCollapsed=0x7f01011f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int borderWidth=0x7f01013f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f01008b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetDialogTheme=0x7f010139; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetStyle=0x7f01013a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f010088; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f0100b8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f0100b9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f0100b7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarStyle=0x7f010087; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> */ public static final int buttonGravity=0x7f01010b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f010043; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyle=0x7f0100bb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f0100bc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int buttonTint=0x7f0100cd; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int buttonTintMode=0x7f0100ce; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardBackgroundColor=0x7f010017; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardCornerRadius=0x7f010018; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardElevation=0x7f010019; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardMaxElevation=0x7f01001a; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardPreventCornerOverlap=0x7f01001c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardUseCompatPadding=0x7f01001b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkboxStyle=0x7f0100bd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f0100be; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeIcon=0x7f0100ee; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeItemLayout=0x7f010040; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int collapseContentDescription=0x7f01010d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapseIcon=0x7f01010c; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int collapsedTitleGravity=0x7f01012c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapsedTitleTextAppearance=0x7f010126; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int color=0x7f0100cf; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorAccent=0x7f0100aa; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorBackgroundFloating=0x7f0100b1; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorButtonNormal=0x7f0100ae; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlActivated=0x7f0100ac; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlHighlight=0x7f0100ad; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlNormal=0x7f0100ab; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int colorError=0x7f0100ca; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=0x7f0100a8; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimaryDark=0x7f0100a9; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorSwitchThumbNormal=0x7f0100af; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int commitIcon=0x7f0100f3; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentDescription=0x7f0100e0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEnd=0x7f010039; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEndWithActions=0x7f01003d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetLeft=0x7f01003a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetRight=0x7f01003b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStart=0x7f010038; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStartWithNavigation=0x7f01003c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPadding=0x7f01001d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingBottom=0x7f010021; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingLeft=0x7f01001e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingRight=0x7f01001f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingTop=0x7f010020; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentScrim=0x7f010127; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int controlBackground=0x7f0100b0; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int counterEnabled=0x7f010160; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int counterMaxLength=0x7f010161; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterOverflowTextAppearance=0x7f010163; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterTextAppearance=0x7f010162; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int customNavigationLayout=0x7f010031; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int defaultQueryHint=0x7f0100ed; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dialogPreferredPadding=0x7f010080; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f01007f; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> */ public static final int displayOptions=0x7f010027; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int divider=0x7f01002d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerHorizontal=0x7f01008d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dividerPadding=0x7f0100d9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=0x7f01008c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int drawableSize=0x7f0100d1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f010022; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f01009f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dropdownListPreferredItemHeight=0x7f010083; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextBackground=0x7f010094; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int editTextColor=0x7f010093; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f0100bf; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=0x7f01003e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int errorEnabled=0x7f01015e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int errorTextAppearance=0x7f01015f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f010042; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expanded=0x7f010118; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int expandedTitleGravity=0x7f01012d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMargin=0x7f010120; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginBottom=0x7f010124; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginEnd=0x7f010123; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginStart=0x7f010121; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginTop=0x7f010122; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandedTitleTextAppearance=0x7f010125; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int externalRouteEnabledDrawable=0x7f010015; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> */ public static final int fabSize=0x7f01013d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fastScrollEnabled=0x7f010004; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollHorizontalThumbDrawable=0x7f010007; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollHorizontalTrackDrawable=0x7f010008; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollVerticalThumbDrawable=0x7f010005; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollVerticalTrackDrawable=0x7f010006; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int font=0x7f010171; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontFamily=0x7f010055; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontProviderAuthority=0x7f01016a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fontProviderCerts=0x7f01016d; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>blocking</code></td><td>0</td><td></td></tr> <tr><td><code>async</code></td><td>1</td><td></td></tr> </table> */ public static final int fontProviderFetchStrategy=0x7f01016e; /** <p>May be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>forever</code></td><td>-1</td><td></td></tr> </table> */ public static final int fontProviderFetchTimeout=0x7f01016f; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontProviderPackage=0x7f01016b; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontProviderQuery=0x7f01016c; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>italic</code></td><td>1</td><td></td></tr> </table> */ public static final int fontStyle=0x7f010170; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontWeight=0x7f010172; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int foregroundInsidePadding=0x7f010142; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int gapBetweenBars=0x7f0100d2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=0x7f0100ef; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int headerLayout=0x7f010148; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int height=0x7f010023; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hideOnContentScroll=0x7f010037; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hintAnimationEnabled=0x7f010164; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hintEnabled=0x7f01015d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int hintTextAppearance=0x7f01015c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f010085; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f010032; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int icon=0x7f01002b; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconTint=0x7f0100e2; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int iconTintMode=0x7f0100e3; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconifiedByDefault=0x7f0100eb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int imageButtonStyle=0x7f010095; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f010034; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int initialActivityCount=0x7f010041; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int insetForeground=0x7f010149; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int isLightTheme=0x7f010024; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemBackground=0x7f010146; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemIconTint=0x7f010144; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemPadding=0x7f010036; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemTextAppearance=0x7f010147; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemTextColor=0x7f010145; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int keylines=0x7f010131; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout=0x7f0100ea; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layoutManager=0x7f010000; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_anchor=0x7f010134; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_anchorGravity=0x7f010136; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_behavior=0x7f010133; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> */ public static final int layout_collapseMode=0x7f01012f; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_collapseParallaxMultiplier=0x7f010130; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> */ public static final int layout_dodgeInsetEdges=0x7f010138; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_insetEdge=0x7f010137; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_keyline=0x7f010135; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> */ public static final int layout_scrollFlags=0x7f01011b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_scrollInterpolator=0x7f01011c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f0100a7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f010081; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listItemLayout=0x7f010047; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listLayout=0x7f010044; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f0100c7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f0100a0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeight=0x7f01009a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightLarge=0x7f01009c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightSmall=0x7f01009b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingLeft=0x7f01009d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingRight=0x7f01009e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int logo=0x7f01002c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int logoDescription=0x7f010110; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxActionInlineWidth=0x7f01014b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxButtonHeight=0x7f01010a; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int measureWithLargestChild=0x7f0100d7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteAudioTrackDrawable=0x7f010009; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteButtonStyle=0x7f01000a; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int mediaRouteButtonTint=0x7f010016; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteCloseDrawable=0x7f01000b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteControlPanelThemeOverlay=0x7f01000c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteDefaultIconDrawable=0x7f01000d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRoutePauseDrawable=0x7f01000e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRoutePlayDrawable=0x7f01000f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteSpeakerGroupIconDrawable=0x7f010010; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteSpeakerIconDrawable=0x7f010011; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteStopDrawable=0x7f010012; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteTheme=0x7f010013; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteTvIconDrawable=0x7f010014; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int menu=0x7f010143; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f010045; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int navigationContentDescription=0x7f01010f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int navigationIcon=0x7f01010e; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> */ public static final int navigationMode=0x7f010026; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static final int numericModifiers=0x7f0100db; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int overlapAnchor=0x7f0100e6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingBottomNoButtons=0x7f0100e8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingEnd=0x7f010114; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingStart=0x7f010113; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingTopNoTitle=0x7f0100e9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelBackground=0x7f0100a4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f0100a6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int panelMenuListWidth=0x7f0100a5; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleContentDescription=0x7f010167; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int passwordToggleDrawable=0x7f010166; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleEnabled=0x7f010165; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleTint=0x7f010168; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int passwordToggleTintMode=0x7f010169; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupMenuStyle=0x7f010091; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupTheme=0x7f01003f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupWindowStyle=0x7f010092; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int preserveIconSpacing=0x7f0100e4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int pressedTranslationZ=0x7f01013e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarPadding=0x7f010035; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarStyle=0x7f010033; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int queryBackground=0x7f0100f5; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int queryHint=0x7f0100ec; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=0x7f0100c0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyle=0x7f0100c1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f0100c2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f0100c3; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int reverseLayout=0x7f010002; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int rippleColor=0x7f01013c; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int scrimAnimationDuration=0x7f01012b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int scrimVisibleHeightTrigger=0x7f01012a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchHintIcon=0x7f0100f1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchIcon=0x7f0100f0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchViewStyle=0x7f010099; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int seekBarStyle=0x7f0100c4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackground=0x7f010089; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f01008a; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> */ public static final int showAsAction=0x7f0100dc; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> */ public static final int showDividers=0x7f0100d8; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int showText=0x7f010101; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int showTitle=0x7f010048; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010046; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spanCount=0x7f010001; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spinBars=0x7f0100d0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f010084; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerStyle=0x7f0100c5; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int splitTrack=0x7f010100; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int srcCompat=0x7f010049; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int stackFromEnd=0x7f010003; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_above_anchor=0x7f0100e7; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_collapsed=0x7f010119; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_collapsible=0x7f01011a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int statusBarBackground=0x7f010132; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int statusBarScrim=0x7f010128; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subMenuArrow=0x7f0100e5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int submitBackground=0x7f0100f6; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitle=0x7f010028; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f010103; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitleTextColor=0x7f010112; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f01002a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f0100f4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchMinWidth=0x7f0100fe; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchPadding=0x7f0100ff; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchStyle=0x7f0100c6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=0x7f0100fd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabBackground=0x7f01014f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabContentStart=0x7f01014e; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> */ public static final int tabGravity=0x7f010151; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabIndicatorColor=0x7f01014c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabIndicatorHeight=0x7f01014d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMaxWidth=0x7f010153; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMinWidth=0x7f010152; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> */ public static final int tabMode=0x7f010150; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPadding=0x7f01015b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingBottom=0x7f01015a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingEnd=0x7f010159; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingStart=0x7f010157; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingTop=0x7f010158; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabSelectedTextColor=0x7f010156; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabTextAppearance=0x7f010154; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabTextColor=0x7f010155; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". */ public static final int textAllCaps=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f01007c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f0100a1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSecondary=0x7f0100a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0100a3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=0x7f01007e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f010097; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f010096; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f01007d; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorAlertDialogListItem=0x7f0100b6; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorError=0x7f01013b; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorSearchUrl=0x7f010098; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int theme=0x7f010115; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thickness=0x7f0100d6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTextPadding=0x7f0100fc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTint=0x7f0100f7; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int thumbTintMode=0x7f0100f8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tickMark=0x7f01004c; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tickMarkTint=0x7f01004d; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int tickMarkTintMode=0x7f01004e; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tint=0x7f01004a; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int tintMode=0x7f01004b; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int title=0x7f010025; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleEnabled=0x7f01012e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargin=0x7f010104; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginBottom=0x7f010108; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginEnd=0x7f010106; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginStart=0x7f010105; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginTop=0x7f010107; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargins=0x7f010109; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextAppearance=0x7f010102; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleTextColor=0x7f010111; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextStyle=0x7f010029; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarId=0x7f010129; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f010090; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarStyle=0x7f01008f; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int tooltipForegroundColor=0x7f0100c9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tooltipFrameBackground=0x7f0100c8; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tooltipText=0x7f0100e1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f0100f9; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int trackTint=0x7f0100fa; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int trackTintMode=0x7f0100fb; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int useCompatPadding=0x7f010140; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int voiceIcon=0x7f0100f2; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBar=0x7f010056; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBarOverlay=0x7f010058; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionModeOverlay=0x7f010059; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMajor=0x7f01005d; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMinor=0x7f01005b; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMajor=0x7f01005a; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMinor=0x7f01005c; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMajor=0x7f01005e; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMinor=0x7f01005f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowNoTitle=0x7f010057; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0e0000; public static final int abc_allow_stacked_button_bar=0x7f0e0001; public static final int abc_config_actionMenuItemAllCaps=0x7f0e0002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f0e0003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0e0004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0d004f; public static final int abc_background_cache_hint_selector_material_light=0x7f0d0050; public static final int abc_btn_colored_borderless_text_material=0x7f0d0051; public static final int abc_btn_colored_text_material=0x7f0d0052; public static final int abc_color_highlight_material=0x7f0d0053; public static final int abc_hint_foreground_material_dark=0x7f0d0054; public static final int abc_hint_foreground_material_light=0x7f0d0055; public static final int abc_input_method_navigation_guard=0x7f0d0004; public static final int abc_primary_text_disable_only_material_dark=0x7f0d0056; public static final int abc_primary_text_disable_only_material_light=0x7f0d0057; public static final int abc_primary_text_material_dark=0x7f0d0058; public static final int abc_primary_text_material_light=0x7f0d0059; public static final int abc_search_url_text=0x7f0d005a; public static final int abc_search_url_text_normal=0x7f0d0005; public static final int abc_search_url_text_pressed=0x7f0d0006; public static final int abc_search_url_text_selected=0x7f0d0007; public static final int abc_secondary_text_material_dark=0x7f0d005b; public static final int abc_secondary_text_material_light=0x7f0d005c; public static final int abc_tint_btn_checkable=0x7f0d005d; public static final int abc_tint_default=0x7f0d005e; public static final int abc_tint_edittext=0x7f0d005f; public static final int abc_tint_seek_thumb=0x7f0d0060; public static final int abc_tint_spinner=0x7f0d0061; public static final int abc_tint_switch_track=0x7f0d0062; public static final int accent_material_dark=0x7f0d0008; public static final int accent_material_light=0x7f0d0009; public static final int background_floating_material_dark=0x7f0d000a; public static final int background_floating_material_light=0x7f0d000b; public static final int background_material_dark=0x7f0d000c; public static final int background_material_light=0x7f0d000d; public static final int bright_foreground_disabled_material_dark=0x7f0d000e; public static final int bright_foreground_disabled_material_light=0x7f0d000f; public static final int bright_foreground_inverse_material_dark=0x7f0d0010; public static final int bright_foreground_inverse_material_light=0x7f0d0011; public static final int bright_foreground_material_dark=0x7f0d0012; public static final int bright_foreground_material_light=0x7f0d0013; public static final int button_material_dark=0x7f0d0014; public static final int button_material_light=0x7f0d0015; public static final int cardview_dark_background=0x7f0d0000; public static final int cardview_light_background=0x7f0d0001; public static final int cardview_shadow_end_color=0x7f0d0002; public static final int cardview_shadow_start_color=0x7f0d0003; public static final int colorAccent=0x7f0d004e; public static final int colorPrimary=0x7f0d004c; public static final int colorPrimaryDark=0x7f0d004d; public static final int design_bottom_navigation_shadow_color=0x7f0d0040; public static final int design_error=0x7f0d0063; public static final int design_fab_shadow_end_color=0x7f0d0041; public static final int design_fab_shadow_mid_color=0x7f0d0042; public static final int design_fab_shadow_start_color=0x7f0d0043; public static final int design_fab_stroke_end_inner_color=0x7f0d0044; public static final int design_fab_stroke_end_outer_color=0x7f0d0045; public static final int design_fab_stroke_top_inner_color=0x7f0d0046; public static final int design_fab_stroke_top_outer_color=0x7f0d0047; public static final int design_snackbar_background_color=0x7f0d0048; public static final int design_tint_password_toggle=0x7f0d0064; public static final int dim_foreground_disabled_material_dark=0x7f0d0016; public static final int dim_foreground_disabled_material_light=0x7f0d0017; public static final int dim_foreground_material_dark=0x7f0d0018; public static final int dim_foreground_material_light=0x7f0d0019; public static final int error_color_material=0x7f0d001a; public static final int foreground_material_dark=0x7f0d001b; public static final int foreground_material_light=0x7f0d001c; public static final int highlighted_text_material_dark=0x7f0d001d; public static final int highlighted_text_material_light=0x7f0d001e; public static final int launcher_background=0x7f0d004b; public static final int material_blue_grey_800=0x7f0d001f; public static final int material_blue_grey_900=0x7f0d0020; public static final int material_blue_grey_950=0x7f0d0021; public static final int material_deep_teal_200=0x7f0d0022; public static final int material_deep_teal_500=0x7f0d0023; public static final int material_grey_100=0x7f0d0024; public static final int material_grey_300=0x7f0d0025; public static final int material_grey_50=0x7f0d0026; public static final int material_grey_600=0x7f0d0027; public static final int material_grey_800=0x7f0d0028; public static final int material_grey_850=0x7f0d0029; public static final int material_grey_900=0x7f0d002a; public static final int notification_action_color_filter=0x7f0d0049; public static final int notification_icon_bg_color=0x7f0d004a; public static final int notification_material_background_media_default_color=0x7f0d003f; public static final int primary_dark_material_dark=0x7f0d002b; public static final int primary_dark_material_light=0x7f0d002c; public static final int primary_material_dark=0x7f0d002d; public static final int primary_material_light=0x7f0d002e; public static final int primary_text_default_material_dark=0x7f0d002f; public static final int primary_text_default_material_light=0x7f0d0030; public static final int primary_text_disabled_material_dark=0x7f0d0031; public static final int primary_text_disabled_material_light=0x7f0d0032; public static final int ripple_material_dark=0x7f0d0033; public static final int ripple_material_light=0x7f0d0034; public static final int secondary_text_default_material_dark=0x7f0d0035; public static final int secondary_text_default_material_light=0x7f0d0036; public static final int secondary_text_disabled_material_dark=0x7f0d0037; public static final int secondary_text_disabled_material_light=0x7f0d0038; public static final int switch_thumb_disabled_material_dark=0x7f0d0039; public static final int switch_thumb_disabled_material_light=0x7f0d003a; public static final int switch_thumb_material_dark=0x7f0d0065; public static final int switch_thumb_material_light=0x7f0d0066; public static final int switch_thumb_normal_material_dark=0x7f0d003b; public static final int switch_thumb_normal_material_light=0x7f0d003c; public static final int tooltip_background_dark=0x7f0d003d; public static final int tooltip_background_light=0x7f0d003e; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f08001b; public static final int abc_action_bar_content_inset_with_nav=0x7f08001c; public static final int abc_action_bar_default_height_material=0x7f080010; public static final int abc_action_bar_default_padding_end_material=0x7f08001d; public static final int abc_action_bar_default_padding_start_material=0x7f08001e; public static final int abc_action_bar_elevation_material=0x7f080020; public static final int abc_action_bar_icon_vertical_padding_material=0x7f080021; public static final int abc_action_bar_overflow_padding_end_material=0x7f080022; public static final int abc_action_bar_overflow_padding_start_material=0x7f080023; public static final int abc_action_bar_progress_bar_size=0x7f080011; public static final int abc_action_bar_stacked_max_height=0x7f080024; public static final int abc_action_bar_stacked_tab_max_width=0x7f080025; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080026; public static final int abc_action_bar_subtitle_top_margin_material=0x7f080027; public static final int abc_action_button_min_height_material=0x7f080028; public static final int abc_action_button_min_width_material=0x7f080029; public static final int abc_action_button_min_width_overflow_material=0x7f08002a; public static final int abc_alert_dialog_button_bar_height=0x7f08000f; public static final int abc_button_inset_horizontal_material=0x7f08002b; public static final int abc_button_inset_vertical_material=0x7f08002c; public static final int abc_button_padding_horizontal_material=0x7f08002d; public static final int abc_button_padding_vertical_material=0x7f08002e; public static final int abc_cascading_menus_min_smallest_width=0x7f08002f; public static final int abc_config_prefDialogWidth=0x7f080014; public static final int abc_control_corner_material=0x7f080030; public static final int abc_control_inset_material=0x7f080031; public static final int abc_control_padding_material=0x7f080032; public static final int abc_dialog_fixed_height_major=0x7f080015; public static final int abc_dialog_fixed_height_minor=0x7f080016; public static final int abc_dialog_fixed_width_major=0x7f080017; public static final int abc_dialog_fixed_width_minor=0x7f080018; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f080033; public static final int abc_dialog_list_padding_top_no_title=0x7f080034; public static final int abc_dialog_min_width_major=0x7f080019; public static final int abc_dialog_min_width_minor=0x7f08001a; public static final int abc_dialog_padding_material=0x7f080035; public static final int abc_dialog_padding_top_material=0x7f080036; public static final int abc_dialog_title_divider_material=0x7f080037; public static final int abc_disabled_alpha_material_dark=0x7f080038; public static final int abc_disabled_alpha_material_light=0x7f080039; public static final int abc_dropdownitem_icon_width=0x7f08003a; public static final int abc_dropdownitem_text_padding_left=0x7f08003b; public static final int abc_dropdownitem_text_padding_right=0x7f08003c; public static final int abc_edit_text_inset_bottom_material=0x7f08003d; public static final int abc_edit_text_inset_horizontal_material=0x7f08003e; public static final int abc_edit_text_inset_top_material=0x7f08003f; public static final int abc_floating_window_z=0x7f080040; public static final int abc_list_item_padding_horizontal_material=0x7f080041; public static final int abc_panel_menu_list_width=0x7f080042; public static final int abc_progress_bar_height_material=0x7f080043; public static final int abc_search_view_preferred_height=0x7f080044; public static final int abc_search_view_preferred_width=0x7f080045; public static final int abc_seekbar_track_background_height_material=0x7f080046; public static final int abc_seekbar_track_progress_height_material=0x7f080047; public static final int abc_select_dialog_padding_start_material=0x7f080048; public static final int abc_switch_padding=0x7f08001f; public static final int abc_text_size_body_1_material=0x7f080049; public static final int abc_text_size_body_2_material=0x7f08004a; public static final int abc_text_size_button_material=0x7f08004b; public static final int abc_text_size_caption_material=0x7f08004c; public static final int abc_text_size_display_1_material=0x7f08004d; public static final int abc_text_size_display_2_material=0x7f08004e; public static final int abc_text_size_display_3_material=0x7f08004f; public static final int abc_text_size_display_4_material=0x7f080050; public static final int abc_text_size_headline_material=0x7f080051; public static final int abc_text_size_large_material=0x7f080052; public static final int abc_text_size_medium_material=0x7f080053; public static final int abc_text_size_menu_header_material=0x7f080054; public static final int abc_text_size_menu_material=0x7f080055; public static final int abc_text_size_small_material=0x7f080056; public static final int abc_text_size_subhead_material=0x7f080057; public static final int abc_text_size_subtitle_material_toolbar=0x7f080012; public static final int abc_text_size_title_material=0x7f080058; public static final int abc_text_size_title_material_toolbar=0x7f080013; public static final int cardview_compat_inset_shadow=0x7f08000c; public static final int cardview_default_elevation=0x7f08000d; public static final int cardview_default_radius=0x7f08000e; public static final int compat_button_inset_horizontal_material=0x7f080094; public static final int compat_button_inset_vertical_material=0x7f080095; public static final int compat_button_padding_horizontal_material=0x7f080096; public static final int compat_button_padding_vertical_material=0x7f080097; public static final int compat_control_corner_material=0x7f080098; public static final int design_appbar_elevation=0x7f080072; public static final int design_bottom_navigation_active_item_max_width=0x7f080073; public static final int design_bottom_navigation_active_text_size=0x7f080074; public static final int design_bottom_navigation_elevation=0x7f080075; public static final int design_bottom_navigation_height=0x7f080076; public static final int design_bottom_navigation_item_max_width=0x7f080077; public static final int design_bottom_navigation_item_min_width=0x7f080078; public static final int design_bottom_navigation_margin=0x7f080079; public static final int design_bottom_navigation_shadow_height=0x7f08007a; public static final int design_bottom_navigation_text_size=0x7f08007b; public static final int design_bottom_sheet_modal_elevation=0x7f08007c; public static final int design_bottom_sheet_peek_height_min=0x7f08007d; public static final int design_fab_border_width=0x7f08007e; public static final int design_fab_elevation=0x7f08007f; public static final int design_fab_image_size=0x7f080080; public static final int design_fab_size_mini=0x7f080081; public static final int design_fab_size_normal=0x7f080082; public static final int design_fab_translation_z_pressed=0x7f080083; public static final int design_navigation_elevation=0x7f080084; public static final int design_navigation_icon_padding=0x7f080085; public static final int design_navigation_icon_size=0x7f080086; public static final int design_navigation_max_width=0x7f08006a; public static final int design_navigation_padding_bottom=0x7f080087; public static final int design_navigation_separator_vertical_padding=0x7f080088; public static final int design_snackbar_action_inline_max_width=0x7f08006b; public static final int design_snackbar_background_corner_radius=0x7f08006c; public static final int design_snackbar_elevation=0x7f080089; public static final int design_snackbar_extra_spacing_horizontal=0x7f08006d; public static final int design_snackbar_max_width=0x7f08006e; public static final int design_snackbar_min_width=0x7f08006f; public static final int design_snackbar_padding_horizontal=0x7f08008a; public static final int design_snackbar_padding_vertical=0x7f08008b; public static final int design_snackbar_padding_vertical_2lines=0x7f080070; public static final int design_snackbar_text_size=0x7f08008c; public static final int design_tab_max_width=0x7f08008d; public static final int design_tab_scrollable_min_width=0x7f080071; public static final int design_tab_text_size=0x7f08008e; public static final int design_tab_text_size_2line=0x7f08008f; public static final int disabled_alpha_material_dark=0x7f080059; public static final int disabled_alpha_material_light=0x7f08005a; public static final int fastscroll_default_thickness=0x7f080000; public static final int fastscroll_margin=0x7f080001; public static final int fastscroll_minimum_range=0x7f080002; public static final int highlight_alpha_material_colored=0x7f08005b; public static final int highlight_alpha_material_dark=0x7f08005c; public static final int highlight_alpha_material_light=0x7f08005d; public static final int hint_alpha_material_dark=0x7f08005e; public static final int hint_alpha_material_light=0x7f08005f; public static final int hint_pressed_alpha_material_dark=0x7f080060; public static final int hint_pressed_alpha_material_light=0x7f080061; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080003; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f080004; public static final int item_touch_helper_swipe_escape_velocity=0x7f080005; public static final int mr_controller_volume_group_list_item_height=0x7f080006; public static final int mr_controller_volume_group_list_item_icon_size=0x7f080007; public static final int mr_controller_volume_group_list_max_height=0x7f080008; public static final int mr_controller_volume_group_list_padding_top=0x7f08000b; public static final int mr_dialog_fixed_width_major=0x7f080009; public static final int mr_dialog_fixed_width_minor=0x7f08000a; public static final int notification_action_icon_size=0x7f080099; public static final int notification_action_text_size=0x7f08009a; public static final int notification_big_circle_margin=0x7f08009b; public static final int notification_content_margin_start=0x7f080091; public static final int notification_large_icon_height=0x7f08009c; public static final int notification_large_icon_width=0x7f08009d; public static final int notification_main_column_padding_top=0x7f080092; public static final int notification_media_narrow_margin=0x7f080093; public static final int notification_right_icon_size=0x7f08009e; public static final int notification_right_side_padding_top=0x7f080090; public static final int notification_small_icon_background_padding=0x7f08009f; public static final int notification_small_icon_size_as_large=0x7f0800a0; public static final int notification_subtext_size=0x7f0800a1; public static final int notification_top_pad=0x7f0800a2; public static final int notification_top_pad_large_text=0x7f0800a3; public static final int tooltip_corner_radius=0x7f080062; public static final int tooltip_horizontal_padding=0x7f080063; public static final int tooltip_margin=0x7f080064; public static final int tooltip_precise_anchor_extra_offset=0x7f080065; public static final int tooltip_precise_anchor_threshold=0x7f080066; public static final int tooltip_vertical_padding=0x7f080067; public static final int tooltip_y_offset_non_touch=0x7f080068; public static final int tooltip_y_offset_touch=0x7f080069; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; public static final int abc_action_bar_item_background_material=0x7f020001; public static final int abc_btn_borderless_material=0x7f020002; public static final int abc_btn_check_material=0x7f020003; public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; public static final int abc_btn_colored_material=0x7f020006; public static final int abc_btn_default_mtrl_shape=0x7f020007; public static final int abc_btn_radio_material=0x7f020008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; public static final int abc_cab_background_internal_bg=0x7f02000d; public static final int abc_cab_background_top_material=0x7f02000e; public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; public static final int abc_control_background_material=0x7f020010; public static final int abc_dialog_material_background=0x7f020011; public static final int abc_edit_text_material=0x7f020012; public static final int abc_ic_ab_back_material=0x7f020013; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; public static final int abc_ic_clear_material=0x7f020015; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; public static final int abc_ic_go_search_api_material=0x7f020017; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; public static final int abc_ic_menu_overflow_material=0x7f02001a; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; public static final int abc_ic_search_api_material=0x7f02001e; public static final int abc_ic_star_black_16dp=0x7f02001f; public static final int abc_ic_star_black_36dp=0x7f020020; public static final int abc_ic_star_black_48dp=0x7f020021; public static final int abc_ic_star_half_black_16dp=0x7f020022; public static final int abc_ic_star_half_black_36dp=0x7f020023; public static final int abc_ic_star_half_black_48dp=0x7f020024; public static final int abc_ic_voice_search_api_material=0x7f020025; public static final int abc_item_background_holo_dark=0x7f020026; public static final int abc_item_background_holo_light=0x7f020027; public static final int abc_list_divider_mtrl_alpha=0x7f020028; public static final int abc_list_focused_holo=0x7f020029; public static final int abc_list_longpressed_holo=0x7f02002a; public static final int abc_list_pressed_holo_dark=0x7f02002b; public static final int abc_list_pressed_holo_light=0x7f02002c; public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; public static final int abc_list_selector_disabled_holo_light=0x7f020030; public static final int abc_list_selector_holo_dark=0x7f020031; public static final int abc_list_selector_holo_light=0x7f020032; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; public static final int abc_popup_background_mtrl_mult=0x7f020034; public static final int abc_ratingbar_indicator_material=0x7f020035; public static final int abc_ratingbar_material=0x7f020036; public static final int abc_ratingbar_small_material=0x7f020037; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; public static final int abc_seekbar_thumb_material=0x7f02003d; public static final int abc_seekbar_tick_mark_material=0x7f02003e; public static final int abc_seekbar_track_material=0x7f02003f; public static final int abc_spinner_mtrl_am_alpha=0x7f020040; public static final int abc_spinner_textfield_background_material=0x7f020041; public static final int abc_switch_thumb_material=0x7f020042; public static final int abc_switch_track_mtrl_alpha=0x7f020043; public static final int abc_tab_indicator_material=0x7f020044; public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; public static final int abc_text_cursor_material=0x7f020046; public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; public static final int abc_textfield_search_material=0x7f020051; public static final int abc_vector_test=0x7f020052; public static final int avd_hide_password=0x7f020053; public static final int avd_hide_password_1=0x7f020133; public static final int avd_hide_password_2=0x7f020134; public static final int avd_hide_password_3=0x7f020135; public static final int avd_show_password=0x7f020054; public static final int avd_show_password_1=0x7f020136; public static final int avd_show_password_2=0x7f020137; public static final int avd_show_password_3=0x7f020138; public static final int background=0x7f020055; public static final int design_bottom_navigation_item_background=0x7f020056; public static final int design_fab_background=0x7f020057; public static final int design_ic_visibility=0x7f020058; public static final int design_ic_visibility_off=0x7f020059; public static final int design_password_eye=0x7f02005a; public static final int design_snackbar_background=0x7f02005b; public static final int empireicon=0x7f02005c; public static final int ic_audiotrack_dark=0x7f02005d; public static final int ic_audiotrack_light=0x7f02005e; public static final int ic_dialog_close_dark=0x7f02005f; public static final int ic_dialog_close_light=0x7f020060; public static final int ic_group_collapse_00=0x7f020061; public static final int ic_group_collapse_01=0x7f020062; public static final int ic_group_collapse_02=0x7f020063; public static final int ic_group_collapse_03=0x7f020064; public static final int ic_group_collapse_04=0x7f020065; public static final int ic_group_collapse_05=0x7f020066; public static final int ic_group_collapse_06=0x7f020067; public static final int ic_group_collapse_07=0x7f020068; public static final int ic_group_collapse_08=0x7f020069; public static final int ic_group_collapse_09=0x7f02006a; public static final int ic_group_collapse_10=0x7f02006b; public static final int ic_group_collapse_11=0x7f02006c; public static final int ic_group_collapse_12=0x7f02006d; public static final int ic_group_collapse_13=0x7f02006e; public static final int ic_group_collapse_14=0x7f02006f; public static final int ic_group_collapse_15=0x7f020070; public static final int ic_group_expand_00=0x7f020071; public static final int ic_group_expand_01=0x7f020072; public static final int ic_group_expand_02=0x7f020073; public static final int ic_group_expand_03=0x7f020074; public static final int ic_group_expand_04=0x7f020075; public static final int ic_group_expand_05=0x7f020076; public static final int ic_group_expand_06=0x7f020077; public static final int ic_group_expand_07=0x7f020078; public static final int ic_group_expand_08=0x7f020079; public static final int ic_group_expand_09=0x7f02007a; public static final int ic_group_expand_10=0x7f02007b; public static final int ic_group_expand_11=0x7f02007c; public static final int ic_group_expand_12=0x7f02007d; public static final int ic_group_expand_13=0x7f02007e; public static final int ic_group_expand_14=0x7f02007f; public static final int ic_group_expand_15=0x7f020080; public static final int ic_media_pause_dark=0x7f020081; public static final int ic_media_pause_light=0x7f020082; public static final int ic_media_play_dark=0x7f020083; public static final int ic_media_play_light=0x7f020084; public static final int ic_media_stop_dark=0x7f020085; public static final int ic_media_stop_light=0x7f020086; public static final int ic_mr_button_connected_00_dark=0x7f020087; public static final int ic_mr_button_connected_00_light=0x7f020088; public static final int ic_mr_button_connected_01_dark=0x7f020089; public static final int ic_mr_button_connected_01_light=0x7f02008a; public static final int ic_mr_button_connected_02_dark=0x7f02008b; public static final int ic_mr_button_connected_02_light=0x7f02008c; public static final int ic_mr_button_connected_03_dark=0x7f02008d; public static final int ic_mr_button_connected_03_light=0x7f02008e; public static final int ic_mr_button_connected_04_dark=0x7f02008f; public static final int ic_mr_button_connected_04_light=0x7f020090; public static final int ic_mr_button_connected_05_dark=0x7f020091; public static final int ic_mr_button_connected_05_light=0x7f020092; public static final int ic_mr_button_connected_06_dark=0x7f020093; public static final int ic_mr_button_connected_06_light=0x7f020094; public static final int ic_mr_button_connected_07_dark=0x7f020095; public static final int ic_mr_button_connected_07_light=0x7f020096; public static final int ic_mr_button_connected_08_dark=0x7f020097; public static final int ic_mr_button_connected_08_light=0x7f020098; public static final int ic_mr_button_connected_09_dark=0x7f020099; public static final int ic_mr_button_connected_09_light=0x7f02009a; public static final int ic_mr_button_connected_10_dark=0x7f02009b; public static final int ic_mr_button_connected_10_light=0x7f02009c; public static final int ic_mr_button_connected_11_dark=0x7f02009d; public static final int ic_mr_button_connected_11_light=0x7f02009e; public static final int ic_mr_button_connected_12_dark=0x7f02009f; public static final int ic_mr_button_connected_12_light=0x7f0200a0; public static final int ic_mr_button_connected_13_dark=0x7f0200a1; public static final int ic_mr_button_connected_13_light=0x7f0200a2; public static final int ic_mr_button_connected_14_dark=0x7f0200a3; public static final int ic_mr_button_connected_14_light=0x7f0200a4; public static final int ic_mr_button_connected_15_dark=0x7f0200a5; public static final int ic_mr_button_connected_15_light=0x7f0200a6; public static final int ic_mr_button_connected_16_dark=0x7f0200a7; public static final int ic_mr_button_connected_16_light=0x7f0200a8; public static final int ic_mr_button_connected_17_dark=0x7f0200a9; public static final int ic_mr_button_connected_17_light=0x7f0200aa; public static final int ic_mr_button_connected_18_dark=0x7f0200ab; public static final int ic_mr_button_connected_18_light=0x7f0200ac; public static final int ic_mr_button_connected_19_dark=0x7f0200ad; public static final int ic_mr_button_connected_19_light=0x7f0200ae; public static final int ic_mr_button_connected_20_dark=0x7f0200af; public static final int ic_mr_button_connected_20_light=0x7f0200b0; public static final int ic_mr_button_connected_21_dark=0x7f0200b1; public static final int ic_mr_button_connected_21_light=0x7f0200b2; public static final int ic_mr_button_connected_22_dark=0x7f0200b3; public static final int ic_mr_button_connected_22_light=0x7f0200b4; public static final int ic_mr_button_connected_23_dark=0x7f0200b5; public static final int ic_mr_button_connected_23_light=0x7f0200b6; public static final int ic_mr_button_connected_24_dark=0x7f0200b7; public static final int ic_mr_button_connected_24_light=0x7f0200b8; public static final int ic_mr_button_connected_25_dark=0x7f0200b9; public static final int ic_mr_button_connected_25_light=0x7f0200ba; public static final int ic_mr_button_connected_26_dark=0x7f0200bb; public static final int ic_mr_button_connected_26_light=0x7f0200bc; public static final int ic_mr_button_connected_27_dark=0x7f0200bd; public static final int ic_mr_button_connected_27_light=0x7f0200be; public static final int ic_mr_button_connected_28_dark=0x7f0200bf; public static final int ic_mr_button_connected_28_light=0x7f0200c0; public static final int ic_mr_button_connected_29_dark=0x7f0200c1; public static final int ic_mr_button_connected_29_light=0x7f0200c2; public static final int ic_mr_button_connected_30_dark=0x7f0200c3; public static final int ic_mr_button_connected_30_light=0x7f0200c4; public static final int ic_mr_button_connecting_00_dark=0x7f0200c5; public static final int ic_mr_button_connecting_00_light=0x7f0200c6; public static final int ic_mr_button_connecting_01_dark=0x7f0200c7; public static final int ic_mr_button_connecting_01_light=0x7f0200c8; public static final int ic_mr_button_connecting_02_dark=0x7f0200c9; public static final int ic_mr_button_connecting_02_light=0x7f0200ca; public static final int ic_mr_button_connecting_03_dark=0x7f0200cb; public static final int ic_mr_button_connecting_03_light=0x7f0200cc; public static final int ic_mr_button_connecting_04_dark=0x7f0200cd; public static final int ic_mr_button_connecting_04_light=0x7f0200ce; public static final int ic_mr_button_connecting_05_dark=0x7f0200cf; public static final int ic_mr_button_connecting_05_light=0x7f0200d0; public static final int ic_mr_button_connecting_06_dark=0x7f0200d1; public static final int ic_mr_button_connecting_06_light=0x7f0200d2; public static final int ic_mr_button_connecting_07_dark=0x7f0200d3; public static final int ic_mr_button_connecting_07_light=0x7f0200d4; public static final int ic_mr_button_connecting_08_dark=0x7f0200d5; public static final int ic_mr_button_connecting_08_light=0x7f0200d6; public static final int ic_mr_button_connecting_09_dark=0x7f0200d7; public static final int ic_mr_button_connecting_09_light=0x7f0200d8; public static final int ic_mr_button_connecting_10_dark=0x7f0200d9; public static final int ic_mr_button_connecting_10_light=0x7f0200da; public static final int ic_mr_button_connecting_11_dark=0x7f0200db; public static final int ic_mr_button_connecting_11_light=0x7f0200dc; public static final int ic_mr_button_connecting_12_dark=0x7f0200dd; public static final int ic_mr_button_connecting_12_light=0x7f0200de; public static final int ic_mr_button_connecting_13_dark=0x7f0200df; public static final int ic_mr_button_connecting_13_light=0x7f0200e0; public static final int ic_mr_button_connecting_14_dark=0x7f0200e1; public static final int ic_mr_button_connecting_14_light=0x7f0200e2; public static final int ic_mr_button_connecting_15_dark=0x7f0200e3; public static final int ic_mr_button_connecting_15_light=0x7f0200e4; public static final int ic_mr_button_connecting_16_dark=0x7f0200e5; public static final int ic_mr_button_connecting_16_light=0x7f0200e6; public static final int ic_mr_button_connecting_17_dark=0x7f0200e7; public static final int ic_mr_button_connecting_17_light=0x7f0200e8; public static final int ic_mr_button_connecting_18_dark=0x7f0200e9; public static final int ic_mr_button_connecting_18_light=0x7f0200ea; public static final int ic_mr_button_connecting_19_dark=0x7f0200eb; public static final int ic_mr_button_connecting_19_light=0x7f0200ec; public static final int ic_mr_button_connecting_20_dark=0x7f0200ed; public static final int ic_mr_button_connecting_20_light=0x7f0200ee; public static final int ic_mr_button_connecting_21_dark=0x7f0200ef; public static final int ic_mr_button_connecting_21_light=0x7f0200f0; public static final int ic_mr_button_connecting_22_dark=0x7f0200f1; public static final int ic_mr_button_connecting_22_light=0x7f0200f2; public static final int ic_mr_button_connecting_23_dark=0x7f0200f3; public static final int ic_mr_button_connecting_23_light=0x7f0200f4; public static final int ic_mr_button_connecting_24_dark=0x7f0200f5; public static final int ic_mr_button_connecting_24_light=0x7f0200f6; public static final int ic_mr_button_connecting_25_dark=0x7f0200f7; public static final int ic_mr_button_connecting_25_light=0x7f0200f8; public static final int ic_mr_button_connecting_26_dark=0x7f0200f9; public static final int ic_mr_button_connecting_26_light=0x7f0200fa; public static final int ic_mr_button_connecting_27_dark=0x7f0200fb; public static final int ic_mr_button_connecting_27_light=0x7f0200fc; public static final int ic_mr_button_connecting_28_dark=0x7f0200fd; public static final int ic_mr_button_connecting_28_light=0x7f0200fe; public static final int ic_mr_button_connecting_29_dark=0x7f0200ff; public static final int ic_mr_button_connecting_29_light=0x7f020100; public static final int ic_mr_button_connecting_30_dark=0x7f020101; public static final int ic_mr_button_connecting_30_light=0x7f020102; public static final int ic_mr_button_disabled_dark=0x7f020103; public static final int ic_mr_button_disabled_light=0x7f020104; public static final int ic_mr_button_disconnected_dark=0x7f020105; public static final int ic_mr_button_disconnected_light=0x7f020106; public static final int ic_mr_button_grey=0x7f020107; public static final int ic_vol_type_speaker_dark=0x7f020108; public static final int ic_vol_type_speaker_group_dark=0x7f020109; public static final int ic_vol_type_speaker_group_light=0x7f02010a; public static final int ic_vol_type_speaker_light=0x7f02010b; public static final int ic_vol_type_tv_dark=0x7f02010c; public static final int ic_vol_type_tv_light=0x7f02010d; public static final int icon=0x7f02010e; public static final int mr_button_connected_dark=0x7f02010f; public static final int mr_button_connected_light=0x7f020110; public static final int mr_button_connecting_dark=0x7f020111; public static final int mr_button_connecting_light=0x7f020112; public static final int mr_button_dark=0x7f020113; public static final int mr_button_light=0x7f020114; public static final int mr_dialog_close_dark=0x7f020115; public static final int mr_dialog_close_light=0x7f020116; public static final int mr_dialog_material_background_dark=0x7f020117; public static final int mr_dialog_material_background_light=0x7f020118; public static final int mr_group_collapse=0x7f020119; public static final int mr_group_expand=0x7f02011a; public static final int mr_media_pause_dark=0x7f02011b; public static final int mr_media_pause_light=0x7f02011c; public static final int mr_media_play_dark=0x7f02011d; public static final int mr_media_play_light=0x7f02011e; public static final int mr_media_stop_dark=0x7f02011f; public static final int mr_media_stop_light=0x7f020120; public static final int mr_vol_type_audiotrack_dark=0x7f020121; public static final int mr_vol_type_audiotrack_light=0x7f020122; public static final int navigation_empty_icon=0x7f020123; public static final int notification_action_background=0x7f020124; public static final int notification_bg=0x7f020125; public static final int notification_bg_low=0x7f020126; public static final int notification_bg_low_normal=0x7f020127; public static final int notification_bg_low_pressed=0x7f020128; public static final int notification_bg_normal=0x7f020129; public static final int notification_bg_normal_pressed=0x7f02012a; public static final int notification_icon_background=0x7f02012b; public static final int notification_template_icon_bg=0x7f020131; public static final int notification_template_icon_low_bg=0x7f020132; public static final int notification_tile_bg=0x7f02012c; public static final int notify_panel_notification_icon_bg=0x7f02012d; public static final int text1=0x7f02012e; public static final int tooltip_frame_dark=0x7f02012f; public static final int tooltip_frame_light=0x7f020130; } public static final class id { public static final int ALT=0x7f090032; public static final int CTRL=0x7f090033; public static final int FUNCTION=0x7f090034; public static final int META=0x7f090035; public static final int SHIFT=0x7f090036; public static final int SYM=0x7f090037; public static final int action0=0x7f0900b6; public static final int action_bar=0x7f09007c; public static final int action_bar_activity_content=0x7f090001; public static final int action_bar_container=0x7f09007b; public static final int action_bar_root=0x7f090077; public static final int action_bar_spinner=0x7f090002; public static final int action_bar_subtitle=0x7f09005b; public static final int action_bar_title=0x7f09005a; public static final int action_container=0x7f0900b3; public static final int action_context_bar=0x7f09007d; public static final int action_divider=0x7f0900ba; public static final int action_image=0x7f0900b4; public static final int action_menu_divider=0x7f090003; public static final int action_menu_presenter=0x7f090004; public static final int action_mode_bar=0x7f090079; public static final int action_mode_bar_stub=0x7f090078; public static final int action_mode_close_button=0x7f09005c; public static final int action_text=0x7f0900b5; public static final int actions=0x7f0900c3; public static final int activity_chooser_view_content=0x7f09005d; public static final int add=0x7f090027; public static final int alertTitle=0x7f090070; public static final int all=0x7f090052; public static final int always=0x7f090038; public static final int async=0x7f090056; public static final int auto=0x7f090044; public static final int beginning=0x7f09002f; public static final int blocking=0x7f090057; public static final int bottom=0x7f09003d; public static final int buttonPanel=0x7f090063; public static final int cancel_action=0x7f0900b7; public static final int center=0x7f090045; public static final int center_horizontal=0x7f090046; public static final int center_vertical=0x7f090047; public static final int checkbox=0x7f090073; public static final int chronometer=0x7f0900bf; public static final int clip_horizontal=0x7f09004e; public static final int clip_vertical=0x7f09004f; public static final int collapseActionView=0x7f090039; public static final int container=0x7f09008d; public static final int contentPanel=0x7f090066; public static final int coordinator=0x7f09008e; public static final int custom=0x7f09006d; public static final int customPanel=0x7f09006c; public static final int decor_content_parent=0x7f09007a; public static final int default_activity_button=0x7f090060; public static final int design_bottom_sheet=0x7f090090; public static final int design_menu_item_action_area=0x7f090097; public static final int design_menu_item_action_area_stub=0x7f090096; public static final int design_menu_item_text=0x7f090095; public static final int design_navigation_view=0x7f090094; public static final int disableHome=0x7f090020; public static final int edit_query=0x7f09007e; public static final int end=0x7f090030; public static final int end_padder=0x7f0900c5; public static final int enterAlways=0x7f09003f; public static final int enterAlwaysCollapsed=0x7f090040; public static final int exitUntilCollapsed=0x7f090041; public static final int expand_activities_button=0x7f09005e; public static final int expanded_menu=0x7f090072; public static final int fill=0x7f090050; public static final int fill_horizontal=0x7f090051; public static final int fill_vertical=0x7f090048; public static final int fixed=0x7f090054; public static final int forever=0x7f090058; public static final int ghost_view=0x7f09000a; public static final int home=0x7f090005; public static final int homeAsUp=0x7f090021; public static final int icon=0x7f090062; public static final int icon_group=0x7f0900c4; public static final int ifRoom=0x7f09003a; public static final int image=0x7f09005f; public static final int info=0x7f0900c0; public static final int italic=0x7f090059; public static final int item_touch_helper_previous_elevation=0x7f090000; public static final int largeLabel=0x7f09008c; public static final int left=0x7f090049; public static final int line1=0x7f090017; public static final int line3=0x7f090018; public static final int listMode=0x7f09001d; public static final int list_item=0x7f090061; public static final int masked=0x7f0900ca; public static final int media_actions=0x7f0900b9; public static final int message=0x7f0900c8; public static final int middle=0x7f090031; public static final int mini=0x7f090053; public static final int mr_art=0x7f0900a5; public static final int mr_chooser_list=0x7f09009a; public static final int mr_chooser_route_desc=0x7f09009d; public static final int mr_chooser_route_icon=0x7f09009b; public static final int mr_chooser_route_name=0x7f09009c; public static final int mr_chooser_title=0x7f090099; public static final int mr_close=0x7f0900a2; public static final int mr_control_divider=0x7f0900a8; public static final int mr_control_playback_ctrl=0x7f0900ae; public static final int mr_control_subtitle=0x7f0900b1; public static final int mr_control_title=0x7f0900b0; public static final int mr_control_title_container=0x7f0900af; public static final int mr_custom_control=0x7f0900a3; public static final int mr_default_control=0x7f0900a4; public static final int mr_dialog_area=0x7f09009f; public static final int mr_expandable_area=0x7f09009e; public static final int mr_group_expand_collapse=0x7f0900b2; public static final int mr_media_main_control=0x7f0900a6; public static final int mr_name=0x7f0900a1; public static final int mr_playback_control=0x7f0900a7; public static final int mr_title_bar=0x7f0900a0; public static final int mr_volume_control=0x7f0900a9; public static final int mr_volume_group_list=0x7f0900aa; public static final int mr_volume_item_icon=0x7f0900ac; public static final int mr_volume_slider=0x7f0900ad; public static final int multiply=0x7f090028; public static final int navigation_header_container=0x7f090093; public static final int never=0x7f09003b; public static final int none=0x7f090022; public static final int normal=0x7f09001e; public static final int notification_background=0x7f0900c2; public static final int notification_main_column=0x7f0900bc; public static final int notification_main_column_container=0x7f0900bb; public static final int parallax=0x7f09004c; public static final int parentPanel=0x7f090065; public static final int parent_matrix=0x7f09000b; public static final int pin=0x7f09004d; public static final int progress_circular=0x7f090006; public static final int progress_horizontal=0x7f090007; public static final int radio=0x7f090075; public static final int right=0x7f09004a; public static final int right_icon=0x7f0900c1; public static final int right_side=0x7f0900bd; public static final int save_image_matrix=0x7f09000c; public static final int save_non_transition_alpha=0x7f09000d; public static final int save_scale_type=0x7f09000e; public static final int screen=0x7f090029; public static final int scroll=0x7f090042; public static final int scrollIndicatorDown=0x7f09006b; public static final int scrollIndicatorUp=0x7f090067; public static final int scrollView=0x7f090068; public static final int scrollable=0x7f090055; public static final int search_badge=0x7f090080; public static final int search_bar=0x7f09007f; public static final int search_button=0x7f090081; public static final int search_close_btn=0x7f090086; public static final int search_edit_frame=0x7f090082; public static final int search_go_btn=0x7f090088; public static final int search_mag_icon=0x7f090083; public static final int search_plate=0x7f090084; public static final int search_src_text=0x7f090085; public static final int search_voice_btn=0x7f090089; public static final int select_dialog_listview=0x7f09008a; public static final int shortcut=0x7f090074; public static final int showCustom=0x7f090023; public static final int showHome=0x7f090024; public static final int showTitle=0x7f090025; public static final int sliding_tabs=0x7f0900c6; public static final int smallLabel=0x7f09008b; public static final int snackbar_action=0x7f090092; public static final int snackbar_text=0x7f090091; public static final int snap=0x7f090043; public static final int spacer=0x7f090064; public static final int split_action_bar=0x7f090008; public static final int src_atop=0x7f09002a; public static final int src_in=0x7f09002b; public static final int src_over=0x7f09002c; public static final int start=0x7f09004b; public static final int status_bar_latest_event_content=0x7f0900b8; public static final int submenuarrow=0x7f090076; public static final int submit_area=0x7f090087; public static final int tabMode=0x7f09001f; public static final int tag_transition_group=0x7f090019; public static final int text=0x7f09001a; public static final int text2=0x7f09001b; public static final int textSpacerNoButtons=0x7f09006a; public static final int textSpacerNoTitle=0x7f090069; public static final int text_input_password_toggle=0x7f090098; public static final int textinput_counter=0x7f090014; public static final int textinput_error=0x7f090015; public static final int time=0x7f0900be; public static final int title=0x7f09001c; public static final int titleDividerNoCustom=0x7f090071; public static final int title_template=0x7f09006f; public static final int toolbar=0x7f0900c7; public static final int top=0x7f09003e; public static final int topPanel=0x7f09006e; public static final int touch_outside=0x7f09008f; public static final int transition_current_scene=0x7f09000f; public static final int transition_layout_save=0x7f090010; public static final int transition_position=0x7f090011; public static final int transition_scene_layoutid_cache=0x7f090012; public static final int transition_transform=0x7f090013; public static final int uniform=0x7f09002d; public static final int up=0x7f090009; public static final int useLogo=0x7f090026; public static final int view_offset_helper=0x7f090016; public static final int visible=0x7f0900c9; public static final int volume_item_container=0x7f0900ab; public static final int withText=0x7f09003c; public static final int wrap_content=0x7f09002e; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0b0003; public static final int abc_config_activityShortDur=0x7f0b0004; public static final int app_bar_elevation_anim_duration=0x7f0b0008; public static final int bottom_sheet_slide_duration=0x7f0b0009; public static final int cancel_button_image_alpha=0x7f0b0005; public static final int config_tooltipAnimTime=0x7f0b0006; public static final int design_snackbar_text_max_lines=0x7f0b0007; public static final int hide_password_duration=0x7f0b000a; public static final int mr_controller_volume_group_list_animation_duration_ms=0x7f0b0000; public static final int mr_controller_volume_group_list_fade_in_duration_ms=0x7f0b0001; public static final int mr_controller_volume_group_list_fade_out_duration_ms=0x7f0b0002; public static final int show_password_duration=0x7f0b000b; public static final int status_bar_notification_info_maxnum=0x7f0b000c; } public static final class interpolator { public static final int mr_fast_out_slow_in=0x7f070000; public static final int mr_linear_out_slow_in=0x7f070001; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_menu_item_layout=0x7f040002; public static final int abc_action_menu_layout=0x7f040003; public static final int abc_action_mode_bar=0x7f040004; public static final int abc_action_mode_close_item_material=0x7f040005; public static final int abc_activity_chooser_view=0x7f040006; public static final int abc_activity_chooser_view_list_item=0x7f040007; public static final int abc_alert_dialog_button_bar_material=0x7f040008; public static final int abc_alert_dialog_material=0x7f040009; public static final int abc_alert_dialog_title_material=0x7f04000a; public static final int abc_dialog_title_material=0x7f04000b; public static final int abc_expanded_menu_layout=0x7f04000c; public static final int abc_list_menu_item_checkbox=0x7f04000d; public static final int abc_list_menu_item_icon=0x7f04000e; public static final int abc_list_menu_item_layout=0x7f04000f; public static final int abc_list_menu_item_radio=0x7f040010; public static final int abc_popup_menu_header_item_layout=0x7f040011; public static final int abc_popup_menu_item_layout=0x7f040012; public static final int abc_screen_content_include=0x7f040013; public static final int abc_screen_simple=0x7f040014; public static final int abc_screen_simple_overlay_action_mode=0x7f040015; public static final int abc_screen_toolbar=0x7f040016; public static final int abc_search_dropdown_item_icons_2line=0x7f040017; public static final int abc_search_view=0x7f040018; public static final int abc_select_dialog_material=0x7f040019; public static final int design_bottom_navigation_item=0x7f04001a; public static final int design_bottom_sheet_dialog=0x7f04001b; public static final int design_layout_snackbar=0x7f04001c; public static final int design_layout_snackbar_include=0x7f04001d; public static final int design_layout_tab_icon=0x7f04001e; public static final int design_layout_tab_text=0x7f04001f; public static final int design_menu_item_action_area=0x7f040020; public static final int design_navigation_item=0x7f040021; public static final int design_navigation_item_header=0x7f040022; public static final int design_navigation_item_separator=0x7f040023; public static final int design_navigation_item_subheader=0x7f040024; public static final int design_navigation_menu=0x7f040025; public static final int design_navigation_menu_item=0x7f040026; public static final int design_text_input_password_icon=0x7f040027; public static final int mr_chooser_dialog=0x7f040028; public static final int mr_chooser_list_item=0x7f040029; public static final int mr_controller_material_dialog_b=0x7f04002a; public static final int mr_controller_volume_item=0x7f04002b; public static final int mr_playback_control=0x7f04002c; public static final int mr_volume_control=0x7f04002d; public static final int notification_action=0x7f04002e; public static final int notification_action_tombstone=0x7f04002f; public static final int notification_media_action=0x7f040030; public static final int notification_media_cancel_action=0x7f040031; public static final int notification_template_big_media=0x7f040032; public static final int notification_template_big_media_custom=0x7f040033; public static final int notification_template_big_media_narrow=0x7f040034; public static final int notification_template_big_media_narrow_custom=0x7f040035; public static final int notification_template_custom_big=0x7f040036; public static final int notification_template_icon_group=0x7f040037; public static final int notification_template_lines_media=0x7f040038; public static final int notification_template_media=0x7f040039; public static final int notification_template_media_custom=0x7f04003a; public static final int notification_template_part_chronometer=0x7f04003b; public static final int notification_template_part_time=0x7f04003c; public static final int select_dialog_item_material=0x7f04003d; public static final int select_dialog_multichoice_material=0x7f04003e; public static final int select_dialog_singlechoice_material=0x7f04003f; public static final int support_simple_spinner_dropdown_item=0x7f040040; public static final int tabbar=0x7f040041; public static final int toolbar=0x7f040042; public static final int tooltip=0x7f040043; } public static final class mipmap { public static final int icon=0x7f030000; public static final int icon_round=0x7f030001; public static final int launcher_foreground=0x7f030002; } public static final class string { public static final int abc_action_bar_home_description=0x7f0a0015; public static final int abc_action_bar_up_description=0x7f0a0016; public static final int abc_action_menu_overflow_description=0x7f0a0017; public static final int abc_action_mode_done=0x7f0a0018; public static final int abc_activity_chooser_view_see_all=0x7f0a0019; public static final int abc_activitychooserview_choose_application=0x7f0a001a; public static final int abc_capital_off=0x7f0a001b; public static final int abc_capital_on=0x7f0a001c; public static final int abc_font_family_body_1_material=0x7f0a0027; public static final int abc_font_family_body_2_material=0x7f0a0028; public static final int abc_font_family_button_material=0x7f0a0029; public static final int abc_font_family_caption_material=0x7f0a002a; public static final int abc_font_family_display_1_material=0x7f0a002b; public static final int abc_font_family_display_2_material=0x7f0a002c; public static final int abc_font_family_display_3_material=0x7f0a002d; public static final int abc_font_family_display_4_material=0x7f0a002e; public static final int abc_font_family_headline_material=0x7f0a002f; public static final int abc_font_family_menu_material=0x7f0a0030; public static final int abc_font_family_subhead_material=0x7f0a0031; public static final int abc_font_family_title_material=0x7f0a0032; public static final int abc_search_hint=0x7f0a001d; public static final int abc_searchview_description_clear=0x7f0a001e; public static final int abc_searchview_description_query=0x7f0a001f; public static final int abc_searchview_description_search=0x7f0a0020; public static final int abc_searchview_description_submit=0x7f0a0021; public static final int abc_searchview_description_voice=0x7f0a0022; public static final int abc_shareactionprovider_share_with=0x7f0a0023; public static final int abc_shareactionprovider_share_with_application=0x7f0a0024; public static final int abc_toolbar_collapse_description=0x7f0a0025; public static final int appbar_scrolling_view_behavior=0x7f0a0033; public static final int bottom_sheet_behavior=0x7f0a0034; public static final int character_counter_pattern=0x7f0a0035; public static final int mr_button_content_description=0x7f0a0000; public static final int mr_cast_button_connected=0x7f0a0001; public static final int mr_cast_button_connecting=0x7f0a0002; public static final int mr_cast_button_disconnected=0x7f0a0003; public static final int mr_chooser_searching=0x7f0a0004; public static final int mr_chooser_title=0x7f0a0005; public static final int mr_controller_album_art=0x7f0a0006; public static final int mr_controller_casting_screen=0x7f0a0007; public static final int mr_controller_close_description=0x7f0a0008; public static final int mr_controller_collapse_group=0x7f0a0009; public static final int mr_controller_disconnect=0x7f0a000a; public static final int mr_controller_expand_group=0x7f0a000b; public static final int mr_controller_no_info_available=0x7f0a000c; public static final int mr_controller_no_media_selected=0x7f0a000d; public static final int mr_controller_pause=0x7f0a000e; public static final int mr_controller_play=0x7f0a000f; public static final int mr_controller_stop=0x7f0a0010; public static final int mr_controller_stop_casting=0x7f0a0011; public static final int mr_controller_volume_slider=0x7f0a0012; public static final int mr_system_route_name=0x7f0a0013; public static final int mr_user_route_category_name=0x7f0a0014; public static final int password_toggle_content_description=0x7f0a0036; public static final int path_password_eye=0x7f0a0037; public static final int path_password_eye_mask_strike_through=0x7f0a0038; public static final int path_password_eye_mask_visible=0x7f0a0039; public static final int path_password_strike_through=0x7f0a003a; public static final int search_menu_title=0x7f0a0026; public static final int status_bar_notification_info_overflow=0x7f0a003b; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0c00a4; public static final int AlertDialog_AppCompat_Light=0x7f0c00a5; public static final int Animation_AppCompat_Dialog=0x7f0c00a6; public static final int Animation_AppCompat_DropDownUp=0x7f0c00a7; public static final int Animation_AppCompat_Tooltip=0x7f0c00a8; public static final int Animation_Design_BottomSheetDialog=0x7f0c016e; public static final int AppCompatDialogStyle=0x7f0c0191; public static final int Base_AlertDialog_AppCompat=0x7f0c00a9; public static final int Base_AlertDialog_AppCompat_Light=0x7f0c00aa; public static final int Base_Animation_AppCompat_Dialog=0x7f0c00ab; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0c00ac; public static final int Base_Animation_AppCompat_Tooltip=0x7f0c00ad; public static final int Base_CardView=0x7f0c000c; public static final int Base_DialogWindowTitle_AppCompat=0x7f0c00ae; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0c00af; public static final int Base_TextAppearance_AppCompat=0x7f0c0048; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0c0049; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0c004a; public static final int Base_TextAppearance_AppCompat_Button=0x7f0c0036; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0c004b; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0c004c; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0c004d; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0c004e; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0c004f; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0c0050; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0c001a; public static final int Base_TextAppearance_AppCompat_Large=0x7f0c0051; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c001b; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c0052; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c0053; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0c0054; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c001c; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0c0055; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0c00b0; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0056; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c0057; public static final int Base_TextAppearance_AppCompat_Small=0x7f0c0058; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c001d; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0c0059; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c001e; public static final int Base_TextAppearance_AppCompat_Title=0x7f0c005a; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c001f; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0c00b1; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c0095; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c005b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c005c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c005d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c005e; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c005f; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c0060; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0c0061; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c009c; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c009d; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c0096; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00b2; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0062; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0063; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0064; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c0065; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0066; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c00b3; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0067; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0068; public static final int Base_Theme_AppCompat=0x7f0c0069; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0c00b4; public static final int Base_Theme_AppCompat_Dialog=0x7f0c0020; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0c0021; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c00b5; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0c0022; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c0010; public static final int Base_Theme_AppCompat_Light=0x7f0c006a; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c00b6; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0c0023; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0c0024; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c00b7; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0025; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0011; public static final int Base_ThemeOverlay_AppCompat=0x7f0c00b8; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c00b9; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0c00ba; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c00bb; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0c0026; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0027; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0c00bc; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0c0028; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0c0029; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0c002a; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0c0032; public static final int Base_V12_Widget_AppCompat_EditText=0x7f0c0033; public static final int Base_V14_Widget_Design_AppBarLayout=0x7f0c016f; public static final int Base_V21_Theme_AppCompat=0x7f0c006b; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0c006c; public static final int Base_V21_Theme_AppCompat_Light=0x7f0c006d; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c006e; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0c006f; public static final int Base_V21_Widget_Design_AppBarLayout=0x7f0c016b; public static final int Base_V22_Theme_AppCompat=0x7f0c0093; public static final int Base_V22_Theme_AppCompat_Light=0x7f0c0094; public static final int Base_V23_Theme_AppCompat=0x7f0c0097; public static final int Base_V23_Theme_AppCompat_Light=0x7f0c0098; public static final int Base_V26_Theme_AppCompat=0x7f0c00a0; public static final int Base_V26_Theme_AppCompat_Light=0x7f0c00a1; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0c00a2; public static final int Base_V26_Widget_Design_AppBarLayout=0x7f0c016d; public static final int Base_V7_Theme_AppCompat=0x7f0c00bd; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0c00be; public static final int Base_V7_Theme_AppCompat_Light=0x7f0c00bf; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0c00c0; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0c00c1; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0c00c2; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0c00c3; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0c00c4; public static final int Base_Widget_AppCompat_ActionBar=0x7f0c00c5; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c00c6; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c00c7; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c0070; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c0071; public static final int Base_Widget_AppCompat_ActionButton=0x7f0c0072; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c0073; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c0074; public static final int Base_Widget_AppCompat_ActionMode=0x7f0c00c8; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0c00c9; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0034; public static final int Base_Widget_AppCompat_Button=0x7f0c0075; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0c0076; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0c0077; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c00ca; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0c0099; public static final int Base_Widget_AppCompat_Button_Small=0x7f0c0078; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0c0079; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c00cb; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0c007a; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0c007b; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c00cc; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c000f; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c00cd; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c007c; public static final int Base_Widget_AppCompat_EditText=0x7f0c0035; public static final int Base_Widget_AppCompat_ImageButton=0x7f0c007d; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0c00ce; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c00cf; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c00d0; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c007e; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c007f; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0080; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c0081; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0082; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0c00d1; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0c0083; public static final int Base_Widget_AppCompat_ListView=0x7f0c0084; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0c0085; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0c0086; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0c0087; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0088; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0c00d2; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0c002b; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c002c; public static final int Base_Widget_AppCompat_RatingBar=0x7f0c0089; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0c009a; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0c009b; public static final int Base_Widget_AppCompat_SearchView=0x7f0c00d3; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0c00d4; public static final int Base_Widget_AppCompat_SeekBar=0x7f0c008a; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0c00d5; public static final int Base_Widget_AppCompat_Spinner=0x7f0c008b; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c0012; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c008c; public static final int Base_Widget_AppCompat_Toolbar=0x7f0c00a3; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c008d; public static final int Base_Widget_Design_AppBarLayout=0x7f0c016c; public static final int Base_Widget_Design_TabLayout=0x7f0c0170; public static final int CardView=0x7f0c000b; public static final int CardView_Dark=0x7f0c000d; public static final int CardView_Light=0x7f0c000e; public static final int MainTheme=0x7f0c018f; /** Base theme applied no matter what API */ public static final int MainTheme_Base=0x7f0c0190; public static final int Platform_AppCompat=0x7f0c002d; public static final int Platform_AppCompat_Light=0x7f0c002e; public static final int Platform_ThemeOverlay_AppCompat=0x7f0c008e; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0c008f; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0c0090; public static final int Platform_V11_AppCompat=0x7f0c002f; public static final int Platform_V11_AppCompat_Light=0x7f0c0030; public static final int Platform_V14_AppCompat=0x7f0c0037; public static final int Platform_V14_AppCompat_Light=0x7f0c0038; public static final int Platform_V21_AppCompat=0x7f0c0091; public static final int Platform_V21_AppCompat_Light=0x7f0c0092; public static final int Platform_V25_AppCompat=0x7f0c009e; public static final int Platform_V25_AppCompat_Light=0x7f0c009f; public static final int Platform_Widget_AppCompat_Spinner=0x7f0c0031; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0c003a; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c003b; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0c003c; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c003d; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c003e; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c003f; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c0040; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c0041; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c0042; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c0043; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c0044; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c0045; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0c0046; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c0047; public static final int TextAppearance_AppCompat=0x7f0c00d6; public static final int TextAppearance_AppCompat_Body1=0x7f0c00d7; public static final int TextAppearance_AppCompat_Body2=0x7f0c00d8; public static final int TextAppearance_AppCompat_Button=0x7f0c00d9; public static final int TextAppearance_AppCompat_Caption=0x7f0c00da; public static final int TextAppearance_AppCompat_Display1=0x7f0c00db; public static final int TextAppearance_AppCompat_Display2=0x7f0c00dc; public static final int TextAppearance_AppCompat_Display3=0x7f0c00dd; public static final int TextAppearance_AppCompat_Display4=0x7f0c00de; public static final int TextAppearance_AppCompat_Headline=0x7f0c00df; public static final int TextAppearance_AppCompat_Inverse=0x7f0c00e0; public static final int TextAppearance_AppCompat_Large=0x7f0c00e1; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0c00e2; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c00e3; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c00e4; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c00e5; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c00e6; public static final int TextAppearance_AppCompat_Medium=0x7f0c00e7; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0c00e8; public static final int TextAppearance_AppCompat_Menu=0x7f0c00e9; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c00ea; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0c00eb; public static final int TextAppearance_AppCompat_Small=0x7f0c00ec; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0c00ed; public static final int TextAppearance_AppCompat_Subhead=0x7f0c00ee; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00ef; public static final int TextAppearance_AppCompat_Title=0x7f0c00f0; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0c00f1; public static final int TextAppearance_AppCompat_Tooltip=0x7f0c0039; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c00f2; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c00f3; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c00f4; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c00f5; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c00f6; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c00f7; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c00f8; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c00f9; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c00fa; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0c00fb; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c00fc; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c00fd; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c00fe; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00ff; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0100; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0101; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0102; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0c0103; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0104; public static final int TextAppearance_Compat_Notification=0x7f0c0188; public static final int TextAppearance_Compat_Notification_Info=0x7f0c0189; public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0c0165; public static final int TextAppearance_Compat_Notification_Line2=0x7f0c018e; public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0c0169; public static final int TextAppearance_Compat_Notification_Media=0x7f0c0166; public static final int TextAppearance_Compat_Notification_Time=0x7f0c018a; public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0c0167; public static final int TextAppearance_Compat_Notification_Title=0x7f0c018b; public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0c0168; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0c0171; public static final int TextAppearance_Design_Counter=0x7f0c0172; public static final int TextAppearance_Design_Counter_Overflow=0x7f0c0173; public static final int TextAppearance_Design_Error=0x7f0c0174; public static final int TextAppearance_Design_Hint=0x7f0c0175; public static final int TextAppearance_Design_Snackbar_Message=0x7f0c0176; public static final int TextAppearance_Design_Tab=0x7f0c0177; public static final int TextAppearance_MediaRouter_PrimaryText=0x7f0c0000; public static final int TextAppearance_MediaRouter_SecondaryText=0x7f0c0001; public static final int TextAppearance_MediaRouter_Title=0x7f0c0002; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c0105; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0106; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0107; public static final int Theme_AppCompat=0x7f0c0108; public static final int Theme_AppCompat_CompactMenu=0x7f0c0109; public static final int Theme_AppCompat_DayNight=0x7f0c0013; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0c0014; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0c0015; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0c0016; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0c0017; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0c0018; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0c0019; public static final int Theme_AppCompat_Dialog=0x7f0c010a; public static final int Theme_AppCompat_Dialog_Alert=0x7f0c010b; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0c010c; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0c010d; public static final int Theme_AppCompat_Light=0x7f0c010e; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0c010f; public static final int Theme_AppCompat_Light_Dialog=0x7f0c0110; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0c0111; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0112; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0113; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0c0114; public static final int Theme_AppCompat_NoActionBar=0x7f0c0115; public static final int Theme_Design=0x7f0c0178; public static final int Theme_Design_BottomSheetDialog=0x7f0c0179; public static final int Theme_Design_Light=0x7f0c017a; public static final int Theme_Design_Light_BottomSheetDialog=0x7f0c017b; public static final int Theme_Design_Light_NoActionBar=0x7f0c017c; public static final int Theme_Design_NoActionBar=0x7f0c017d; public static final int Theme_MediaRouter=0x7f0c0003; public static final int Theme_MediaRouter_Light=0x7f0c0004; public static final int Theme_MediaRouter_Light_DarkControlPanel=0x7f0c0005; public static final int Theme_MediaRouter_LightControlPanel=0x7f0c0006; public static final int ThemeOverlay_AppCompat=0x7f0c0116; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0c0117; public static final int ThemeOverlay_AppCompat_Dark=0x7f0c0118; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c0119; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0c011a; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c011b; public static final int ThemeOverlay_AppCompat_Light=0x7f0c011c; public static final int ThemeOverlay_MediaRouter_Dark=0x7f0c0007; public static final int ThemeOverlay_MediaRouter_Light=0x7f0c0008; public static final int Widget_AppCompat_ActionBar=0x7f0c011d; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0c011e; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0c011f; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0c0120; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0c0121; public static final int Widget_AppCompat_ActionButton=0x7f0c0122; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0c0123; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0c0124; public static final int Widget_AppCompat_ActionMode=0x7f0c0125; public static final int Widget_AppCompat_ActivityChooserView=0x7f0c0126; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0c0127; public static final int Widget_AppCompat_Button=0x7f0c0128; public static final int Widget_AppCompat_Button_Borderless=0x7f0c0129; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0c012a; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c012b; public static final int Widget_AppCompat_Button_Colored=0x7f0c012c; public static final int Widget_AppCompat_Button_Small=0x7f0c012d; public static final int Widget_AppCompat_ButtonBar=0x7f0c012e; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c012f; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0c0130; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0c0131; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0c0132; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0c0133; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0c0134; public static final int Widget_AppCompat_EditText=0x7f0c0135; public static final int Widget_AppCompat_ImageButton=0x7f0c0136; public static final int Widget_AppCompat_Light_ActionBar=0x7f0c0137; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0138; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c0139; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c013a; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c013b; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c013c; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c013d; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c013e; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c013f; public static final int Widget_AppCompat_Light_ActionButton=0x7f0c0140; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c0141; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c0142; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c0143; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0c0144; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c0145; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c0146; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0c0147; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0c0148; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0c0149; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c014a; public static final int Widget_AppCompat_Light_SearchView=0x7f0c014b; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c014c; public static final int Widget_AppCompat_ListMenuView=0x7f0c014d; public static final int Widget_AppCompat_ListPopupWindow=0x7f0c014e; public static final int Widget_AppCompat_ListView=0x7f0c014f; public static final int Widget_AppCompat_ListView_DropDown=0x7f0c0150; public static final int Widget_AppCompat_ListView_Menu=0x7f0c0151; public static final int Widget_AppCompat_PopupMenu=0x7f0c0152; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0c0153; public static final int Widget_AppCompat_PopupWindow=0x7f0c0154; public static final int Widget_AppCompat_ProgressBar=0x7f0c0155; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0156; public static final int Widget_AppCompat_RatingBar=0x7f0c0157; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0c0158; public static final int Widget_AppCompat_RatingBar_Small=0x7f0c0159; public static final int Widget_AppCompat_SearchView=0x7f0c015a; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0c015b; public static final int Widget_AppCompat_SeekBar=0x7f0c015c; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0c015d; public static final int Widget_AppCompat_Spinner=0x7f0c015e; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0c015f; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c0160; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0c0161; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0c0162; public static final int Widget_AppCompat_Toolbar=0x7f0c0163; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c0164; public static final int Widget_Compat_NotificationActionContainer=0x7f0c018c; public static final int Widget_Compat_NotificationActionText=0x7f0c018d; public static final int Widget_Design_AppBarLayout=0x7f0c017e; public static final int Widget_Design_BottomNavigationView=0x7f0c017f; public static final int Widget_Design_BottomSheet_Modal=0x7f0c0180; public static final int Widget_Design_CollapsingToolbar=0x7f0c0181; public static final int Widget_Design_CoordinatorLayout=0x7f0c0182; public static final int Widget_Design_FloatingActionButton=0x7f0c0183; public static final int Widget_Design_NavigationView=0x7f0c0184; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0c0185; public static final int Widget_Design_Snackbar=0x7f0c0186; public static final int Widget_Design_TabLayout=0x7f0c016a; public static final int Widget_Design_TextInputLayout=0x7f0c0187; public static final int Widget_MediaRouter_Light_MediaRouteButton=0x7f0c0009; public static final int Widget_MediaRouter_MediaRouteButton=0x7f0c000a; } public static final class styleable { /** Attributes that can be used with a ActionBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBar_background com.companyname.GitSearcher.Android:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.companyname.GitSearcher.Android:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.companyname.GitSearcher.Android:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.companyname.GitSearcher.Android:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.companyname.GitSearcher.Android:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.companyname.GitSearcher.Android:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.companyname.GitSearcher.Android:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.companyname.GitSearcher.Android:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.companyname.GitSearcher.Android:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.companyname.GitSearcher.Android:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.companyname.GitSearcher.Android:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.companyname.GitSearcher.Android:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.companyname.GitSearcher.Android:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.companyname.GitSearcher.Android:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.companyname.GitSearcher.Android:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.companyname.GitSearcher.Android:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.companyname.GitSearcher.Android:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.companyname.GitSearcher.Android:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.companyname.GitSearcher.Android:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.companyname.GitSearcher.Android:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.companyname.GitSearcher.Android:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.companyname.GitSearcher.Android:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.companyname.GitSearcher.Android:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.companyname.GitSearcher.Android:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.companyname.GitSearcher.Android:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.companyname.GitSearcher.Android:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.companyname.GitSearcher.Android:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.companyname.GitSearcher.Android:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.companyname.GitSearcher.Android:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionBar_background @see #ActionBar_backgroundSplit @see #ActionBar_backgroundStacked @see #ActionBar_contentInsetEnd @see #ActionBar_contentInsetEndWithActions @see #ActionBar_contentInsetLeft @see #ActionBar_contentInsetRight @see #ActionBar_contentInsetStart @see #ActionBar_contentInsetStartWithNavigation @see #ActionBar_customNavigationLayout @see #ActionBar_displayOptions @see #ActionBar_divider @see #ActionBar_elevation @see #ActionBar_height @see #ActionBar_hideOnContentScroll @see #ActionBar_homeAsUpIndicator @see #ActionBar_homeLayout @see #ActionBar_icon @see #ActionBar_indeterminateProgressStyle @see #ActionBar_itemPadding @see #ActionBar_logo @see #ActionBar_navigationMode @see #ActionBar_popupTheme @see #ActionBar_progressBarPadding @see #ActionBar_progressBarStyle @see #ActionBar_subtitle @see #ActionBar_subtitleTextStyle @see #ActionBar_title @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { 0x7f010023, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010085 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#background} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#backgroundStacked} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetEnd} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetLeft} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetRight} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetStart} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#customNavigationLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#displayOptions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#divider} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#elevation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:elevation */ public static final int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#height} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#hideOnContentScroll} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#homeLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#icon} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#indeterminateProgressStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#itemPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#logo} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#navigationMode} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#popupTheme} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:popupTheme */ public static final int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#progressBarPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#progressBarStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#subtitle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#title} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:titleTextStyle */ public static final int ActionBar_titleTextStyle = 5; /** Attributes that can be used with a ActionBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> </table> @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout = { 0x010100b3 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity = 0; /** Attributes that can be used with a ActionMenuItemView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> </table> @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView = { 0x0101013f }; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ActionMenuItemView} array. @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth = 0; /** Attributes that can be used with a ActionMenuView. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMode_background com.companyname.GitSearcher.Android:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.companyname.GitSearcher.Android:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.companyname.GitSearcher.Android:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.companyname.GitSearcher.Android:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.companyname.GitSearcher.Android:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.companyname.GitSearcher.Android:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionMode_background @see #ActionMode_backgroundSplit @see #ActionMode_closeItemLayout @see #ActionMode_height @see #ActionMode_subtitleTextStyle @see #ActionMode_titleTextStyle */ public static final int[] ActionMode = { 0x7f010023, 0x7f010029, 0x7f01002a, 0x7f01002e, 0x7f010030, 0x7f010040 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#background} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionMode} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#closeItemLayout} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#height} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:titleTextStyle */ public static final int ActionMode_titleTextStyle = 1; /** Attributes that can be used with a ActivityChooserView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.companyname.GitSearcher.Android:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.companyname.GitSearcher.Android:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f010041, 0x7f010042 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#expandActivityOverflowButtonDrawable} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#initialActivityCount} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a AlertDialog. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.companyname.GitSearcher.Android:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.companyname.GitSearcher.Android:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.companyname.GitSearcher.Android:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.companyname.GitSearcher.Android:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_showTitle com.companyname.GitSearcher.Android:showTitle}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.companyname.GitSearcher.Android:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_showTitle @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #AlertDialog} array. @attr name android:layout */ public static final int AlertDialog_android_layout = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonPanelSideLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#multiChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#showTitle} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:showTitle */ public static final int AlertDialog_showTitle = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#singleChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_elevation com.companyname.GitSearcher.Android:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded com.companyname.GitSearcher.Android:expanded}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_android_keyboardNavigationCluster @see #AppBarLayout_android_touchscreenBlocksFocus @see #AppBarLayout_elevation @see #AppBarLayout_expanded */ public static final int[] AppBarLayout = { 0x010100d4, 0x0101048f, 0x01010540, 0x7f01003e, 0x7f010118 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:background */ public static final int AppBarLayout_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:keyboardNavigationCluster */ public static final int AppBarLayout_android_keyboardNavigationCluster = 2; /** <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:touchscreenBlocksFocus */ public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#elevation} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:elevation */ public static final int AppBarLayout_elevation = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#expanded} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:expanded */ public static final int AppBarLayout_expanded = 4; /** Attributes that can be used with a AppBarLayoutStates. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.companyname.GitSearcher.Android:state_collapsed}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.companyname.GitSearcher.Android:state_collapsible}</code></td><td></td></tr> </table> @see #AppBarLayoutStates_state_collapsed @see #AppBarLayoutStates_state_collapsible */ public static final int[] AppBarLayoutStates = { 0x7f010119, 0x7f01011a }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#state_collapsed} attribute's value can be found in the {@link #AppBarLayoutStates} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#state_collapsible} attribute's value can be found in the {@link #AppBarLayoutStates} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:state_collapsible */ public static final int AppBarLayoutStates_state_collapsible = 1; /** Attributes that can be used with a AppBarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.companyname.GitSearcher.Android:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.companyname.GitSearcher.Android:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_Layout_layout_scrollFlags @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout = { 0x7f01011b, 0x7f01011c }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout_scrollFlags} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout_scrollInterpolator} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:layout_scrollInterpolator */ public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; /** Attributes that can be used with a AppCompatImageView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_srcCompat com.companyname.GitSearcher.Android:srcCompat}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tint com.companyname.GitSearcher.Android:tint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tintMode com.companyname.GitSearcher.Android:tintMode}</code></td><td></td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat @see #AppCompatImageView_tint @see #AppCompatImageView_tintMode */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010049, 0x7f01004a, 0x7f01004b }; /** <p>This symbol is the offset where the {@link android.R.attr#src} attribute's value can be found in the {@link #AppCompatImageView} array. @attr name android:src */ public static final int AppCompatImageView_android_src = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#srcCompat} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tint} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tint */ public static final int AppCompatImageView_tint = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tintMode} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:tintMode */ public static final int AppCompatImageView_tintMode = 3; /** Attributes that can be used with a AppCompatSeekBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMark com.companyname.GitSearcher.Android:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.companyname.GitSearcher.Android:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.companyname.GitSearcher.Android:tickMarkTintMode}</code></td><td></td></tr> </table> @see #AppCompatSeekBar_android_thumb @see #AppCompatSeekBar_tickMark @see #AppCompatSeekBar_tickMarkTint @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f01004c, 0x7f01004d, 0x7f01004e }; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #AppCompatSeekBar} array. @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tickMark} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:tickMark */ public static final int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tickMarkTint} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tickMarkTintMode} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode = 3; /** Attributes that can be used with a AppCompatTextHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> </table> @see #AppCompatTextHelper_android_drawableBottom @see #AppCompatTextHelper_android_drawableEnd @see #AppCompatTextHelper_android_drawableLeft @see #AppCompatTextHelper_android_drawableRight @see #AppCompatTextHelper_android_drawableStart @see #AppCompatTextHelper_android_drawableTop @see #AppCompatTextHelper_android_textAppearance */ public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom = 2; /** <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd = 6; /** <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft = 3; /** <p>This symbol is the offset where the {@link android.R.attr#drawableRight} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#drawableStart} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart = 5; /** <p>This symbol is the offset where the {@link android.R.attr#drawableTop} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance = 0; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize com.companyname.GitSearcher.Android:autoSizeMaxTextSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.companyname.GitSearcher.Android:autoSizeMinTextSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.companyname.GitSearcher.Android:autoSizePresetSizes}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.companyname.GitSearcher.Android:autoSizeStepGranularity}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.companyname.GitSearcher.Android:autoSizeTextType}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_fontFamily com.companyname.GitSearcher.Android:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps com.companyname.GitSearcher.Android:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_autoSizeMaxTextSize @see #AppCompatTextView_autoSizeMinTextSize @see #AppCompatTextView_autoSizePresetSizes @see #AppCompatTextView_autoSizeStepGranularity @see #AppCompatTextView_autoSizeTextType @see #AppCompatTextView_fontFamily @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055 }; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextView} array. @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#autoSizeMaxTextSize} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#autoSizeMinTextSize} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#autoSizePresetSizes} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#autoSizeStepGranularity} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#autoSizeTextType} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>uniform</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fontFamily} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:fontFamily */ public static final int AppCompatTextView_fontFamily = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textAllCaps} attribute's value can be found in the {@link #AppCompatTextView} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.companyname.GitSearcher.Android:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a AppCompatTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.companyname.GitSearcher.Android:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.companyname.GitSearcher.Android:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.companyname.GitSearcher.Android:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize com.companyname.GitSearcher.Android:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.companyname.GitSearcher.Android:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.companyname.GitSearcher.Android:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.GitSearcher.Android:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.companyname.GitSearcher.Android:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.GitSearcher.Android:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.companyname.GitSearcher.Android:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.GitSearcher.Android:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.companyname.GitSearcher.Android:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.companyname.GitSearcher.Android:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.GitSearcher.Android:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.companyname.GitSearcher.Android:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.companyname.GitSearcher.Android:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.GitSearcher.Android:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.GitSearcher.Android:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.GitSearcher.Android:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.companyname.GitSearcher.Android:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.companyname.GitSearcher.Android:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.companyname.GitSearcher.Android:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.GitSearcher.Android:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.GitSearcher.Android:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.companyname.GitSearcher.Android:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.companyname.GitSearcher.Android:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.companyname.GitSearcher.Android:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.GitSearcher.Android:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.GitSearcher.Android:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.GitSearcher.Android:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.companyname.GitSearcher.Android:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.GitSearcher.Android:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.GitSearcher.Android:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.companyname.GitSearcher.Android:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.companyname.GitSearcher.Android:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.companyname.GitSearcher.Android:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.companyname.GitSearcher.Android:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.GitSearcher.Android:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.GitSearcher.Android:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.GitSearcher.Android:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.GitSearcher.Android:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.companyname.GitSearcher.Android:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle com.companyname.GitSearcher.Android:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.companyname.GitSearcher.Android:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.companyname.GitSearcher.Android:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.companyname.GitSearcher.Android:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent com.companyname.GitSearcher.Android:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.companyname.GitSearcher.Android:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.companyname.GitSearcher.Android:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.companyname.GitSearcher.Android:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.companyname.GitSearcher.Android:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.companyname.GitSearcher.Android:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorError com.companyname.GitSearcher.Android:colorError}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary com.companyname.GitSearcher.Android:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.companyname.GitSearcher.Android:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.GitSearcher.Android:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground com.companyname.GitSearcher.Android:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.companyname.GitSearcher.Android:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme com.companyname.GitSearcher.Android:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.companyname.GitSearcher.Android:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical com.companyname.GitSearcher.Android:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.companyname.GitSearcher.Android:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.GitSearcher.Android:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground com.companyname.GitSearcher.Android:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor com.companyname.GitSearcher.Android:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle com.companyname.GitSearcher.Android:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.companyname.GitSearcher.Android:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.companyname.GitSearcher.Android:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.GitSearcher.Android:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.companyname.GitSearcher.Android:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.companyname.GitSearcher.Android:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.companyname.GitSearcher.Android:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.companyname.GitSearcher.Android:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.GitSearcher.Android:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.GitSearcher.Android:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.GitSearcher.Android:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.GitSearcher.Android:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground com.companyname.GitSearcher.Android:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.companyname.GitSearcher.Android:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.companyname.GitSearcher.Android:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.companyname.GitSearcher.Android:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.companyname.GitSearcher.Android:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.companyname.GitSearcher.Android:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.companyname.GitSearcher.Android:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.GitSearcher.Android:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.GitSearcher.Android:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.companyname.GitSearcher.Android:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.companyname.GitSearcher.Android:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.companyname.GitSearcher.Android:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.GitSearcher.Android:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.GitSearcher.Android:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.companyname.GitSearcher.Android:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle com.companyname.GitSearcher.Android:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.GitSearcher.Android:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.companyname.GitSearcher.Android:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.companyname.GitSearcher.Android:textAppearanceListItemSecondary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.GitSearcher.Android:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.companyname.GitSearcher.Android:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.GitSearcher.Android:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.GitSearcher.Android:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.GitSearcher.Android:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.GitSearcher.Android:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.companyname.GitSearcher.Android:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.GitSearcher.Android:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.companyname.GitSearcher.Android:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.companyname.GitSearcher.Android:tooltipForegroundColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.companyname.GitSearcher.Android:tooltipFrameBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar com.companyname.GitSearcher.Android:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.companyname.GitSearcher.Android:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.companyname.GitSearcher.Android:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.GitSearcher.Android:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.GitSearcher.Android:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.GitSearcher.Android:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.GitSearcher.Android:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.companyname.GitSearcher.Android:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.companyname.GitSearcher.Android:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.companyname.GitSearcher.Android:windowNoTitle}</code></td><td></td></tr> </table> @see #AppCompatTheme_actionBarDivider @see #AppCompatTheme_actionBarItemBackground @see #AppCompatTheme_actionBarPopupTheme @see #AppCompatTheme_actionBarSize @see #AppCompatTheme_actionBarSplitStyle @see #AppCompatTheme_actionBarStyle @see #AppCompatTheme_actionBarTabBarStyle @see #AppCompatTheme_actionBarTabStyle @see #AppCompatTheme_actionBarTabTextStyle @see #AppCompatTheme_actionBarTheme @see #AppCompatTheme_actionBarWidgetTheme @see #AppCompatTheme_actionButtonStyle @see #AppCompatTheme_actionDropDownStyle @see #AppCompatTheme_actionMenuTextAppearance @see #AppCompatTheme_actionMenuTextColor @see #AppCompatTheme_actionModeBackground @see #AppCompatTheme_actionModeCloseButtonStyle @see #AppCompatTheme_actionModeCloseDrawable @see #AppCompatTheme_actionModeCopyDrawable @see #AppCompatTheme_actionModeCutDrawable @see #AppCompatTheme_actionModeFindDrawable @see #AppCompatTheme_actionModePasteDrawable @see #AppCompatTheme_actionModePopupWindowStyle @see #AppCompatTheme_actionModeSelectAllDrawable @see #AppCompatTheme_actionModeShareDrawable @see #AppCompatTheme_actionModeSplitBackground @see #AppCompatTheme_actionModeStyle @see #AppCompatTheme_actionModeWebSearchDrawable @see #AppCompatTheme_actionOverflowButtonStyle @see #AppCompatTheme_actionOverflowMenuStyle @see #AppCompatTheme_activityChooserViewStyle @see #AppCompatTheme_alertDialogButtonGroupStyle @see #AppCompatTheme_alertDialogCenterButtons @see #AppCompatTheme_alertDialogStyle @see #AppCompatTheme_alertDialogTheme @see #AppCompatTheme_android_windowAnimationStyle @see #AppCompatTheme_android_windowIsFloating @see #AppCompatTheme_autoCompleteTextViewStyle @see #AppCompatTheme_borderlessButtonStyle @see #AppCompatTheme_buttonBarButtonStyle @see #AppCompatTheme_buttonBarNegativeButtonStyle @see #AppCompatTheme_buttonBarNeutralButtonStyle @see #AppCompatTheme_buttonBarPositiveButtonStyle @see #AppCompatTheme_buttonBarStyle @see #AppCompatTheme_buttonStyle @see #AppCompatTheme_buttonStyleSmall @see #AppCompatTheme_checkboxStyle @see #AppCompatTheme_checkedTextViewStyle @see #AppCompatTheme_colorAccent @see #AppCompatTheme_colorBackgroundFloating @see #AppCompatTheme_colorButtonNormal @see #AppCompatTheme_colorControlActivated @see #AppCompatTheme_colorControlHighlight @see #AppCompatTheme_colorControlNormal @see #AppCompatTheme_colorError @see #AppCompatTheme_colorPrimary @see #AppCompatTheme_colorPrimaryDark @see #AppCompatTheme_colorSwitchThumbNormal @see #AppCompatTheme_controlBackground @see #AppCompatTheme_dialogPreferredPadding @see #AppCompatTheme_dialogTheme @see #AppCompatTheme_dividerHorizontal @see #AppCompatTheme_dividerVertical @see #AppCompatTheme_dropDownListViewStyle @see #AppCompatTheme_dropdownListPreferredItemHeight @see #AppCompatTheme_editTextBackground @see #AppCompatTheme_editTextColor @see #AppCompatTheme_editTextStyle @see #AppCompatTheme_homeAsUpIndicator @see #AppCompatTheme_imageButtonStyle @see #AppCompatTheme_listChoiceBackgroundIndicator @see #AppCompatTheme_listDividerAlertDialog @see #AppCompatTheme_listMenuViewStyle @see #AppCompatTheme_listPopupWindowStyle @see #AppCompatTheme_listPreferredItemHeight @see #AppCompatTheme_listPreferredItemHeightLarge @see #AppCompatTheme_listPreferredItemHeightSmall @see #AppCompatTheme_listPreferredItemPaddingLeft @see #AppCompatTheme_listPreferredItemPaddingRight @see #AppCompatTheme_panelBackground @see #AppCompatTheme_panelMenuListTheme @see #AppCompatTheme_panelMenuListWidth @see #AppCompatTheme_popupMenuStyle @see #AppCompatTheme_popupWindowStyle @see #AppCompatTheme_radioButtonStyle @see #AppCompatTheme_ratingBarStyle @see #AppCompatTheme_ratingBarStyleIndicator @see #AppCompatTheme_ratingBarStyleSmall @see #AppCompatTheme_searchViewStyle @see #AppCompatTheme_seekBarStyle @see #AppCompatTheme_selectableItemBackground @see #AppCompatTheme_selectableItemBackgroundBorderless @see #AppCompatTheme_spinnerDropDownItemStyle @see #AppCompatTheme_spinnerStyle @see #AppCompatTheme_switchStyle @see #AppCompatTheme_textAppearanceLargePopupMenu @see #AppCompatTheme_textAppearanceListItem @see #AppCompatTheme_textAppearanceListItemSecondary @see #AppCompatTheme_textAppearanceListItemSmall @see #AppCompatTheme_textAppearancePopupMenuHeader @see #AppCompatTheme_textAppearanceSearchResultSubtitle @see #AppCompatTheme_textAppearanceSearchResultTitle @see #AppCompatTheme_textAppearanceSmallPopupMenu @see #AppCompatTheme_textColorAlertDialogListItem @see #AppCompatTheme_textColorSearchUrl @see #AppCompatTheme_toolbarNavigationButtonStyle @see #AppCompatTheme_toolbarStyle @see #AppCompatTheme_tooltipForegroundColor @see #AppCompatTheme_tooltipFrameBackground @see #AppCompatTheme_windowActionBar @see #AppCompatTheme_windowActionBarOverlay @see #AppCompatTheme_windowActionModeOverlay @see #AppCompatTheme_windowFixedHeightMajor @see #AppCompatTheme_windowFixedHeightMinor @see #AppCompatTheme_windowFixedWidthMajor @see #AppCompatTheme_windowFixedWidthMinor @see #AppCompatTheme_windowMinWidthMajor @see #AppCompatTheme_windowMinWidthMinor @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarDivider} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarSize} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 96; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#alertDialogStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 94; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#alertDialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme = 97; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 103; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 104; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#checkboxStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 105; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 106; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#colorAccent} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:colorAccent */ public static final int AppCompatTheme_colorAccent = 86; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#colorBackgroundFloating} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating = 93; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#colorButtonNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 90; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#colorControlActivated} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 88; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#colorControlHighlight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 89; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#colorControlNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 87; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#colorError} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:colorError */ public static final int AppCompatTheme_colorError = 118; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#colorPrimary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 84; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 85; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 91; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#controlBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:controlBackground */ public static final int AppCompatTheme_controlBackground = 92; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#dialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#dividerHorizontal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#dividerVertical} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#editTextBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#editTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:editTextColor */ public static final int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#editTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 107; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#imageButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listMenuViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle = 115; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#panelBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:panelBackground */ public static final int AppCompatTheme_panelBackground = 80; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 82; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 81; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#popupMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#popupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#radioButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 108; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#ratingBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 109; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#ratingBarStyleIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 110; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#ratingBarStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 111; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#searchViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#seekBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 112; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#selectableItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#spinnerStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 113; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#switchStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:switchStyle */ public static final int AppCompatTheme_switchStyle = 114; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textAppearanceListItemSecondary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 79; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textAppearancePopupMenuHeader} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 98; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#toolbarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tooltipForegroundColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor = 117; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tooltipFrameBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground = 116; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#windowActionBar} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#windowNoTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle = 3; /** Attributes that can be used with a BottomNavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomNavigationView_elevation com.companyname.GitSearcher.Android:elevation}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemBackground com.companyname.GitSearcher.Android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconTint com.companyname.GitSearcher.Android:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextColor com.companyname.GitSearcher.Android:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_menu com.companyname.GitSearcher.Android:menu}</code></td><td></td></tr> </table> @see #BottomNavigationView_elevation @see #BottomNavigationView_itemBackground @see #BottomNavigationView_itemIconTint @see #BottomNavigationView_itemTextColor @see #BottomNavigationView_menu */ public static final int[] BottomNavigationView = { 0x7f01003e, 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#elevation} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:elevation */ public static final int BottomNavigationView_elevation = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#itemBackground} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:itemBackground */ public static final int BottomNavigationView_itemBackground = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#itemIconTint} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:itemIconTint */ public static final int BottomNavigationView_itemIconTint = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#itemTextColor} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:itemTextColor */ public static final int BottomNavigationView_itemTextColor = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#menu} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:menu */ public static final int BottomNavigationView_menu = 1; /** Attributes that can be used with a BottomSheetBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.companyname.GitSearcher.Android:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.companyname.GitSearcher.Android:behavior_peekHeight}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.companyname.GitSearcher.Android:behavior_skipCollapsed}</code></td><td></td></tr> </table> @see #BottomSheetBehavior_Layout_behavior_hideable @see #BottomSheetBehavior_Layout_behavior_peekHeight @see #BottomSheetBehavior_Layout_behavior_skipCollapsed */ public static final int[] BottomSheetBehavior_Layout = { 0x7f01011d, 0x7f01011e, 0x7f01011f }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#behavior_hideable} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#behavior_peekHeight} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#behavior_skipCollapsed} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:behavior_skipCollapsed */ public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; /** Attributes that can be used with a ButtonBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ButtonBarLayout_allowStacking com.companyname.GitSearcher.Android:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f0100cb }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#allowStacking} attribute's value can be found in the {@link #ButtonBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a CardView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardBackgroundColor com.companyname.GitSearcher.Android:cardBackgroundColor}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardCornerRadius com.companyname.GitSearcher.Android:cardCornerRadius}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardElevation com.companyname.GitSearcher.Android:cardElevation}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardMaxElevation com.companyname.GitSearcher.Android:cardMaxElevation}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardPreventCornerOverlap com.companyname.GitSearcher.Android:cardPreventCornerOverlap}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardUseCompatPadding com.companyname.GitSearcher.Android:cardUseCompatPadding}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPadding com.companyname.GitSearcher.Android:contentPadding}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingBottom com.companyname.GitSearcher.Android:contentPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingLeft com.companyname.GitSearcher.Android:contentPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingRight com.companyname.GitSearcher.Android:contentPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingTop com.companyname.GitSearcher.Android:contentPaddingTop}</code></td><td></td></tr> </table> @see #CardView_android_minHeight @see #CardView_android_minWidth @see #CardView_cardBackgroundColor @see #CardView_cardCornerRadius @see #CardView_cardElevation @see #CardView_cardMaxElevation @see #CardView_cardPreventCornerOverlap @see #CardView_cardUseCompatPadding @see #CardView_contentPadding @see #CardView_contentPaddingBottom @see #CardView_contentPaddingLeft @see #CardView_contentPaddingRight @see #CardView_contentPaddingTop */ public static final int[] CardView = { 0x0101013f, 0x01010140, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021 }; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #CardView} array. @attr name android:minHeight */ public static final int CardView_android_minHeight = 1; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #CardView} array. @attr name android:minWidth */ public static final int CardView_android_minWidth = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#cardBackgroundColor} attribute's value can be found in the {@link #CardView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:cardBackgroundColor */ public static final int CardView_cardBackgroundColor = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#cardCornerRadius} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:cardCornerRadius */ public static final int CardView_cardCornerRadius = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#cardElevation} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:cardElevation */ public static final int CardView_cardElevation = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#cardMaxElevation} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:cardMaxElevation */ public static final int CardView_cardMaxElevation = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#cardPreventCornerOverlap} attribute's value can be found in the {@link #CardView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:cardPreventCornerOverlap */ public static final int CardView_cardPreventCornerOverlap = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#cardUseCompatPadding} attribute's value can be found in the {@link #CardView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:cardUseCompatPadding */ public static final int CardView_cardUseCompatPadding = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentPadding} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentPadding */ public static final int CardView_contentPadding = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentPaddingBottom} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentPaddingBottom */ public static final int CardView_contentPaddingBottom = 12; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentPaddingLeft} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentPaddingLeft */ public static final int CardView_contentPaddingLeft = 9; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentPaddingRight} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentPaddingRight */ public static final int CardView_contentPaddingRight = 10; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentPaddingTop} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentPaddingTop */ public static final int CardView_contentPaddingTop = 11; /** Attributes that can be used with a CollapsingToolbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.companyname.GitSearcher.Android:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.GitSearcher.Android:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.companyname.GitSearcher.Android:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.GitSearcher.Android:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.GitSearcher.Android:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.GitSearcher.Android:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.GitSearcher.Android:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.GitSearcher.Android:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.GitSearcher.Android:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.GitSearcher.Android:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.companyname.GitSearcher.Android:scrimAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.companyname.GitSearcher.Android:scrimVisibleHeightTrigger}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.GitSearcher.Android:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title com.companyname.GitSearcher.Android:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.companyname.GitSearcher.Android:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.companyname.GitSearcher.Android:toolbarId}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_collapsedTitleGravity @see #CollapsingToolbarLayout_collapsedTitleTextAppearance @see #CollapsingToolbarLayout_contentScrim @see #CollapsingToolbarLayout_expandedTitleGravity @see #CollapsingToolbarLayout_expandedTitleMargin @see #CollapsingToolbarLayout_expandedTitleMarginBottom @see #CollapsingToolbarLayout_expandedTitleMarginEnd @see #CollapsingToolbarLayout_expandedTitleMarginStart @see #CollapsingToolbarLayout_expandedTitleMarginTop @see #CollapsingToolbarLayout_expandedTitleTextAppearance @see #CollapsingToolbarLayout_scrimAnimationDuration @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger @see #CollapsingToolbarLayout_statusBarScrim @see #CollapsingToolbarLayout_title @see #CollapsingToolbarLayout_titleEnabled @see #CollapsingToolbarLayout_toolbarId */ public static final int[] CollapsingToolbarLayout = { 0x7f010025, 0x7f010120, 0x7f010121, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#collapsedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#collapsedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#expandedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity = 14; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#expandedTitleMargin} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#expandedTitleMarginBottom} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#expandedTitleMarginEnd} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#expandedTitleMarginStart} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#expandedTitleMarginTop} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#expandedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#scrimAnimationDuration} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#scrimVisibleHeightTrigger} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#statusBarScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#title} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:title */ public static final int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleEnabled} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled = 15; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#toolbarId} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:toolbarId */ public static final int CollapsingToolbarLayout_toolbarId = 10; /** Attributes that can be used with a CollapsingToolbarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.companyname.GitSearcher.Android:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.companyname.GitSearcher.Android:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_Layout_layout_collapseMode @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout = { 0x7f01012f, 0x7f010130 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout_collapseMode} attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout_collapseParallaxMultiplier} attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:layout_collapseParallaxMultiplier */ public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; /** Attributes that can be used with a ColorStateListItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ColorStateListItem_alpha com.companyname.GitSearcher.Android:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr> </table> @see #ColorStateListItem_alpha @see #ColorStateListItem_android_alpha @see #ColorStateListItem_android_color */ public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f0100cc }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:alpha */ public static final int ColorStateListItem_alpha = 2; /** <p>This symbol is the offset where the {@link android.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:alpha */ public static final int ColorStateListItem_android_alpha = 1; /** <p>This symbol is the offset where the {@link android.R.attr#color} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:color */ public static final int ColorStateListItem_android_color = 0; /** Attributes that can be used with a CompoundButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTint com.companyname.GitSearcher.Android:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.companyname.GitSearcher.Android:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100cd, 0x7f0100ce }; /** <p>This symbol is the offset where the {@link android.R.attr#button} attribute's value can be found in the {@link #CompoundButton} array. @attr name android:button */ public static final int CompoundButton_android_button = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonTint} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a CoordinatorLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_keylines com.companyname.GitSearcher.Android:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.companyname.GitSearcher.Android:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f010131, 0x7f010132 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#keylines} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:keylines */ public static final int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#statusBarBackground} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:statusBarBackground */ public static final int CoordinatorLayout_statusBarBackground = 1; /** Attributes that can be used with a CoordinatorLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.companyname.GitSearcher.Android:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.companyname.GitSearcher.Android:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.companyname.GitSearcher.Android:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.companyname.GitSearcher.Android:layout_dodgeInsetEdges}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.companyname.GitSearcher.Android:layout_insetEdge}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.companyname.GitSearcher.Android:layout_keyline}</code></td><td></td></tr> </table> @see #CoordinatorLayout_Layout_android_layout_gravity @see #CoordinatorLayout_Layout_layout_anchor @see #CoordinatorLayout_Layout_layout_anchorGravity @see #CoordinatorLayout_Layout_layout_behavior @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges @see #CoordinatorLayout_Layout_layout_insetEdge @see #CoordinatorLayout_Layout_layout_keyline */ public static final int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout_anchor} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout_anchorGravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout_behavior} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout_dodgeInsetEdges} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout_insetEdge} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout_keyline} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:layout_keyline */ public static final int CoordinatorLayout_Layout_layout_keyline = 3; /** Attributes that can be used with a DesignTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.companyname.GitSearcher.Android:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle com.companyname.GitSearcher.Android:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_textColorError com.companyname.GitSearcher.Android:textColorError}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle @see #DesignTheme_textColorError */ public static final int[] DesignTheme = { 0x7f010139, 0x7f01013a, 0x7f01013b }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#bottomSheetDialogTheme} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#bottomSheetStyle} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textColorError} attribute's value can be found in the {@link #DesignTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:textColorError */ public static final int DesignTheme_textColorError = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.companyname.GitSearcher.Android:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.companyname.GitSearcher.Android:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.companyname.GitSearcher.Android:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.companyname.GitSearcher.Android:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.companyname.GitSearcher.Android:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.companyname.GitSearcher.Android:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.companyname.GitSearcher.Android:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.companyname.GitSearcher.Android:thickness}</code></td><td></td></tr> </table> @see #DrawerArrowToggle_arrowHeadLength @see #DrawerArrowToggle_arrowShaftLength @see #DrawerArrowToggle_barLength @see #DrawerArrowToggle_color @see #DrawerArrowToggle_drawableSize @see #DrawerArrowToggle_gapBetweenBars @see #DrawerArrowToggle_spinBars @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle = { 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#arrowHeadLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#arrowShaftLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#barLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#color} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#drawableSize} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#gapBetweenBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#spinBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#thickness} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a FloatingActionButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTint com.companyname.GitSearcher.Android:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.companyname.GitSearcher.Android:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth com.companyname.GitSearcher.Android:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation com.companyname.GitSearcher.Android:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize com.companyname.GitSearcher.Android:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.companyname.GitSearcher.Android:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor com.companyname.GitSearcher.Android:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding com.companyname.GitSearcher.Android:useCompatPadding}</code></td><td></td></tr> </table> @see #FloatingActionButton_backgroundTint @see #FloatingActionButton_backgroundTintMode @see #FloatingActionButton_borderWidth @see #FloatingActionButton_elevation @see #FloatingActionButton_fabSize @see #FloatingActionButton_pressedTranslationZ @see #FloatingActionButton_rippleColor @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton = { 0x7f01003e, 0x7f010116, 0x7f010117, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#backgroundTint} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:backgroundTint */ public static final int FloatingActionButton_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#backgroundTintMode} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#borderWidth} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:borderWidth */ public static final int FloatingActionButton_borderWidth = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#elevation} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:elevation */ public static final int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fabSize} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:fabSize */ public static final int FloatingActionButton_fabSize = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#pressedTranslationZ} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#rippleColor} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:rippleColor */ public static final int FloatingActionButton_rippleColor = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#useCompatPadding} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding = 7; /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.companyname.GitSearcher.Android:behavior_autoHide}</code></td><td></td></tr> </table> @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f010141 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#behavior_autoHide} attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; /** Attributes that can be used with a FontFamily. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FontFamily_fontProviderAuthority com.companyname.GitSearcher.Android:fontProviderAuthority}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderCerts com.companyname.GitSearcher.Android:fontProviderCerts}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.companyname.GitSearcher.Android:fontProviderFetchStrategy}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.companyname.GitSearcher.Android:fontProviderFetchTimeout}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderPackage com.companyname.GitSearcher.Android:fontProviderPackage}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderQuery com.companyname.GitSearcher.Android:fontProviderQuery}</code></td><td></td></tr> </table> @see #FontFamily_fontProviderAuthority @see #FontFamily_fontProviderCerts @see #FontFamily_fontProviderFetchStrategy @see #FontFamily_fontProviderFetchTimeout @see #FontFamily_fontProviderPackage @see #FontFamily_fontProviderQuery */ public static final int[] FontFamily = { 0x7f01016a, 0x7f01016b, 0x7f01016c, 0x7f01016d, 0x7f01016e, 0x7f01016f }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fontProviderAuthority} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fontProviderCerts} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:fontProviderCerts */ public static final int FontFamily_fontProviderCerts = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fontProviderFetchStrategy} attribute's value can be found in the {@link #FontFamily} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>blocking</code></td><td>0</td><td></td></tr> <tr><td><code>async</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fontProviderFetchTimeout} attribute's value can be found in the {@link #FontFamily} array. <p>May be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>forever</code></td><td>-1</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fontProviderPackage} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:fontProviderPackage */ public static final int FontFamily_fontProviderPackage = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fontProviderQuery} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:fontProviderQuery */ public static final int FontFamily_fontProviderQuery = 2; /** Attributes that can be used with a FontFamilyFont. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_font com.companyname.GitSearcher.Android:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_fontStyle com.companyname.GitSearcher.Android:fontStyle}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_fontWeight com.companyname.GitSearcher.Android:fontWeight}</code></td><td></td></tr> </table> @see #FontFamilyFont_android_font @see #FontFamilyFont_android_fontStyle @see #FontFamilyFont_android_fontWeight @see #FontFamilyFont_font @see #FontFamilyFont_fontStyle @see #FontFamilyFont_fontWeight */ public static final int[] FontFamilyFont = { 0x01010532, 0x01010533, 0x0101053f, 0x7f010170, 0x7f010171, 0x7f010172 }; /** <p>This symbol is the offset where the {@link android.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:font */ public static final int FontFamilyFont_android_font = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fontStyle} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontStyle */ public static final int FontFamilyFont_android_fontStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontWeight */ public static final int FontFamilyFont_android_fontWeight = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:font */ public static final int FontFamilyFont_font = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fontStyle} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>italic</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:fontStyle */ public static final int FontFamilyFont_fontStyle = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:fontWeight */ public static final int FontFamilyFont_fontWeight = 5; /** Attributes that can be used with a ForegroundLinearLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.GitSearcher.Android:foregroundInsidePadding}</code></td><td></td></tr> </table> @see #ForegroundLinearLayout_android_foreground @see #ForegroundLinearLayout_android_foregroundGravity @see #ForegroundLinearLayout_foregroundInsidePadding */ public static final int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f010142 }; /** <p>This symbol is the offset where the {@link android.R.attr#foreground} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foreground */ public static final int ForegroundLinearLayout_android_foreground = 0; /** <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foregroundGravity */ public static final int ForegroundLinearLayout_android_foregroundGravity = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#foregroundInsidePadding} attribute's value can be found in the {@link #ForegroundLinearLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider com.companyname.GitSearcher.Android:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.companyname.GitSearcher.Android:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.GitSearcher.Android:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.companyname.GitSearcher.Android:showDividers}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_android_baselineAligned @see #LinearLayoutCompat_android_baselineAlignedChildIndex @see #LinearLayoutCompat_android_gravity @see #LinearLayoutCompat_android_orientation @see #LinearLayoutCompat_android_weightSum @see #LinearLayoutCompat_divider @see #LinearLayoutCompat_dividerPadding @see #LinearLayoutCompat_measureWithLargestChild @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01002d, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9 }; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned = 2; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation = 1; /** <p>This symbol is the offset where the {@link android.R.attr#weightSum} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#divider} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#dividerPadding} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#measureWithLargestChild} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#showDividers} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:showDividers */ public static final int LinearLayoutCompat_showDividers = 7; /** Attributes that can be used with a LinearLayoutCompat_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_Layout_android_layout_gravity @see #LinearLayoutCompat_Layout_android_layout_height @see #LinearLayoutCompat_Layout_android_layout_weight @see #LinearLayoutCompat_Layout_android_layout_width */ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout_weight} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width = 1; /** Attributes that can be used with a ListPopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> </table> @see #ListPopupWindow_android_dropDownHorizontalOffset @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Attributes that can be used with a MediaRouteButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr> <tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable com.companyname.GitSearcher.Android:externalRouteEnabledDrawable}</code></td><td></td></tr> <tr><td><code>{@link #MediaRouteButton_mediaRouteButtonTint com.companyname.GitSearcher.Android:mediaRouteButtonTint}</code></td><td></td></tr> </table> @see #MediaRouteButton_android_minHeight @see #MediaRouteButton_android_minWidth @see #MediaRouteButton_externalRouteEnabledDrawable @see #MediaRouteButton_mediaRouteButtonTint */ public static final int[] MediaRouteButton = { 0x0101013f, 0x01010140, 0x7f010015, 0x7f010016 }; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #MediaRouteButton} array. @attr name android:minHeight */ public static final int MediaRouteButton_android_minHeight = 1; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #MediaRouteButton} array. @attr name android:minWidth */ public static final int MediaRouteButton_android_minWidth = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#externalRouteEnabledDrawable} attribute's value can be found in the {@link #MediaRouteButton} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:externalRouteEnabledDrawable */ public static final int MediaRouteButton_externalRouteEnabledDrawable = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#mediaRouteButtonTint} attribute's value can be found in the {@link #MediaRouteButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:mediaRouteButtonTint */ public static final int MediaRouteButton_mediaRouteButtonTint = 3; /** Attributes that can be used with a MenuGroup. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> </table> @see #MenuGroup_android_checkableBehavior @see #MenuGroup_android_enabled @see #MenuGroup_android_id @see #MenuGroup_android_menuCategory @see #MenuGroup_android_orderInCategory @see #MenuGroup_android_visible */ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:enabled */ public static final int MenuGroup_android_enabled = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:id */ public static final int MenuGroup_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:visible */ public static final int MenuGroup_android_visible = 2; /** Attributes that can be used with a MenuItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuItem_actionLayout com.companyname.GitSearcher.Android:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.companyname.GitSearcher.Android:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.companyname.GitSearcher.Android:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_alphabeticModifiers com.companyname.GitSearcher.Android:alphabeticModifiers}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_contentDescription com.companyname.GitSearcher.Android:contentDescription}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_iconTint com.companyname.GitSearcher.Android:iconTint}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_iconTintMode com.companyname.GitSearcher.Android:iconTintMode}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_numericModifiers com.companyname.GitSearcher.Android:numericModifiers}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction com.companyname.GitSearcher.Android:showAsAction}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_tooltipText com.companyname.GitSearcher.Android:tooltipText}</code></td><td></td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_alphabeticModifiers @see #MenuItem_android_alphabeticShortcut @see #MenuItem_android_checkable @see #MenuItem_android_checked @see #MenuItem_android_enabled @see #MenuItem_android_icon @see #MenuItem_android_id @see #MenuItem_android_menuCategory @see #MenuItem_android_numericShortcut @see #MenuItem_android_onClick @see #MenuItem_android_orderInCategory @see #MenuItem_android_title @see #MenuItem_android_titleCondensed @see #MenuItem_android_visible @see #MenuItem_contentDescription @see #MenuItem_iconTint @see #MenuItem_iconTintMode @see #MenuItem_numericModifiers @see #MenuItem_showAsAction @see #MenuItem_tooltipText */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionLayout} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:actionLayout */ public static final int MenuItem_actionLayout = 16; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionProviderClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:actionProviderClass */ public static final int MenuItem_actionProviderClass = 18; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#actionViewClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:actionViewClass */ public static final int MenuItem_actionViewClass = 17; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#alphabeticModifiers} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers = 13; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /** <p>This symbol is the offset where the {@link android.R.attr#checked} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuItem} array. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #MenuItem} array. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuItem} array. @attr name android:id */ public static final int MenuItem_android_id = 2; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /** <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /** <p>This symbol is the offset where the {@link android.R.attr#onClick} attribute's value can be found in the {@link #MenuItem} array. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /** <p>This symbol is the offset where the {@link android.R.attr#title} attribute's value can be found in the {@link #MenuItem} array. @attr name android:title */ public static final int MenuItem_android_title = 7; /** <p>This symbol is the offset where the {@link android.R.attr#titleCondensed} attribute's value can be found in the {@link #MenuItem} array. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuItem} array. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentDescription} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentDescription */ public static final int MenuItem_contentDescription = 19; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#iconTint} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:iconTint */ public static final int MenuItem_iconTint = 21; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#iconTintMode} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:iconTintMode */ public static final int MenuItem_iconTintMode = 22; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#numericModifiers} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:numericModifiers */ public static final int MenuItem_numericModifiers = 14; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#showAsAction} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:showAsAction */ public static final int MenuItem_showAsAction = 15; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tooltipText} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tooltipText */ public static final int MenuItem_tooltipText = 20; /** Attributes that can be used with a MenuView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_preserveIconSpacing com.companyname.GitSearcher.Android:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow com.companyname.GitSearcher.Android:subMenuArrow}</code></td><td></td></tr> </table> @see #MenuView_android_headerBackground @see #MenuView_android_horizontalDivider @see #MenuView_android_itemBackground @see #MenuView_android_itemIconDisabledAlpha @see #MenuView_android_itemTextAppearance @see #MenuView_android_verticalDivider @see #MenuView_android_windowAnimationStyle @see #MenuView_preserveIconSpacing @see #MenuView_subMenuArrow */ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e4, 0x7f0100e5 }; /** <p>This symbol is the offset where the {@link android.R.attr#headerBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /** <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /** <p>This symbol is the offset where the {@link android.R.attr#itemBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemBackground */ public static final int MenuView_android_itemBackground = 5; /** <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /** <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /** <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #MenuView} array. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#preserveIconSpacing} attribute's value can be found in the {@link #MenuView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#subMenuArrow} attribute's value can be found in the {@link #MenuView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:subMenuArrow */ public static final int MenuView_subMenuArrow = 8; /** Attributes that can be used with a NavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_elevation com.companyname.GitSearcher.Android:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout com.companyname.GitSearcher.Android:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground com.companyname.GitSearcher.Android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint com.companyname.GitSearcher.Android:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance com.companyname.GitSearcher.Android:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor com.companyname.GitSearcher.Android:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu com.companyname.GitSearcher.Android:menu}</code></td><td></td></tr> </table> @see #NavigationView_android_background @see #NavigationView_android_fitsSystemWindows @see #NavigationView_android_maxWidth @see #NavigationView_elevation @see #NavigationView_headerLayout @see #NavigationView_itemBackground @see #NavigationView_itemIconTint @see #NavigationView_itemTextAppearance @see #NavigationView_itemTextColor @see #NavigationView_menu */ public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01003e, 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, 0x7f010147, 0x7f010148 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #NavigationView} array. @attr name android:background */ public static final int NavigationView_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} attribute's value can be found in the {@link #NavigationView} array. @attr name android:fitsSystemWindows */ public static final int NavigationView_android_fitsSystemWindows = 1; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #NavigationView} array. @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#elevation} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:elevation */ public static final int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#headerLayout} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:headerLayout */ public static final int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#itemBackground} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:itemBackground */ public static final int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#itemIconTint} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:itemIconTint */ public static final int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#itemTextAppearance} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:itemTextAppearance */ public static final int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#itemTextColor} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:itemTextColor */ public static final int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#menu} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:menu */ public static final int NavigationView_menu = 4; /** Attributes that can be used with a PopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor com.companyname.GitSearcher.Android:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupAnimationStyle @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f0100e6 }; /** <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#overlapAnchor} attribute's value can be found in the {@link #PopupWindow} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 2; /** Attributes that can be used with a PopupWindowBackgroundState. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.companyname.GitSearcher.Android:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100e7 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#state_above_anchor} attribute's value can be found in the {@link #PopupWindowBackgroundState} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a RecycleListView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.companyname.GitSearcher.Android:paddingBottomNoButtons}</code></td><td></td></tr> <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.companyname.GitSearcher.Android:paddingTopNoTitle}</code></td><td></td></tr> </table> @see #RecycleListView_paddingBottomNoButtons @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView = { 0x7f0100e8, 0x7f0100e9 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#paddingBottomNoButtons} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#paddingTopNoTitle} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle = 1; /** Attributes that can be used with a RecyclerView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollEnabled com.companyname.GitSearcher.Android:fastScrollEnabled}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.companyname.GitSearcher.Android:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.companyname.GitSearcher.Android:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.companyname.GitSearcher.Android:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.companyname.GitSearcher.Android:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager com.companyname.GitSearcher.Android:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout com.companyname.GitSearcher.Android:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount com.companyname.GitSearcher.Android:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd com.companyname.GitSearcher.Android:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_descendantFocusability @see #RecyclerView_android_orientation @see #RecyclerView_fastScrollEnabled @see #RecyclerView_fastScrollHorizontalThumbDrawable @see #RecyclerView_fastScrollHorizontalTrackDrawable @see #RecyclerView_fastScrollVerticalThumbDrawable @see #RecyclerView_fastScrollVerticalTrackDrawable @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 }; /** <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:descendantFocusability */ public static final int RecyclerView_android_descendantFocusability = 1; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:orientation */ public static final int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fastScrollEnabled} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:fastScrollEnabled */ public static final int RecyclerView_fastScrollEnabled = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fastScrollHorizontalThumbDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:fastScrollHorizontalThumbDrawable */ public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fastScrollHorizontalTrackDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:fastScrollHorizontalTrackDrawable */ public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fastScrollVerticalThumbDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:fastScrollVerticalThumbDrawable */ public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fastScrollVerticalTrackDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:fastScrollVerticalTrackDrawable */ public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layoutManager} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:layoutManager */ public static final int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#reverseLayout} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:reverseLayout */ public static final int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#spanCount} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:spanCount */ public static final int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#stackFromEnd} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:stackFromEnd */ public static final int RecyclerView_stackFromEnd = 5; /** Attributes that can be used with a ScrimInsetsFrameLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.companyname.GitSearcher.Android:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f010149 }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#insetForeground} attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.GitSearcher.Android:insetForeground */ public static final int ScrimInsetsFrameLayout_insetForeground = 0; /** Attributes that can be used with a ScrollingViewBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.companyname.GitSearcher.Android:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout = { 0x7f01014a }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#behavior_overlapTop} attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:behavior_overlapTop */ public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon com.companyname.GitSearcher.Android:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.companyname.GitSearcher.Android:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.companyname.GitSearcher.Android:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.companyname.GitSearcher.Android:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.companyname.GitSearcher.Android:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.companyname.GitSearcher.Android:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.companyname.GitSearcher.Android:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.companyname.GitSearcher.Android:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.companyname.GitSearcher.Android:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.companyname.GitSearcher.Android:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.companyname.GitSearcher.Android:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.companyname.GitSearcher.Android:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.companyname.GitSearcher.Android:voiceIcon}</code></td><td></td></tr> </table> @see #SearchView_android_focusable @see #SearchView_android_imeOptions @see #SearchView_android_inputType @see #SearchView_android_maxWidth @see #SearchView_closeIcon @see #SearchView_commitIcon @see #SearchView_defaultQueryHint @see #SearchView_goIcon @see #SearchView_iconifiedByDefault @see #SearchView_layout @see #SearchView_queryBackground @see #SearchView_queryHint @see #SearchView_searchHintIcon @see #SearchView_searchIcon @see #SearchView_submitBackground @see #SearchView_suggestionRowLayout @see #SearchView_voiceIcon */ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #SearchView} array. @attr name android:focusable */ public static final int SearchView_android_focusable = 0; /** <p>This symbol is the offset where the {@link android.R.attr#imeOptions} attribute's value can be found in the {@link #SearchView} array. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 3; /** <p>This symbol is the offset where the {@link android.R.attr#inputType} attribute's value can be found in the {@link #SearchView} array. @attr name android:inputType */ public static final int SearchView_android_inputType = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SearchView} array. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#closeIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#commitIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#defaultQueryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#goIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#iconifiedByDefault} attribute's value can be found in the {@link #SearchView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#layout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#queryBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#queryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#searchHintIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#searchIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#submitBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#suggestionRowLayout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#voiceIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SnackbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_elevation com.companyname.GitSearcher.Android:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.companyname.GitSearcher.Android:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f01003e, 0x7f01014b }; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SnackbarLayout} array. @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#elevation} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:elevation */ public static final int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#maxActionInlineWidth} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:maxActionInlineWidth */ public static final int SnackbarLayout_maxActionInlineWidth = 2; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme com.companyname.GitSearcher.Android:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_entries @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01003f }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 3; /** <p>This symbol is the offset where the {@link android.R.attr#entries} attribute's value can be found in the {@link #Spinner} array. @attr name android:entries */ public static final int Spinner_android_entries = 0; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 1; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static final int Spinner_android_prompt = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#popupTheme} attribute's value can be found in the {@link #Spinner} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:popupTheme */ public static final int Spinner_popupTheme = 4; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText com.companyname.GitSearcher.Android:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.companyname.GitSearcher.Android:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.companyname.GitSearcher.Android:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.companyname.GitSearcher.Android:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.companyname.GitSearcher.Android:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.companyname.GitSearcher.Android:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint com.companyname.GitSearcher.Android:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode com.companyname.GitSearcher.Android:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.companyname.GitSearcher.Android:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint com.companyname.GitSearcher.Android:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode com.companyname.GitSearcher.Android:trackTintMode}</code></td><td></td></tr> </table> @see #SwitchCompat_android_textOff @see #SwitchCompat_android_textOn @see #SwitchCompat_android_thumb @see #SwitchCompat_showText @see #SwitchCompat_splitTrack @see #SwitchCompat_switchMinWidth @see #SwitchCompat_switchPadding @see #SwitchCompat_switchTextAppearance @see #SwitchCompat_thumbTextPadding @see #SwitchCompat_thumbTint @see #SwitchCompat_thumbTintMode @see #SwitchCompat_track @see #SwitchCompat_trackTint @see #SwitchCompat_trackTintMode */ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 }; /** <p>This symbol is the offset where the {@link android.R.attr#textOff} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOff */ public static final int SwitchCompat_android_textOff = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textOn} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOn */ public static final int SwitchCompat_android_textOn = 0; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:thumb */ public static final int SwitchCompat_android_thumb = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#showText} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:showText */ public static final int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#splitTrack} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:splitTrack */ public static final int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#switchMinWidth} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#switchPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:switchPadding */ public static final int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#switchTextAppearance} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#thumbTextPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#thumbTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:thumbTint */ public static final int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#thumbTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:thumbTintMode */ public static final int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#track} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:track */ public static final int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#trackTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:trackTint */ public static final int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#trackTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:trackTintMode */ public static final int SwitchCompat_trackTintMode = 7; /** Attributes that can be used with a TabItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr> </table> @see #TabItem_android_icon @see #TabItem_android_layout @see #TabItem_android_text */ public static final int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f }; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #TabItem} array. @attr name android:icon */ public static final int TabItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #TabItem} array. @attr name android:layout */ public static final int TabItem_android_layout = 1; /** <p>This symbol is the offset where the {@link android.R.attr#text} attribute's value can be found in the {@link #TabItem} array. @attr name android:text */ public static final int TabItem_android_text = 2; /** Attributes that can be used with a TabLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabLayout_tabBackground com.companyname.GitSearcher.Android:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart com.companyname.GitSearcher.Android:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity com.companyname.GitSearcher.Android:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor com.companyname.GitSearcher.Android:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.companyname.GitSearcher.Android:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth com.companyname.GitSearcher.Android:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth com.companyname.GitSearcher.Android:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode com.companyname.GitSearcher.Android:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding com.companyname.GitSearcher.Android:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom com.companyname.GitSearcher.Android:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd com.companyname.GitSearcher.Android:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart com.companyname.GitSearcher.Android:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop com.companyname.GitSearcher.Android:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.companyname.GitSearcher.Android:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance com.companyname.GitSearcher.Android:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor com.companyname.GitSearcher.Android:tabTextColor}</code></td><td></td></tr> </table> @see #TabLayout_tabBackground @see #TabLayout_tabContentStart @see #TabLayout_tabGravity @see #TabLayout_tabIndicatorColor @see #TabLayout_tabIndicatorHeight @see #TabLayout_tabMaxWidth @see #TabLayout_tabMinWidth @see #TabLayout_tabMode @see #TabLayout_tabPadding @see #TabLayout_tabPaddingBottom @see #TabLayout_tabPaddingEnd @see #TabLayout_tabPaddingStart @see #TabLayout_tabPaddingTop @see #TabLayout_tabSelectedTextColor @see #TabLayout_tabTextAppearance @see #TabLayout_tabTextColor */ public static final int[] TabLayout = { 0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157, 0x7f010158, 0x7f010159, 0x7f01015a, 0x7f01015b }; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabBackground} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:tabBackground */ public static final int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabContentStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabContentStart */ public static final int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabGravity} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:tabGravity */ public static final int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabIndicatorColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabIndicatorHeight} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabMaxWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabMaxWidth */ public static final int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabMinWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabMinWidth */ public static final int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabMode} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:tabMode */ public static final int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabPadding} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabPadding */ public static final int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabPaddingBottom} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabPaddingEnd} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabPaddingStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabPaddingStart */ public static final int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabPaddingTop} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabPaddingTop */ public static final int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabSelectedTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabTextAppearance} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:tabTextAppearance */ public static final int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#tabTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:tabTextColor */ public static final int TabLayout_tabTextColor = 9; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_fontFamily com.companyname.GitSearcher.Android:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps com.companyname.GitSearcher.Android:textAllCaps}</code></td><td></td></tr> </table> @see #TextAppearance_android_fontFamily @see #TextAppearance_android_shadowColor @see #TextAppearance_android_shadowDx @see #TextAppearance_android_shadowDy @see #TextAppearance_android_shadowRadius @see #TextAppearance_android_textColor @see #TextAppearance_android_textColorHint @see #TextAppearance_android_textColorLink @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_fontFamily @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f01004f, 0x7f010055 }; /** <p>This symbol is the offset where the {@link android.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:fontFamily */ public static final int TextAppearance_android_fontFamily = 10; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor = 6; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx = 7; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy = 8; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius = 9; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorHint */ public static final int TextAppearance_android_textColorHint = 4; /** <p>This symbol is the offset where the {@link android.R.attr#textColorLink} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorLink */ public static final int TextAppearance_android_textColorLink = 5; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:fontFamily */ public static final int TextAppearance_fontFamily = 12; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#textAllCaps} attribute's value can be found in the {@link #TextAppearance} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.companyname.GitSearcher.Android:textAllCaps */ public static final int TextAppearance_textAllCaps = 11; /** Attributes that can be used with a TextInputLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterEnabled com.companyname.GitSearcher.Android:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength com.companyname.GitSearcher.Android:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.GitSearcher.Android:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.companyname.GitSearcher.Android:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled com.companyname.GitSearcher.Android:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.companyname.GitSearcher.Android:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.companyname.GitSearcher.Android:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled com.companyname.GitSearcher.Android:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.companyname.GitSearcher.Android:hintTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.companyname.GitSearcher.Android:passwordToggleContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.companyname.GitSearcher.Android:passwordToggleDrawable}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.companyname.GitSearcher.Android:passwordToggleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTint com.companyname.GitSearcher.Android:passwordToggleTint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.companyname.GitSearcher.Android:passwordToggleTintMode}</code></td><td></td></tr> </table> @see #TextInputLayout_android_hint @see #TextInputLayout_android_textColorHint @see #TextInputLayout_counterEnabled @see #TextInputLayout_counterMaxLength @see #TextInputLayout_counterOverflowTextAppearance @see #TextInputLayout_counterTextAppearance @see #TextInputLayout_errorEnabled @see #TextInputLayout_errorTextAppearance @see #TextInputLayout_hintAnimationEnabled @see #TextInputLayout_hintEnabled @see #TextInputLayout_hintTextAppearance @see #TextInputLayout_passwordToggleContentDescription @see #TextInputLayout_passwordToggleDrawable @see #TextInputLayout_passwordToggleEnabled @see #TextInputLayout_passwordToggleTint @see #TextInputLayout_passwordToggleTintMode */ public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f01015c, 0x7f01015d, 0x7f01015e, 0x7f01015f, 0x7f010160, 0x7f010161, 0x7f010162, 0x7f010163, 0x7f010164, 0x7f010165, 0x7f010166, 0x7f010167, 0x7f010168, 0x7f010169 }; /** <p>This symbol is the offset where the {@link android.R.attr#hint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:hint */ public static final int TextInputLayout_android_hint = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:textColorHint */ public static final int TextInputLayout_android_textColorHint = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#counterEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:counterEnabled */ public static final int TextInputLayout_counterEnabled = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#counterMaxLength} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:counterMaxLength */ public static final int TextInputLayout_counterMaxLength = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#counterOverflowTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#counterTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#errorEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:errorEnabled */ public static final int TextInputLayout_errorEnabled = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#errorTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#hintAnimationEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled = 10; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#hintEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:hintEnabled */ public static final int TextInputLayout_hintEnabled = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#hintTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#passwordToggleContentDescription} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription = 13; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#passwordToggleDrawable} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable = 12; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#passwordToggleEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled = 11; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#passwordToggleTint} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint = 14; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#passwordToggleTintMode} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:passwordToggleTintMode */ public static final int TextInputLayout_passwordToggleTintMode = 15; /** Attributes that can be used with a Toolbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_buttonGravity com.companyname.GitSearcher.Android:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription com.companyname.GitSearcher.Android:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.companyname.GitSearcher.Android:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.companyname.GitSearcher.Android:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.companyname.GitSearcher.Android:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.companyname.GitSearcher.Android:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.companyname.GitSearcher.Android:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.companyname.GitSearcher.Android:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.companyname.GitSearcher.Android:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo com.companyname.GitSearcher.Android:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.companyname.GitSearcher.Android:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.companyname.GitSearcher.Android:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.companyname.GitSearcher.Android:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.companyname.GitSearcher.Android:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.companyname.GitSearcher.Android:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.companyname.GitSearcher.Android:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.companyname.GitSearcher.Android:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.companyname.GitSearcher.Android:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.companyname.GitSearcher.Android:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin com.companyname.GitSearcher.Android:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.companyname.GitSearcher.Android:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.companyname.GitSearcher.Android:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.companyname.GitSearcher.Android:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.companyname.GitSearcher.Android:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.companyname.GitSearcher.Android:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.companyname.GitSearcher.Android:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.companyname.GitSearcher.Android:titleTextColor}</code></td><td></td></tr> </table> @see #Toolbar_android_gravity @see #Toolbar_android_minHeight @see #Toolbar_buttonGravity @see #Toolbar_collapseContentDescription @see #Toolbar_collapseIcon @see #Toolbar_contentInsetEnd @see #Toolbar_contentInsetEndWithActions @see #Toolbar_contentInsetLeft @see #Toolbar_contentInsetRight @see #Toolbar_contentInsetStart @see #Toolbar_contentInsetStartWithNavigation @see #Toolbar_logo @see #Toolbar_logoDescription @see #Toolbar_maxButtonHeight @see #Toolbar_navigationContentDescription @see #Toolbar_navigationIcon @see #Toolbar_popupTheme @see #Toolbar_subtitle @see #Toolbar_subtitleTextAppearance @see #Toolbar_subtitleTextColor @see #Toolbar_title @see #Toolbar_titleMargin @see #Toolbar_titleMarginBottom @see #Toolbar_titleMarginEnd @see #Toolbar_titleMarginStart @see #Toolbar_titleMarginTop @see #Toolbar_titleMargins @see #Toolbar_titleTextAppearance @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010025, 0x7f010028, 0x7f01002c, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003f, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112 }; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Toolbar} array. @attr name android:gravity */ public static final int Toolbar_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #Toolbar} array. @attr name android:minHeight */ public static final int Toolbar_android_minHeight = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#buttonGravity} attribute's value can be found in the {@link #Toolbar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:buttonGravity */ public static final int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#collapseContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#collapseIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:collapseIcon */ public static final int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetLeft} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetRight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#logo} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#logoDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:logoDescription */ public static final int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#maxButtonHeight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#navigationContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#navigationIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:navigationIcon */ public static final int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#popupTheme} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:popupTheme */ public static final int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#subtitle} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#subtitleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#subtitleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#title} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleMargin} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:titleMargin */ public static final int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleMarginBottom} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleMarginEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleMarginStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:titleMarginStart */ public static final int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleMarginTop} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:titleMarginTop */ public static final int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleMargins} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:titleMargins */ public static final int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#titleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:titleTextColor */ public static final int Toolbar_titleTextColor = 27; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd com.companyname.GitSearcher.Android:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.companyname.GitSearcher.Android:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme com.companyname.GitSearcher.Android:theme}</code></td><td></td></tr> </table> @see #View_android_focusable @see #View_android_theme @see #View_paddingEnd @see #View_paddingStart @see #View_theme */ public static final int[] View = { 0x01010000, 0x010100da, 0x7f010113, 0x7f010114, 0x7f010115 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #View} array. @attr name android:focusable */ public static final int View_android_focusable = 1; /** <p>This symbol is the offset where the {@link android.R.attr#theme} attribute's value can be found in the {@link #View} array. @attr name android:theme */ public static final int View_android_theme = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#paddingEnd} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#paddingStart} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#theme} attribute's value can be found in the {@link #View} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.GitSearcher.Android:theme */ public static final int View_theme = 4; /** Attributes that can be used with a ViewBackgroundHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.companyname.GitSearcher.Android:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.GitSearcher.Android:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010116, 0x7f010117 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #ViewBackgroundHelper} array. @attr name android:background */ public static final int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#backgroundTint} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.GitSearcher.Android:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.companyname.GitSearcher.Android.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.GitSearcher.Android:backgroundTintMode */ public static final int ViewBackgroundHelper_backgroundTintMode = 2; /** Attributes that can be used with a ViewStubCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> </table> @see #ViewStubCompat_android_id @see #ViewStubCompat_android_inflatedId @see #ViewStubCompat_android_layout */ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:id */ public static final int ViewStubCompat_android_id = 0; /** <p>This symbol is the offset where the {@link android.R.attr#inflatedId} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:layout */ public static final int ViewStubCompat_android_layout = 1; }; }
b43fb26a7aa500efe618c61cba73558c40a8d214
8fd10c44779c8643a4ed4dad78a91b48416c22d0
/app/src/main/java/com/nthu/project/wifiP2PApp/service/ServerService.java
1da7c5693c82b644678d7beb372f47c183af1a05
[]
no_license
FongX777/NeverLost
829976b87925dd1a99a45d49790a9e5cfc6babd2
46600dc630b50682ca312f1a5929cac8f3925bca
refs/heads/master
2021-06-09T09:28:44.185011
2016-12-02T10:25:05
2016-12-02T10:25:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,453
java
package com.nthu.project.wifiP2PApp.service; import android.app.IntentService; import android.content.Intent; import android.content.Context; import android.media.MediaPlayer; import android.util.Log; import com.nthu.project.wifiP2PApp.internet.ApManager; import com.nthu.project.wifiP2PApp.R; import com.nthu.project.wifiP2PApp.WiFiDirectActivity; import java.io.IOException; import java.io.ObjectInputStream; import java.net.ServerSocket; import java.net.Socket; public class ServerService extends IntentService { public ServerService() { super("ServerService"); } @Override protected void onHandleIntent(Intent intent) { try { Log.d("ServerService", "onHandleIntent"); Context context = this; boolean ring_state = false; MediaPlayer mediaPlayer; mediaPlayer = MediaPlayer.create(context, R.raw.ring); mediaPlayer.setLooping(true); while (true) { String[] receiveMsg; ServerSocket serverSocket = new ServerSocket(8988); Log.d(WiFiDirectActivity.TAG, "Server: Socket opened"); Socket client = serverSocket.accept(); Log.d(WiFiDirectActivity.TAG, "Server: connection done"); ObjectInputStream input = new ObjectInputStream(client.getInputStream()); receiveMsg = (String[]) input.readObject(); Log.d(WiFiDirectActivity.TAG, "receive "+receiveMsg[0]); if (receiveMsg[0].equals("ring")){ if (!ring_state) { Log.d("ring test ", "start"); mediaPlayer.start(); ring_state = true; } else { Log.d("ring test ", "stop"); mediaPlayer.pause(); ring_state = false; } } else if(receiveMsg[0].equals("ap")){ //Detail modify ApManager.configApState(context); //ApManager.setHotspotName("LinTzuAn",context); Log.e("group_owner ap mode", "after toggling"); try { Log.e("group_owner ap mode", "before sleep"); Thread.sleep(20000); } catch (InterruptedException e) { e.printStackTrace(); }finally { Log.e("group_owner ap mode", "finally"); ApManager.configApState(context); try { Thread.sleep(10000); } catch (InterruptedException e) { e.printStackTrace(); } Intent intent2 = new Intent(context, bkDiscover.class); context.startService(intent2); } } serverSocket.close(); Log.d(WiFiDirectActivity.TAG, "Server: Socket closed"); } } catch (IOException e) { Log.e(WiFiDirectActivity.TAG, e.getMessage()); } catch (ClassNotFoundException e) { e.printStackTrace(); } } }
8656cc5e5ebb93a21f59446a1829e9e22ee025c8
f2f48ae87d10ab6215fca7400402e65a7d90c5cd
/erp/src/main/java/com/scd/erp/Vo/ToExcel/PersonToExcel.java
adfea2a22c4ba14cb5e9e385c4e49f32943ee06e
[]
no_license
1223pengfei/ERP
f5ff101a699e728d1ca608ee2465a1eb69433f41
c102d3ff6f0a191be41865a2b04a0a6ec6efe916
refs/heads/master
2022-12-28T18:30:27.377216
2020-09-27T07:20:39
2020-09-27T07:20:39
298,970,109
0
0
null
null
null
null
UTF-8
Java
false
false
2,821
java
package com.scd.erp.Vo.ToExcel; import cn.afterturn.easypoi.excel.annotation.Excel; import java.io.Serializable; public class PersonToExcel implements Serializable { @Excel(name = "姓名") private String name; @Excel(name = "性别", orderNum = "3", replace = {"女_F", "男_M", "其他_N"}) private String sex; @Excel(name = "年龄", orderNum = "4") private String age; @Excel(name = "户籍省份", orderNum = "5") private String adr; @Excel(name = "身份证号", orderNum = "6") private String idcard; @Excel(name = "公司邮箱", orderNum = "7") private String fixMail; @Excel(name = "全部联系方式", orderNum = "8") private String cantact; @Excel(name = "部门", orderNum = "1") private String depart; @Excel(name = "职位", orderNum = "2") private String job; public PersonToExcel() { } public PersonToExcel(String name, String sex, String age, String adr, String idcard, String fixMail, String cantact) { this.name = name; this.sex = sex; this.age = age; this.adr = adr; this.idcard = idcard; this.fixMail = fixMail; this.cantact = cantact; } public PersonToExcel(String name, String sex, String age, String adr, String idcard, String fixMail, String cantact, String depart, String job) { this.name = name; this.sex = sex; this.age = age; this.adr = adr; this.idcard = idcard; this.fixMail = fixMail; this.cantact = cantact; this.depart = depart; this.job = job; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getSex() { return sex; } public void setSex(String sex) { this.sex = sex; } public String getAge() { return age; } public void setAge(String age) { this.age = age; } public String getAdr() { return adr; } public void setAdr(String adr) { this.adr = adr; } public String getIdcard() { return idcard; } public void setIdcard(String idcard) { this.idcard = idcard; } public String getFixMail() { return fixMail; } public void setFixMail(String fixMail) { this.fixMail = fixMail; } public String getCantact() { return cantact; } public void setCantact(String cantact) { this.cantact = cantact; } public String getDepart() { return depart; } public void setDepart(String depart) { this.depart = depart; } public String getJob() { return job; } public void setJob(String job) { this.job = job; } }
d99a2e9c92517c162c4b6f96309ee1a7da77bbb6
be55285edbca96a3cdcf1c945e4363aa8455f15e
/src/main/java/co/iay/leetcode/Hard/BinaryTreePostorderTraversal.java
56af0bf0d69f106d32c62e4623ad43c9d8ce7321
[]
no_license
liaoaoyang/LeetCode
03ce3ddfdf55968f719c857bc9f42f0cdd40e20f
338f8137c3223b4f1d73b9b96f85637ea54975f9
refs/heads/master
2021-01-16T23:41:42.275307
2019-04-25T00:05:16
2019-04-25T00:05:16
55,667,787
1
0
null
null
null
null
UTF-8
Java
false
false
685
java
package co.iay.leetcode.Hard; import co.iay.leetcode.DataStructures.TreeNode; import java.util.ArrayList; import java.util.List; /** * Created by ng on 17/4/17. * 145. Binary Tree Postorder Traversal * https://leetcode.com/problems/binary-tree-postorder-traversal/ */ public class BinaryTreePostorderTraversal { private static void pt(List<Integer> l, TreeNode root) { if (null == root) { return; } pt(l, root.left); pt(l, root.right); l.add(root.val); } public List<Integer> postorderTraversal(TreeNode root) { List<Integer> r = new ArrayList<Integer>(); pt(r, root); return r; } }
94bb66f9578b2da457cdd10c06790110246c988e
38fbbd698834c1b588f2ca6eb182e392e80aa9d7
/Java API/src/main/java/com/example/demo/employ/EmployController.java
ce71ea016587f96763ffa57f02b5a5f739ed367e
[]
no_license
xhynek11/Java-API
2fd42d3b8ead5ff643b9143b0a6182881c2acb67
e0363262595f8712f914b5e78f72a5c307c3d7e2
refs/heads/main
2023-06-05T17:33:32.370025
2021-06-02T14:30:28
2021-06-02T14:30:28
373,196,882
0
0
null
null
null
null
UTF-8
Java
false
false
1,302
java
package com.example.demo.employ; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.time.LocalDate; import java.time.Month; import java.util.List; @RestController @RequestMapping(path = "api/v1/employ") public class EmployController { private final EmployService employService; @Autowired public EmployController(EmployService employService) { this.employService = employService; } @GetMapping public List<Employ> getEmploy(){ return employService.getEmploy(); } @PostMapping public void registerNewEmploy(@RequestBody Employ employ){ employService.addNewEmploy(employ); } @DeleteMapping(path = "{employId}") public void deleteEmploy(@PathVariable("employId") Long employId){ employService.deleteEmploy(employId); } @PutMapping(path = "{employId}") public void updateStudent( @PathVariable("employId") Long employId, @RequestParam(required = false) String name, @RequestParam(required = false) String email, @RequestParam(required = false) Integer salary){ employService.updateEmploy(employId, name, email,salary); } }
daeae1f36549c2871e8afdc6d7bffe547f9c7cb8
a026475b391940538b0fd0f34c9475353168612a
/auto-retailer/retail-management-adapters/src/main/java/com/developerbhuwan/reatil/management/persistence/RequestDao.java
b93533c3c78f7cc4c1d169c33c4f3666b9e2c2d0
[ "MIT" ]
permissive
devbhuwan/CreativeLabs
494827cec9766fe571117379b4decbd791518d0b
bfa56bc1661cd95272582b583216a8f2b9530852
refs/heads/master
2020-03-20T17:18:26.223779
2018-06-22T05:25:46
2018-06-22T05:25:46
137,556,521
1
0
MIT
2018-06-18T08:17:42
2018-06-16T05:44:38
null
UTF-8
Java
false
false
381
java
package com.developerbhuwan.reatil.management.persistence; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.rest.core.annotation.RestResource; import java.util.Optional; @RestResource(exported = false) public interface RequestDao extends JpaRepository<RequestEntity, Long> { Optional<RequestEntity> findByRefNo(String refNo); }
aaae7e774e0f076e46ee9cadebd37892615e667f
14a0d0dc977295cc1077a099e12ca05794e7f84a
/gokong-main/src/main/java/cn/gokong/www/gokongmain/web/ShopCityContrroller.java
b18330d2beb9d1cd1897aa820edb0a0ac3d95dcf
[]
no_license
yht-817/gokong-manage
2ec59e86fd1aa8839b6566471026d78c55e2b8c5
f779614f12b30ccf2495856f873d6b9c87898612
refs/heads/master
2020-05-03T18:55:09.754700
2019-04-01T03:05:45
2019-04-01T03:05:45
178,774,202
0
0
null
null
null
null
UTF-8
Java
false
false
319
java
package cn.gokong.www.gokongmain.web; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.stereotype.Controller; /** * <p> * 前端控制器 * </p> * * @author ikook * @since 2018-10-16 */ @Controller @RequestMapping("/shopCity") public class ShopCityContrroller { }
4e42754dafff91aaab1923113174cea060d29c5c
9cec2360c4d9d93a34be6e6e00e68894976b00a8
/src/Univercity/Grade.java
292b0b74c91e1dfeee956a1a660eedf14732a658
[]
no_license
fellownew/KOSTA_JAVA
70e9a455130d0b82dc2c40101364f2c3d93b3e45
a0f4641480b3194237a1840d832a837bcba84d88
refs/heads/master
2021-01-10T20:08:31.180368
2015-01-15T08:39:49
2015-01-15T08:39:49
28,993,348
1
0
null
null
null
null
UTF-8
Java
false
false
205
java
public class Grade{ String subject; int subNo,stuNo; float grade; public Grade(){ } public Grade(String sub,int sbN,int stN,float g){ subject=sub; subNo=sbN; stuNo=stN; grade=g; } }
8d9b9700ff694cb3de3c481c228d791c2417a039
9610ba60bcc6399faa0c4cd3bac4e61e7bb40499
/src/main/java/com/kgo/elasticsearch/learn/LearnApplication.java
1c0a9863f2a5ebdfc1175c477096af40f4a95d18
[]
no_license
keepgoon/Elasticsearch-learn
6c9e12a799fc7d79d8f8ddbd4d05c9b227ea6202
180351b3d64a6e655ea76b672d72675d59727258
refs/heads/master
2022-11-30T15:38:36.937072
2020-08-17T02:18:52
2020-08-17T02:18:52
288,063,093
0
0
null
null
null
null
UTF-8
Java
false
false
330
java
package com.kgo.elasticsearch.learn; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class LearnApplication { public static void main(String[] args) { SpringApplication.run(LearnApplication.class, args); } }
940e537b8f388b03401359bc785df2684217a65b
09aa2a7b409385ac8435ca41acd86d6042d34861
/src/main/java/com/xiaoliu/until/AliSmsUtil.java
a864066b451c900958dc4991c11506954b48f5b7
[]
no_license
hcxiaoliu/study_springboot
bbf294992602df3f91975767a509d47f46b9f8c3
5a77d10c670d527c57a8c28d0585ed33b63cc234
refs/heads/master
2022-10-19T12:07:49.019407
2019-06-10T06:40:41
2019-06-10T06:40:41
183,724,327
1
1
null
2022-10-12T20:27:26
2019-04-27T03:37:39
Java
UTF-8
Java
false
false
1,411
java
package com.xiaoliu.until; import java.util.HashMap; import java.util.Map; import com.alibaba.fastjson.JSONObject; import org.apache.http.HttpResponse; import org.apache.http.util.EntityUtils; /** * 阿里云短信接口 */ public class AliSmsUtil { private static String host = "https://fesms.market.alicloudapi.com"; private static String path = "/sms/"; private static String method = "GET"; private static String appcode = "c2df5d37c8804ab1876df51400f7bb74"; private static Map<String, String> headers = null; static{ headers = new HashMap<>(); headers.put("Authorization", "APPCODE " + appcode); } public static JSONObject sendCode(Map<String, String> querys){ try { HttpResponse response = HttpUtils.doGet(host, path, method, headers, querys); int statusCode = response.getStatusLine().getStatusCode(); if(statusCode == 200){ return JSONObject.parseObject(EntityUtils.toString(response.getEntity())); } else { JSONObject error = new JSONObject(); error.put("Code", statusCode); return error; } } catch (Exception e) { // e.printStackTrace(); } return null; } public static void main(String[] args) { Map<String, String> querys = new HashMap<>(); querys.put("code", "12345678"); querys.put("phone", "13229574249"); querys.put("skin", "900434"); querys.put("sign", "500274"); System.out.println(sendCode(querys)); } }
04b61099c694c30a16d9253601f91f3fae17928c
f8f29387ca514393e67bb0288ddbca828a98eac0
/src/main/java/com/baosian/services/CommentServiceImpl.java
5deaa424eabc91bf1581798d7b6564fa78c0aa76
[]
no_license
baosian/DetochkinBlog
78c04839fc2836650b38abe1748eee0dc106e53c
2c8cb8c095d0b52d112138b38656bf83a9a94649
refs/heads/master
2020-04-30T17:56:58.412760
2019-03-26T20:55:23
2019-03-26T20:55:23
176,995,410
0
0
null
null
null
null
UTF-8
Java
false
false
921
java
package com.baosian.services; import com.baosian.entity.Comment; import com.baosian.repositories.CommentRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class CommentServiceImpl implements CommentService{ @Autowired private CommentRepository commentRepository; @Override public Comment addComment(Comment comment) { Comment savedComment = commentRepository.saveAndFlush(comment); return savedComment; } @Override public void delete(Integer id) { commentRepository.deleteById(id); } @Override public Comment editComment(Comment comment) { return commentRepository.saveAndFlush(comment); } @Override public List<Comment> getAllCommentsOfArticle(Integer article_id) { return commentRepository.findAll(); } }
0157aa07657726c665a9e3ac8705fe0b64717128
9cc96f4988b2b349e95dd1e6339b57d473a81218
/app/src/main/java/com/example/travelpartner/Requests.java
1c16ebf80cb70e98a88e3915e7f4ac43797a66de
[]
no_license
HarshiD123/MAD_Project
1bfd966cff950bb15555ea1b41e333178d900995
ba240ceddcc498c0651bc49bac760eb418fa8fe1
refs/heads/master
2023-04-23T19:11:05.023094
2021-05-14T08:46:31
2021-05-14T08:46:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,223
java
package com.example.travelpartner; public class Requests { String Name; String ADID; String RequesterUserName; String YourUserName; String contactNumber; String MeetingPoint; public Requests() { } public String getAdID() { return ADID; } public void setAdID(String adID) { this.ADID = adID; } public String getName() { return Name; } public void setName(String name) { Name = name; } public String getRequesterUserName() { return RequesterUserName; } public void setRequesterUserName(String requesterUserName) { RequesterUserName = requesterUserName; } public String getYourUserName() { return YourUserName; } public void setYourUserName(String yourUserName) { YourUserName = yourUserName; } public String getContactNumber() { return contactNumber; } public void setContactNumber(String contactNumber) { this.contactNumber = contactNumber; } public String getMeetingPoint() { return MeetingPoint; } public void setMeetingPoint(String meetingPoint) { MeetingPoint = meetingPoint; } }
a27d8bf32acb126ed24cc638f1d14dee1c48553b
ff04362a32a926bc12c1ee1e124d476709e9d41a
/src/main/java/gui/ClientApp.java
33f7eead1b18a7d7bd1e2fc361bd481bbe5f6854
[]
no_license
NguyenHung-Hub/T7-socketOGM-client
c31c502f56da87513be1fc0bc25a65c3a0dff922
fb8fe3b58ea565a13599812dc670bd6d01dfdfa6
refs/heads/master
2023-08-29T23:37:52.986301
2021-11-07T12:21:52
2021-11-07T12:21:52
425,496,046
0
0
null
null
null
null
UTF-8
Java
false
false
3,782
java
package gui; import java.awt.BorderLayout; import java.awt.Container; import java.io.DataOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.net.Socket; import java.util.List; import javax.swing.Box; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JScrollPane; import javax.swing.JTextArea; import javax.swing.JTextField; import javax.swing.SwingUtilities; import model.Product; public class ClientApp extends JFrame { private static final long serialVersionUID = 7090060221530791948L; private JTextField txtProductName; private JButton btnSearch; private JTextArea ta; private DataOutputStream out; private ObjectInputStream in; private JTextField txtProductID; private JButton btnNotSold; private JButton btnTotal; public ClientApp() { setTitle("Student Manager"); setSize(800, 600); setDefaultCloseOperation(EXIT_ON_CLOSE); setLocationRelativeTo(null); Container cp = getContentPane(); // Box b; // cp.add(b = Box.createHorizontalBox(), BorderLayout.NORTH); // b.add(txtProductName = new JTextField("Frameset")); // b.add(btnSearch = new JButton("Search Product")); cp.add(new JScrollPane(ta = new JTextArea())); Box mainBox = Box.createVerticalBox(); cp.add(mainBox, BorderLayout.NORTH); Box b1 = Box.createHorizontalBox(); b1.add(txtProductName = new JTextField("Frameset")); b1.add(btnSearch = new JButton("Search Product")); mainBox.add(b1); Box b2 = Box.createHorizontalBox(); b2.add(btnNotSold = new JButton("Product not sold")); mainBox.add(b2); Box b3 = Box.createHorizontalBox(); b3.add(btnTotal = new JButton("Get total Product")); mainBox.add(b3); new Thread(() -> { try { Socket socket = new Socket("192.168.1.2", 9080); out = new DataOutputStream(socket.getOutputStream()); in = new ObjectInputStream(socket.getInputStream()); } catch (IOException e) { e.printStackTrace(); } }).start(); btnSearch.addActionListener((e) -> { System.out.println("dang tim"); try { // gửi kết quả String productTitle = txtProductName.getText(); out.writeUTF("1>" + productTitle); // Nhận kết quả @SuppressWarnings("unchecked") List<Product> products = (List<Product>) in.readObject(); if (products == null) { ta.append("null"); } else { ta.setText(""); for (Product product : products) { SwingUtilities.invokeLater(() -> { ta.append("\n" + product.toString()); }); } } } catch (Exception e1) { e1.printStackTrace(); } }); btnNotSold.addActionListener((e) -> { System.out.println("dang tim2"); try { // gửi kết quả // String productTitle = txtProductID.getText(); out.writeUTF("2>" + "null"); // Nhận kết quả List<Product> products = (List<Product>) in.readObject(); if (products == null) { ta.append("null"); } else { ta.setText("San pham chua ban dc"); for (Product product : products) { SwingUtilities.invokeLater(() -> { ta.append("\n" + product.toString()); }); } } } catch (Exception e1) { e1.printStackTrace(); } }); btnTotal.addActionListener((e) -> { System.out.println("dang tim3"); try { // gửi kết quả // String productTitle = txtProductID.getText(); out.writeUTF("3>" + "null"); // Nhận kết quả int total = (int) in.readObject(); if (total == 0) { ta.append("null"); } else { ta.setText("Tong so san pham: " + total); } } catch (Exception e1) { e1.printStackTrace(); } }); } public static void main(String[] args) { SwingUtilities.invokeLater(() -> { new ClientApp().setVisible(true); }); } }
ba0a92a3c9b577d97c40f7109af9f8e865f87f64
cc6ce4264771c2811e8d25ebe938b6ad05038265
/src/org/ctlv/proxmox/api/Constants.java
1ce038e5261b50e60e07f91c0d894cbcc4b0c27c
[]
no_license
DamarisMenfer/Adaptabilite-tp2
f1a75cfd3119b77d50e231d28753a5a2bdaada18
e7d68154998bae89dc969df125ddf37607e73a43
refs/heads/master
2020-04-20T07:13:02.258950
2019-02-01T13:57:45
2019-02-01T13:57:45
168,704,928
0
0
null
null
null
null
UTF-8
Java
false
false
1,443
java
package org.ctlv.proxmox.api; public class Constants { public static String USER_NAME = "j_combes"; // votre nom d'utilisateur : XXX public static String PASS_WORD = "3S?bUPsc"; // votre mot de passe . XXX public static String HOST = "srv-px7.insa-toulouse.fr"; // XXX public static String REALM = "Ldap-INSA"; public static String SERVER1 = "srv-px7"; // exemple "srv-px2" XXX public static String SERVER2 = "srv-px8"; // XXX public static String CT_BASE_NAME = "ct-tpgei-virt-B4-ct1"; // "XX" � remplacer par votre num�ro de bin�me. Exemple: ct-tpgei-virt-A3-ct � concat�ner avec le num�ro du CT public static long CT_BASE_ID = -1; // � modifier (cf. sujet de tp) XXX public static long GENERATION_WAIT_TIME = 10; public static String CT_TEMPLATE = "template:vztmpl/debian-8-turnkey-nodejs_14.2-1_amd64.tar.gz"; // XXX public static String CT_PASSWORD = "tpuser"; public static String CT_HDD = "vm:3"; public static String CT_NETWORK = "name=eth0,bridge=vmbr1,ip=dhcp,tag=2028,type=veth"; public static float CT_CREATION_RATIO_ON_SERVER1 = 0.66f; public static float CT_CREATION_RATIO_ON_SERVER2 = 0.33f; public static long RAM_SIZE[] = new long[]{256, 512, 768}; public static long MONITOR_PERIOD = 10; public static float MIGRATION_THRESHOLD = 0.08f; public static float DROPPING_THRESHOLD = 0.12f; public static float MAX_THRESHOLD = 0.16f; }
3401dacf58a19d6d6384c6e08b1a513494c05c1f
a1e512aac388e58e139b82a171631caa950e46af
/src/com/katsura/concurrencyInJava7/chapter4/example10/ReportRequest.java
41837d79f01f38798be04f6e6ab250f2281a01d9
[]
no_license
YHGui/common-code
89ea4e65ff9af654409355d3167dae3dac3020d4
05e6abf152fc1dc348d87329e0b6fe9ecc3d8bae
refs/heads/master
2021-01-16T19:24:35.121563
2018-12-15T05:21:16
2018-12-15T05:21:16
100,162,788
4
1
null
null
null
null
UTF-8
Java
false
false
601
java
package com.katsura.concurrencyInJava7.chapter4.example10; import java.util.concurrent.CompletionService; /** * Created by Katsura on 2017/4/14. */ public class ReportRequest implements Runnable{ private String name; private CompletionService<String> service; public ReportRequest(String name, CompletionService<String> service) { this.name = name; this.service = service; } @Override public void run() { ReportGenerator reportGenerator = new ReportGenerator(name, "Report"); service.submit(reportGenerator); } }
ad0956500d9bc6cfd72fd79605fea02c6d64e802
55040e1e79baf7d5e76d8484193779d2cd4ffe01
/MCDynamicExchanger/src/io/github/nickid2018/compare/CompareProgram.java
306ce1ca293fcd1f6c33a0342c06e2b24e8e1d85
[]
no_license
usench/MCDynamicExchanger
58c7687318e05199a9e85e8e41fc59cc6bec54e0
58cb27bb664c2efe1799221dc9dc535ca696878a
refs/heads/master
2023-08-20T07:48:03.031440
2021-10-08T09:17:08
2021-10-08T09:17:08
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,901
java
package io.github.nickid2018.compare; import io.github.nickid2018.I18N; import io.github.nickid2018.SortedConsoleLogger; import io.github.nickid2018.argparser.CommandResult; import io.github.nickid2018.util.AddClassPath; import io.github.nickid2018.util.ClassUtils; import java.io.IOException; import java.io.InputStream; import java.util.*; import java.util.zip.ZipEntry; import java.util.zip.ZipFile; import static io.github.nickid2018.ProgramMain.logger; public class CompareProgram { public final List<String> files = new ArrayList<>(); public final Map<String, InputStream> oldVersionEntries = new HashMap<>(); private final ZipFile oldV; private final ZipFile newV; private final boolean excludeRes; public Enumeration<? extends ZipEntry> newVersionEntries; public CompareProgram(String oldVersion, String newVersion, boolean excludeRes) throws IOException { oldV = new ZipFile(oldVersion); newV = new ZipFile(newVersion); newVersionEntries = newV.entries(); this.excludeRes = excludeRes; initOldVersion(); } public static void compareSimple(CommandResult res) { logger = new SortedConsoleLogger(); if (!ClassUtils.isClassExists("org.apache.commons.io.IOUtils") && !AddClassPath.tryToLoadMCLibrary("commons-io/commons-io")) { logger.formattedInfo("error.libraries.io"); logger.flush(); return; } try { CompareProgram program = new CompareProgram(res.getSwitch("old_version").toString(), res.getSwitch("new_version").toString(), !res.containsSwitch("-Rs")); while (program.hasNext()) { CompareResult result = program.next(); if (result == null) continue; if (result.type != CompareResultType.NONE) logger.info(result.getMessage() + (res.containsSwitch("-D") ? "[SHA-256: " + result.oldSHA256 + " -> " + result.newSHA256 + "]" : "")); } program.close(); } catch (Throwable e) { logger.error(I18N.getText("error.unknown"), e); } logger.flush(); } public void initOldVersion() throws IOException { Enumeration<? extends ZipEntry> oldEntries = oldV.entries(); while (oldEntries.hasMoreElements()) { ZipEntry entry = oldEntries.nextElement(); String name = entry.getName(); boolean isClass = name.endsWith(".class"); if (!isClass && excludeRes) continue; name = (isClass ? name.replace('/', '.') : name).substring(0, name.length() - (isClass ? 6 : 0)); oldVersionEntries.put(name, oldV.getInputStream(entry)); files.add(name); } } public boolean hasNext() { return !oldVersionEntries.isEmpty() || newVersionEntries.hasMoreElements(); } public CompareResult next() throws IOException { while (newVersionEntries.hasMoreElements()) { ZipEntry entry = newVersionEntries.nextElement(); String name = entry.getName(); boolean isClass = name.endsWith(".class"); if (isClass || !excludeRes) { name = (isClass ? name.replace('/', '.') : name).substring(0, name.length() - (isClass ? 6 : 0)); files.remove(name); return new CompareResult(name, oldVersionEntries.remove(name), newV.getInputStream(entry)); } } if (!oldVersionEntries.isEmpty()) { String name = files.remove(0); return new CompareResult(name, oldVersionEntries.remove(name), null); } return null; } public void close() throws IOException { oldV.close(); newV.close(); } }
56bfe8db96ad2208d778b3793f6ab7a3bcaee682
e9affefd4e89b3c7e2064fee8833d7838c0e0abc
/aws-java-sdk-amplifyuibuilder/src/main/java/com/amazonaws/services/amplifyuibuilder/model/transform/UpdateComponentDataMarshaller.java
150c62cbd81560088ae4b346800d2d7e58821a12
[ "Apache-2.0" ]
permissive
aws/aws-sdk-java
2c6199b12b47345b5d3c50e425dabba56e279190
bab987ab604575f41a76864f755f49386e3264b4
refs/heads/master
2023-08-29T10:49:07.379135
2023-08-28T21:05:55
2023-08-28T21:05:55
574,877
3,695
3,092
Apache-2.0
2023-09-13T23:35:28
2010-03-22T23:34:58
null
UTF-8
Java
false
false
5,489
java
/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.amplifyuibuilder.model.transform; import java.util.Map; import java.util.List; import javax.annotation.Generated; import com.amazonaws.SdkClientException; import com.amazonaws.services.amplifyuibuilder.model.*; import com.amazonaws.protocol.*; import com.amazonaws.annotation.SdkInternalApi; /** * UpdateComponentDataMarshaller */ @Generated("com.amazonaws:aws-java-sdk-code-generator") @SdkInternalApi public class UpdateComponentDataMarshaller { private static final MarshallingInfo<String> ID_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("id").build(); private static final MarshallingInfo<String> NAME_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("name").build(); private static final MarshallingInfo<String> SOURCEID_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("sourceId").build(); private static final MarshallingInfo<String> COMPONENTTYPE_BINDING = MarshallingInfo.builder(MarshallingType.STRING) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("componentType").build(); private static final MarshallingInfo<Map> PROPERTIES_BINDING = MarshallingInfo.builder(MarshallingType.MAP).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("properties").build(); private static final MarshallingInfo<List> CHILDREN_BINDING = MarshallingInfo.builder(MarshallingType.LIST).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("children").build(); private static final MarshallingInfo<List> VARIANTS_BINDING = MarshallingInfo.builder(MarshallingType.LIST).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("variants").build(); private static final MarshallingInfo<Map> OVERRIDES_BINDING = MarshallingInfo.builder(MarshallingType.MAP).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("overrides").build(); private static final MarshallingInfo<Map> BINDINGPROPERTIES_BINDING = MarshallingInfo.builder(MarshallingType.MAP) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("bindingProperties").build(); private static final MarshallingInfo<Map> COLLECTIONPROPERTIES_BINDING = MarshallingInfo.builder(MarshallingType.MAP) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("collectionProperties").build(); private static final MarshallingInfo<Map> EVENTS_BINDING = MarshallingInfo.builder(MarshallingType.MAP).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("events").build(); private static final MarshallingInfo<String> SCHEMAVERSION_BINDING = MarshallingInfo.builder(MarshallingType.STRING) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("schemaVersion").build(); private static final UpdateComponentDataMarshaller instance = new UpdateComponentDataMarshaller(); public static UpdateComponentDataMarshaller getInstance() { return instance; } /** * Marshall the given parameter object. */ public void marshall(UpdateComponentData updateComponentData, ProtocolMarshaller protocolMarshaller) { if (updateComponentData == null) { throw new SdkClientException("Invalid argument passed to marshall(...)"); } try { protocolMarshaller.marshall(updateComponentData.getId(), ID_BINDING); protocolMarshaller.marshall(updateComponentData.getName(), NAME_BINDING); protocolMarshaller.marshall(updateComponentData.getSourceId(), SOURCEID_BINDING); protocolMarshaller.marshall(updateComponentData.getComponentType(), COMPONENTTYPE_BINDING); protocolMarshaller.marshall(updateComponentData.getProperties(), PROPERTIES_BINDING); protocolMarshaller.marshall(updateComponentData.getChildren(), CHILDREN_BINDING); protocolMarshaller.marshall(updateComponentData.getVariants(), VARIANTS_BINDING); protocolMarshaller.marshall(updateComponentData.getOverrides(), OVERRIDES_BINDING); protocolMarshaller.marshall(updateComponentData.getBindingProperties(), BINDINGPROPERTIES_BINDING); protocolMarshaller.marshall(updateComponentData.getCollectionProperties(), COLLECTIONPROPERTIES_BINDING); protocolMarshaller.marshall(updateComponentData.getEvents(), EVENTS_BINDING); protocolMarshaller.marshall(updateComponentData.getSchemaVersion(), SCHEMAVERSION_BINDING); } catch (Exception e) { throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e); } } }
[ "" ]
48bc1c47de847ae251c847c2875baed703f692f1
ceb22777237babb2761e6bed8f0ecb4b3cbe948a
/Day9FileHandling/FileDemo.java
917dd536e36dbc7dd4b86032bbf8f84d750b4554
[]
no_license
simranshaikh/imp
195baef42a6224b7d778a8c57520e08d2f907d77
5afcbe57b616ce97671db48a17e2146d3ece3970
refs/heads/master
2021-01-20T02:56:29.114947
2017-04-26T10:51:28
2017-04-26T10:51:28
89,470,372
0
0
null
null
null
null
UTF-8
Java
false
false
470
java
package Day9FileHandling; import java.io.File; import java.io.IOException; public class FileDemo { public static void main(String[] args) { File f=new File("data.txt"); if (f.exists()) System.out.println("File exists"); else try { if(f.createNewFile()) System.out.println("File is created....."); else System.out.println("some Error..."); } catch (IOException e) { e.printStackTrace(); } } }
ebc2f429a022b00831828478f4e72559e8795760
8835be5ceb9987d07b8976580ec18308347396b8
/src/main/java/com/hoonyb/jwt/utils/JWTUtil.java
bd94e0d3074b04a0bd4e9bb60f3d4d438a49eda2
[]
no_license
PureAppCrystal/java-jwt-example
cbc700bc418a2fb6c8b9a7cc2bf25d2da99909a9
8d31e097d66c6d71fcc55d8b80eb8c8bf125def3
refs/heads/main
2023-04-13T09:37:59.893066
2021-04-26T01:24:24
2021-04-26T01:24:24
361,580,651
0
0
null
null
null
null
UTF-8
Java
false
false
1,823
java
package com.hoonyb.jwt.utils; import java.io.UnsupportedEncodingException; import java.util.Date; import java.util.HashMap; import java.util.Map; import io.jsonwebtoken.Claims; import io.jsonwebtoken.ExpiredJwtException; import io.jsonwebtoken.Jwts; import io.jsonwebtoken.SignatureAlgorithm; public class JWTUtil { final static String key = "bt-jwt"; // 토큰 생성 public static String createToken() { //Header Map<String, Object> headers = new HashMap<>(); headers.put("typ", ",JWT"); headers.put("alg", "HS256"); //payload Map<String, Object> payloads = new HashMap<>(); payloads.put("data", "my First JWT !!"); // expire Long expiredTime = 1000 * 60L * 60L * 2L; Date ext = new Date(); ext.setTime(ext.getTime() + expiredTime); // builder String jwt = Jwts.builder() .setHeader(headers) .setClaims(payloads) .setSubject("user") .setExpiration(ext) .signWith(SignatureAlgorithm.HS256, key.getBytes()) .compact(); return jwt; } // 토큰 검증 public static Map<String, Object> verifyJWT(String jwt) throws UnsupportedEncodingException { Map<String, Object> claimMap = null; try { Claims claims = Jwts.parser() .setSigningKey(key.getBytes("UTF-8")) .parseClaimsJws(jwt) .getBody(); claimMap = claims; } catch (ExpiredJwtException e) { System.out.println("ExpiredJwtException : " + e); } catch (Exception e ) { System.out.println("exception : " + e); } return claimMap; } }
60d6628c50de34931b8852f32a735555ffe7679c
0a817eec326d3018a98822466cd569633c271c9f
/NaturalNumberCalculator/src/NNCalcController1.java
4d4b64a574bfa047e417f4a66257dde4de135de8
[]
no_license
sdwcxyszq/cse2221
d6003050e60a3d8ba6696efa590b3a3c561fc188
448fec04d6b5c8190e17b8a26c8746781e0221f3
refs/heads/master
2021-06-28T17:26:41.105513
2020-11-08T00:11:07
2020-11-08T00:11:07
185,743,891
2
0
null
null
null
null
UTF-8
Java
false
false
7,209
java
import components.naturalnumber.NaturalNumber; import components.naturalnumber.NaturalNumber2; /** * Controller class. * * @author Put your name here */ public final class NNCalcController1 implements NNCalcController { /** * Model object. */ private final NNCalcModel model; /** * View object. */ private final NNCalcView view; /** * Useful constants. */ private static final NaturalNumber TWO = new NaturalNumber2(2), INT_LIMIT = new NaturalNumber2(Integer.MAX_VALUE); /** * Updates this.view to display this.model, and to allow only operations * that are legal given this.model. * * @param model * the model * @param view * the view * @ensures [view has been updated to be consistent with model] */ private static void updateViewToMatchModel(NNCalcModel model, NNCalcView view) { NaturalNumber top = model.top(); NaturalNumber bot = model.bottom(); if(bot.toString().equals("0")) { view.updateDivideAllowed(false); }else { view.updateDivideAllowed(true); } if(bot.compareTo(TWO)<0) { view.updateRootAllowed(false); }else { view.updateRootAllowed(true); } if(bot.compareTo(top)>0) { view.updateSubtractAllowed(false); }else { view.updateSubtractAllowed(true); } if(bot.compareTo(INT_LIMIT)>0) { view.updatePowerAllowed(false); view.updateRootAllowed(false); }else { view.updatePowerAllowed(true); view.updatePowerAllowed(true); } view.updateTopDisplay(model.top()); view.updateBottomDisplay(model.bottom()); } /** * Constructor. * * @param model * model to connect to * @param view * view to connect to */ public NNCalcController1(NNCalcModel model, NNCalcView view) { this.model = model; this.view = view; updateViewToMatchModel(model, view); } @Override public void processClearEvent() { /* * Get alias to bottom from model */ NaturalNumber bottom = this.model.bottom(); /* * Update model in response to this event */ bottom.clear(); /* * Update view to reflect changes in model */ updateViewToMatchModel(this.model, this.view); } @Override public void processSwapEvent() { /* * Get aliases to top and bottom from model */ NaturalNumber top = this.model.top(); NaturalNumber bottom = this.model.bottom(); /* * Update model in response to this event */ NaturalNumber temp = top.newInstance(); temp.transferFrom(top); top.transferFrom(bottom); bottom.transferFrom(temp); /* * Update view to reflect changes in model */ updateViewToMatchModel(this.model, this.view); } @Override public void processEnterEvent() { /* * Get aliases to top and bottom from model */ NaturalNumber top = this.model.top(); NaturalNumber bottom = this.model.bottom(); /* * Update model in response to this event */ top.transferFrom(bottom); /* * Update view to reflect changes in model */ updateViewToMatchModel(this.model,this.view); } @Override public void processAddEvent() { /* * Get aliases to top and bottom from model */ NaturalNumber top = this.model.top(); NaturalNumber bottom = this.model.bottom(); /* * Update model in response to this event */ NaturalNumber plus = top.newInstance(); plus.transferFrom(top); bottom.add(plus); /* * Update view to reflect changes in model */ updateViewToMatchModel(this.model,this.view); } @Override public void processSubtractEvent() { /* * Get aliases to top and bottom from model */ NaturalNumber top = this.model.top(); NaturalNumber bottom = this.model.bottom(); /* * Update model in response to this event */ NaturalNumber minus = top.newInstance(); minus.transferFrom(top); bottom.subtract(minus); /* * Update view to reflect changes in model */ updateViewToMatchModel(this.model,this.view); } @Override public void processMultiplyEvent() { /* * Get aliases to top and bottom from model */ NaturalNumber top = this.model.top(); NaturalNumber bottom = this.model.bottom(); /* * Update model in response to this event */ NaturalNumber multiply = top.newInstance(); multiply.transferFrom(top); bottom.multiply(multiply); /* * Update view to reflect changes in model */ updateViewToMatchModel(this.model,this.view); } @Override public void processDivideEvent() { /* * Get aliases to top and bottom from model */ NaturalNumber top = this.model.top(); NaturalNumber bottom = this.model.bottom(); /* * Update model in response to this event */ NaturalNumber divide = top.newInstance(); divide.transferFrom(top); bottom.divide(divide); /* * Update view to reflect changes in model */ updateViewToMatchModel(this.model,this.view); } @Override public void processPowerEvent() { /* * Get aliases to top and bottom from model */ NaturalNumber top = this.model.top(); NaturalNumber bottom = this.model.bottom(); /* * Update model in response to this event */ NaturalNumber power = top.newInstance(); power.transferFrom(top); bottom.power(power.toInt()); /* * Update view to reflect changes in model */ updateViewToMatchModel(this.model,this.view); } @Override public void processRootEvent() { /* * Get aliases to top and bottom from model */ NaturalNumber top = this.model.top(); NaturalNumber bottom = this.model.bottom(); /* * Update model in response to this event */ NaturalNumber root = top.newInstance(); root.transferFrom(top); bottom.root(root.toInt()); /* * Update view to reflect changes in model */ updateViewToMatchModel(this.model,this.view); } @Override public void processAddNewDigitEvent(int digit) { /* * Get aliases to bottom from model */ NaturalNumber bottom = this.model.bottom(); /* * Update model in response to this event */ bottom.multiplyBy10(digit); /* * Update view to reflect changes in model */ updateViewToMatchModel(this.model,this.view); } }
c122a5e9c802117da6f5739d4e4c9b59b852dd5b
5a3fb22ba71528aed77e9fcfcc808b83bcd5fb60
/app/src/main/java/com/nthieuitus/googlemapdirectionfinder/Modules/Duration.java
228b0f576cacf8c23a377657256b200939a19773
[]
no_license
1412165/GoogleMapsDirectionAPI
0f65a941b5ca8889089fc16944648225353d6a6e
db049723eaf0234e8a0d4e17bf8833ccbbe12bed
refs/heads/master
2021-01-20T13:37:32.887875
2017-05-07T04:08:47
2017-05-07T04:08:47
90,507,891
0
0
null
null
null
null
UTF-8
Java
false
false
291
java
package com.nthieuitus.googlemapdirectionfinder.Modules; /** * Created by Nguyen Trung Hieu on 3/25/2017. */ public class Duration { public String text; public int value; public Duration(String text, int value) { this.text = text; this.value = value; } }
dbac72539c24c867860126efd21d299365c12225
49cba63bf4ecb4b48ca9945284839bf58be56925
/app/src/androidTest/java/com/lawlett/movies/ExampleInstrumentedTest.java
42fc8a38d66508378abd9893ccb2d750205d0db4
[]
no_license
Azamat753/Movies
abe503f94dd5e06bb61a94b8029e7a7af5bab66f
b839328fcf4483fe9ea2694ef2facafa9e4db5fd
refs/heads/master
2021-01-01T02:08:45.278887
2020-02-08T13:07:31
2020-02-08T13:07:31
239,133,402
0
0
null
null
null
null
UTF-8
Java
false
false
752
java
package com.lawlett.movies; import android.content.Context; import androidx.test.platform.app.InstrumentationRegistry; import androidx.test.ext.junit.runners.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); assertEquals("com.lawlett.movies", appContext.getPackageName()); } }
236f1c6c10841b193a4a2e4493f8db0ff5b0aea4
3c178b1dbb44237afe8d435336a265a73f4d66ea
/com/android/ide/eclipse/adt/internal/editors/manifest/ManifestEditor.java
f6c768775ad748a65071220e4462b20a26343e28
[]
no_license
AndroidSDKSources/android-sdk-sources-for-api-level-5
b7806884853389ff288b3adbdaf28f14893549a0
baef9e37c1298f278f4fc212b9910810bf262a0b
refs/heads/master
2021-01-15T15:05:15.383833
2015-06-13T15:27:01
2015-06-13T15:27:01
37,376,449
3
2
null
null
null
null
UTF-8
Java
false
false
14,474
java
/* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Eclipse Public License, Version 1.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.eclipse.org/org/documents/epl-v10.php * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.ide.eclipse.adt.internal.editors.manifest; import com.android.ide.eclipse.adt.AdtPlugin; import com.android.ide.eclipse.adt.AndroidConstants; import com.android.ide.eclipse.adt.internal.editors.AndroidEditor; import com.android.ide.eclipse.adt.internal.editors.descriptors.ElementDescriptor; import com.android.ide.eclipse.adt.internal.editors.manifest.descriptors.AndroidManifestDescriptors; import com.android.ide.eclipse.adt.internal.editors.manifest.pages.ApplicationPage; import com.android.ide.eclipse.adt.internal.editors.manifest.pages.InstrumentationPage; import com.android.ide.eclipse.adt.internal.editors.manifest.pages.OverviewPage; import com.android.ide.eclipse.adt.internal.editors.manifest.pages.PermissionPage; import com.android.ide.eclipse.adt.internal.editors.uimodel.UiAttributeNode; import com.android.ide.eclipse.adt.internal.editors.uimodel.UiElementNode; import com.android.ide.eclipse.adt.internal.resources.manager.ResourceMonitor; import com.android.ide.eclipse.adt.internal.resources.manager.ResourceMonitor.IFileListener; import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetData; import com.android.sdklib.xml.AndroidXPathFactory; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IMarker; import org.eclipse.core.resources.IMarkerDelta; import org.eclipse.core.resources.IResource; import org.eclipse.core.resources.IResourceDelta; import org.eclipse.core.runtime.CoreException; import org.eclipse.ui.IEditorInput; import org.eclipse.ui.IEditorPart; import org.eclipse.ui.PartInitException; import org.eclipse.ui.part.FileEditorInput; import org.w3c.dom.Document; import org.w3c.dom.Node; import java.util.List; import javax.xml.xpath.XPath; import javax.xml.xpath.XPathConstants; import javax.xml.xpath.XPathExpressionException; /** * Multi-page form editor for AndroidManifest.xml. */ public final class ManifestEditor extends AndroidEditor { public static final String ID = AndroidConstants.EDITORS_NAMESPACE + ".manifest.ManifestEditor"; //$NON-NLS-1$ private final static String EMPTY = ""; //$NON-NLS-1$ /** Root node of the UI element hierarchy */ private UiElementNode mUiManifestNode; /** The Application Page tab */ private ApplicationPage mAppPage; /** The Overview Manifest Page tab */ private OverviewPage mOverviewPage; /** The Permission Page tab */ private PermissionPage mPermissionPage; /** The Instrumentation Page tab */ private InstrumentationPage mInstrumentationPage; private IFileListener mMarkerMonitor; /** * Creates the form editor for AndroidManifest.xml. */ public ManifestEditor() { super(); } @Override public void dispose() { super.dispose(); ResourceMonitor.getMonitor().removeFileListener(mMarkerMonitor); } /** * Return the root node of the UI element hierarchy, which here * is the "manifest" node. */ @Override public UiElementNode getUiRootNode() { return mUiManifestNode; } /** * Returns the Manifest descriptors for the file being edited. */ public AndroidManifestDescriptors getManifestDescriptors() { AndroidTargetData data = getTargetData(); if (data != null) { return data.getManifestDescriptors(); } return null; } // ---- Base Class Overrides ---- /** * Returns whether the "save as" operation is supported by this editor. * <p/> * Save-As is a valid operation for the ManifestEditor since it acts on a * single source file. * * @see IEditorPart */ @Override public boolean isSaveAsAllowed() { return true; } /** * Creates the various form pages. */ @Override protected void createFormPages() { try { addPage(mOverviewPage = new OverviewPage(this)); addPage(mAppPage = new ApplicationPage(this)); addPage(mPermissionPage = new PermissionPage(this)); addPage(mInstrumentationPage = new InstrumentationPage(this)); } catch (PartInitException e) { AdtPlugin.log(e, "Error creating nested page"); //$NON-NLS-1$ } } /* (non-java doc) * Change the tab/title name to include the project name. */ @Override protected void setInput(IEditorInput input) { super.setInput(input); IFile inputFile = getInputFile(); if (inputFile != null) { startMonitoringMarkers(); setPartName(String.format("%1$s Manifest", inputFile.getProject().getName())); } } /** * Processes the new XML Model, which XML root node is given. * * @param xml_doc The XML document, if available, or null if none exists. */ @Override protected void xmlModelChanged(Document xml_doc) { // create the ui root node on demand. initUiRootNode(false /*force*/); loadFromXml(xml_doc); super.xmlModelChanged(xml_doc); } private void loadFromXml(Document xmlDoc) { mUiManifestNode.setXmlDocument(xmlDoc); if (xmlDoc != null) { ElementDescriptor manifest_desc = mUiManifestNode.getDescriptor(); try { XPath xpath = AndroidXPathFactory.newXPath(); Node node = (Node) xpath.evaluate("/" + manifest_desc.getXmlName(), //$NON-NLS-1$ xmlDoc, XPathConstants.NODE); assert node != null && node.getNodeName().equals(manifest_desc.getXmlName()); // Refresh the manifest UI node and all its descendants mUiManifestNode.loadFromXmlNode(node); } catch (XPathExpressionException e) { AdtPlugin.log(e, "XPath error when trying to find '%s' element in XML.", //$NON-NLS-1$ manifest_desc.getXmlName()); } } } private void onDescriptorsChanged(UiElementNode oldManifestNode) { mUiManifestNode.reloadFromXmlNode(oldManifestNode.getXmlNode()); if (mOverviewPage != null) { mOverviewPage.refreshUiApplicationNode(); } if (mAppPage != null) { mAppPage.refreshUiApplicationNode(); } if (mPermissionPage != null) { mPermissionPage.refreshUiNode(); } if (mInstrumentationPage != null) { mInstrumentationPage.refreshUiNode(); } } /** * Reads and processes the current markers and adds a listener for marker changes. */ private void startMonitoringMarkers() { final IFile inputFile = getInputFile(); if (inputFile != null) { updateFromExistingMarkers(inputFile); mMarkerMonitor = new IFileListener() { public void fileChanged(IFile file, IMarkerDelta[] markerDeltas, int kind) { if (file.equals(inputFile)) { processMarkerChanges(markerDeltas); } } }; ResourceMonitor.getMonitor().addFileListener(mMarkerMonitor, IResourceDelta.CHANGED); } } /** * Processes the markers of the specified {@link IFile} and updates the error status of * {@link UiElementNode}s and {@link UiAttributeNode}s. * @param inputFile the file being edited. */ private void updateFromExistingMarkers(IFile inputFile) { try { // get the markers for the file IMarker[] markers = inputFile.findMarkers(AndroidConstants.MARKER_ANDROID, true, IResource.DEPTH_ZERO); AndroidManifestDescriptors desc = getManifestDescriptors(); if (desc != null) { ElementDescriptor appElement = desc.getApplicationElement(); if (appElement != null) { UiElementNode app_ui_node = mUiManifestNode.findUiChildNode( appElement.getXmlName()); List<UiElementNode> children = app_ui_node.getUiChildren(); for (IMarker marker : markers) { processMarker(marker, children, IResourceDelta.ADDED); } } } } catch (CoreException e) { // findMarkers can throw an exception, in which case, we'll do nothing. } } /** * Processes a {@link IMarker} change. * @param markerDeltas the list of {@link IMarkerDelta} */ private void processMarkerChanges(IMarkerDelta[] markerDeltas) { AndroidManifestDescriptors descriptors = getManifestDescriptors(); if (descriptors != null && descriptors.getApplicationElement() != null) { UiElementNode app_ui_node = mUiManifestNode.findUiChildNode( descriptors.getApplicationElement().getXmlName()); List<UiElementNode> children = app_ui_node.getUiChildren(); for (IMarkerDelta markerDelta : markerDeltas) { processMarker(markerDelta.getMarker(), children, markerDelta.getKind()); } } } /** * Processes a new/old/updated marker. * @param marker The marker being added/removed/changed * @param nodeList the list of activity/service/provider/receiver nodes. * @param kind the change kind. Can be {@link IResourceDelta#ADDED}, * {@link IResourceDelta#REMOVED}, or {@link IResourceDelta#CHANGED} */ private void processMarker(IMarker marker, List<UiElementNode> nodeList, int kind) { // get the data from the marker String nodeType = marker.getAttribute(AndroidConstants.MARKER_ATTR_TYPE, EMPTY); if (nodeType == EMPTY) { return; } String className = marker.getAttribute(AndroidConstants.MARKER_ATTR_CLASS, EMPTY); if (className == EMPTY) { return; } for (UiElementNode ui_node : nodeList) { if (ui_node.getDescriptor().getXmlName().equals(nodeType)) { for (UiAttributeNode attr : ui_node.getUiAttributes()) { if (attr.getDescriptor().getXmlLocalName().equals( AndroidManifestDescriptors.ANDROID_NAME_ATTR)) { if (attr.getCurrentValue().equals(className)) { if (kind == IResourceDelta.REMOVED) { attr.setHasError(false); } else { attr.setHasError(true); } return; } } } } } } /** * Creates the initial UI Root Node, including the known mandatory elements. * @param force if true, a new UiManifestNode is recreated even if it already exists. */ @Override protected void initUiRootNode(boolean force) { // The manifest UI node is always created, even if there's no corresponding XML node. if (mUiManifestNode != null && force == false) { return; } AndroidManifestDescriptors manifestDescriptor = getManifestDescriptors(); if (manifestDescriptor != null) { // save the old manifest node if it exists UiElementNode oldManifestNode = mUiManifestNode; ElementDescriptor manifestElement = manifestDescriptor.getManifestElement(); mUiManifestNode = manifestElement.createUiNode(); mUiManifestNode.setEditor(this); // Similarly, always create the /manifest/application and /manifest/uses-sdk nodes ElementDescriptor appElement = manifestDescriptor.getApplicationElement(); boolean present = false; for (UiElementNode ui_node : mUiManifestNode.getUiChildren()) { if (ui_node.getDescriptor() == appElement) { present = true; break; } } if (!present) { mUiManifestNode.appendNewUiChild(appElement); } appElement = manifestDescriptor.getUsesSdkElement(); present = false; for (UiElementNode ui_node : mUiManifestNode.getUiChildren()) { if (ui_node.getDescriptor() == appElement) { present = true; break; } } if (!present) { mUiManifestNode.appendNewUiChild(appElement); } if (oldManifestNode != null) { onDescriptorsChanged(oldManifestNode); } } else { // create a dummy descriptor/uinode until we have real descriptors ElementDescriptor desc = new ElementDescriptor("manifest", //$NON-NLS-1$ "temporary descriptors due to missing decriptors", //$NON-NLS-1$ null /*tooltip*/, null /*sdk_url*/, null /*attributes*/, null /*children*/, false /*mandatory*/); mUiManifestNode = desc.createUiNode(); mUiManifestNode.setEditor(this); } } /** * Returns the {@link IFile} being edited, or <code>null</code> if it couldn't be computed. */ private IFile getInputFile() { IEditorInput input = getEditorInput(); if (input instanceof FileEditorInput) { FileEditorInput fileInput = (FileEditorInput) input; return fileInput.getFile(); } return null; } }
3fba6f532fe6badd829a8a4677dbe1ecdd840618
7ad9ee861d5d5e1f56dcb7de518186035d964e21
/commons/src/main/java/org/hengsir/icma/utils/FileUploadUtils.java
4e49093fa9576433acc1e70091bac8e23b10e12f
[]
no_license
Zhangxiaohong12/icma
45abbc1c5a1eccf68392d855f8bd657362ae376f
50807dfc06329ed35596392544a55d9abb613631
refs/heads/master
2020-04-14T20:48:06.105796
2018-07-03T08:14:18
2018-07-03T08:14:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,889
java
package org.hengsir.icma.utils; import org.springframework.web.multipart.MultipartFile; import java.io.*; /** * @author hengsir * @date 2018/4/8 下午5:20 */ public class FileUploadUtils { private static String basePath = "/Users/"; private static String imgPath = "/Users/icma-upload-img/"; static{ File ff = new File(basePath); if (!ff.exists() && !ff.isDirectory()){ ff.mkdir(); } File f = new File(imgPath); if (!f.exists() && !f.isDirectory()){ f.mkdir(); } } public static String saveFile(String fileName, MultipartFile photo) { OutputStream out = null; File file = null; try { file = new File(imgPath + fileName); if (!file.exists() && !file.isDirectory()) { file.mkdir(); } InputStream in = photo.getInputStream(); out = new BufferedOutputStream(new FileOutputStream(file.getPath() + "/" + photo.getOriginalFilename())); byte[] buffer = new byte[1024]; int length = 0; while ((length = in.read(buffer)) > 0) { out.write(buffer, 0, length); } } catch (IOException exception) { exception.printStackTrace(); } finally { try { if (out != null) { out.close(); } } catch (IOException exception) { exception.printStackTrace(); } } return file.getPath() + "/" + photo.getOriginalFilename(); } //递归删除 public static void deleteDir(File dir){ if(dir.isDirectory()){ File[] files = dir.listFiles(); for(int i=0; i<files.length; i++) { deleteDir(files[i]); } } dir.delete(); } }
c5ebfebd5a949fb4c813f5b6ab4a72c416da7ea1
5ad0aa10fa03e3d5c53e148f14708d93dd7b3bd3
/src/main/java/com/ismutant/apirest/Main.java
0cd1e5a3e70ba8e5f4e1c750520d8e3e423381e2
[]
no_license
AdrianTorrez/mutantMeli
d0d6b8fe5b158464c30485c2430f3a400d1d686b
c6b79a4fa7eee87403210f219a8a4c8b4590577b
refs/heads/master
2022-03-31T19:10:53.792183
2020-02-06T08:27:35
2020-02-06T08:27:35
238,364,519
0
0
null
null
null
null
UTF-8
Java
false
false
287
java
package com.ismutant.apirest; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Main { public static void main(String[] args) { SpringApplication.run(Main.class, args); } }
b3ecc3b5410844899002611df81f2a1391f67c8d
2c140a0632890ce2a28a9025b493cbc67fab3bd5
/src/main/java/org/hl7/v3/COCTMT510000UV06CoverageRecord.java
d3877618e9faf04ceaf7eec47a6e3f8a009adf64
[]
no_license
darkxi/hl7-Edition2012
cf5d475e06464c776b8b39676953835aae1fb3f5
add3330c499fd0491fd18a2f71be04a3c1efb391
refs/heads/master
2020-06-07T01:21:19.768327
2017-07-18T03:23:43
2017-08-18T09:03:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
9,094
java
// // 此文件是由 JavaTM Architecture for XML Binding (JAXB) 引用实现 v2.2.7 生成的 // 请访问 <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // 在重新编译源模式时, 对此文件的所有修改都将丢失。 // 生成时间: 2017.08.10 时间 10:45:02 AM CST // package org.hl7.v3; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * <p>COCT_MT510000UV06.CoverageRecord complex type的 Java 类。 * * <p>以下模式片段指定包含在此类中的预期内容。 * * <pre> * &lt;complexType name="COCT_MT510000UV06.CoverageRecord"> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;group ref="{urn:hl7-org:v3}InfrastructureRootElements"/> * &lt;element name="id" type="{urn:hl7-org:v3}DSET_II" minOccurs="0"/> * &lt;element name="statusCode" type="{urn:hl7-org:v3}CS" minOccurs="0"/> * &lt;element name="effectiveTime" type="{urn:hl7-org:v3}IVL_TS" minOccurs="0"/> * &lt;element name="confidentialityCode" type="{urn:hl7-org:v3}DSET_CD" minOccurs="0"/> * &lt;element name="beneficiary" type="{urn:hl7-org:v3}COCT_MT510000UV06.Beneficiary2" minOccurs="0"/> * &lt;element name="component" type="{urn:hl7-org:v3}COCT_MT510000UV06.Component" maxOccurs="unbounded" minOccurs="0"/> * &lt;/sequence> * &lt;attGroup ref="{urn:hl7-org:v3}InfrastructureRootAttributes"/> * &lt;attribute name="classCode" use="required" type="{urn:hl7-org:v3}ActClassCoverage" /> * &lt;attribute name="moodCode" use="required" type="{urn:hl7-org:v3}ActMoodEventOccurrence" /> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "COCT_MT510000UV06.CoverageRecord", propOrder = { "realmCode", "typeId", "templateId", "id", "statusCode", "effectiveTime", "confidentialityCode", "beneficiary", "component" }) public class COCTMT510000UV06CoverageRecord { protected DSETCS realmCode; protected II typeId; protected LISTII templateId; protected DSETII id; protected CS statusCode; protected IVLTS effectiveTime; protected DSETCD confidentialityCode; @XmlElementRef(name = "beneficiary", namespace = "urn:hl7-org:v3", type = JAXBElement.class, required = false) protected JAXBElement<COCTMT510000UV06Beneficiary2> beneficiary; @XmlElement(nillable = true) protected List<COCTMT510000UV06Component> component; @XmlAttribute(name = "classCode", required = true) protected ActClassCoverage classCode; @XmlAttribute(name = "moodCode", required = true) protected ActMoodEventOccurrence moodCode; /** * 获取realmCode属性的值。 * * @return * possible object is * {@link DSETCS } * */ public DSETCS getRealmCode() { return realmCode; } /** * 设置realmCode属性的值。 * * @param value * allowed object is * {@link DSETCS } * */ public void setRealmCode(DSETCS value) { this.realmCode = value; } /** * 获取typeId属性的值。 * * @return * possible object is * {@link II } * */ public II getTypeId() { return typeId; } /** * 设置typeId属性的值。 * * @param value * allowed object is * {@link II } * */ public void setTypeId(II value) { this.typeId = value; } /** * 获取templateId属性的值。 * * @return * possible object is * {@link LISTII } * */ public LISTII getTemplateId() { return templateId; } /** * 设置templateId属性的值。 * * @param value * allowed object is * {@link LISTII } * */ public void setTemplateId(LISTII value) { this.templateId = value; } /** * 获取id属性的值。 * * @return * possible object is * {@link DSETII } * */ public DSETII getId() { return id; } /** * 设置id属性的值。 * * @param value * allowed object is * {@link DSETII } * */ public void setId(DSETII value) { this.id = value; } /** * 获取statusCode属性的值。 * * @return * possible object is * {@link CS } * */ public CS getStatusCode() { return statusCode; } /** * 设置statusCode属性的值。 * * @param value * allowed object is * {@link CS } * */ public void setStatusCode(CS value) { this.statusCode = value; } /** * 获取effectiveTime属性的值。 * * @return * possible object is * {@link IVLTS } * */ public IVLTS getEffectiveTime() { return effectiveTime; } /** * 设置effectiveTime属性的值。 * * @param value * allowed object is * {@link IVLTS } * */ public void setEffectiveTime(IVLTS value) { this.effectiveTime = value; } /** * 获取confidentialityCode属性的值。 * * @return * possible object is * {@link DSETCD } * */ public DSETCD getConfidentialityCode() { return confidentialityCode; } /** * 设置confidentialityCode属性的值。 * * @param value * allowed object is * {@link DSETCD } * */ public void setConfidentialityCode(DSETCD value) { this.confidentialityCode = value; } /** * 获取beneficiary属性的值。 * * @return * possible object is * {@link JAXBElement }{@code <}{@link COCTMT510000UV06Beneficiary2 }{@code >} * */ public JAXBElement<COCTMT510000UV06Beneficiary2> getBeneficiary() { return beneficiary; } /** * 设置beneficiary属性的值。 * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link COCTMT510000UV06Beneficiary2 }{@code >} * */ public void setBeneficiary(JAXBElement<COCTMT510000UV06Beneficiary2> value) { this.beneficiary = value; } /** * Gets the value of the component property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the component property. * * <p> * For example, to add a new item, do as follows: * <pre> * getComponent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link COCTMT510000UV06Component } * * */ public List<COCTMT510000UV06Component> getComponent() { if (component == null) { component = new ArrayList<COCTMT510000UV06Component>(); } return this.component; } /** * 获取classCode属性的值。 * * @return * possible object is * {@link ActClassCoverage } * */ public ActClassCoverage getClassCode() { return classCode; } /** * 设置classCode属性的值。 * * @param value * allowed object is * {@link ActClassCoverage } * */ public void setClassCode(ActClassCoverage value) { this.classCode = value; } /** * 获取moodCode属性的值。 * * @return * possible object is * {@link ActMoodEventOccurrence } * */ public ActMoodEventOccurrence getMoodCode() { return moodCode; } /** * 设置moodCode属性的值。 * * @param value * allowed object is * {@link ActMoodEventOccurrence } * */ public void setMoodCode(ActMoodEventOccurrence value) { this.moodCode = value; } }
1760030c1a2a3a4bb296aea3d5a56b43dfecbd3b
87ffe6cef639e2b96b8d5236b5ace57e16499491
/app/src/main/java/com/squareup/picasso/Picasso$Builder.java
ac680168003b78af4d9e018cf6a039ea3bf4b9fd
[]
no_license
leerduo/FoodsNutrition
24ffeea902754b84a2b9fbd3299cf4fceb38da3f
a448a210e54f789201566da48cc44eceb719b212
refs/heads/master
2020-12-11T05:45:34.531682
2015-08-28T04:35:05
2015-08-28T04:35:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,396
java
package com.squareup.picasso; import android.content.Context; import java.util.List; import java.util.concurrent.ExecutorService; public class Picasso$Builder { private final Context a; private Downloader b; private ExecutorService c; private Cache d; private Picasso.Listener e; private Picasso.RequestTransformer f; private List<RequestHandler> g; private boolean h; private boolean i; public Picasso$Builder(Context paramContext) { if (paramContext == null) { throw new IllegalArgumentException("Context must not be null."); } this.a = paramContext.getApplicationContext(); } public Picasso a() { Context localContext = this.a; if (this.b == null) { this.b = Utils.a(localContext); } if (this.d == null) { this.d = new LruCache(localContext); } if (this.c == null) { this.c = new PicassoExecutorService(); } if (this.f == null) { this.f = Picasso.RequestTransformer.a; } Stats localStats = new Stats(this.d); return new Picasso(localContext, new Dispatcher(localContext, this.c, Picasso.a, this.b, this.d, localStats), this.d, this.e, this.f, this.g, localStats, this.h, this.i); } } /* Location: D:\15036015\反编译\shiwuku\classes_dex2jar.jar * Qualified Name: com.squareup.picasso.Picasso.Builder * JD-Core Version: 0.7.0-SNAPSHOT-20130630 */
d2f19e38a7c1c24fba10a8c0cbfb0a4e45e0eca5
1a8fb9cc4f278c44097fee45143057a5df9ddc4d
/src/main/java/com/usthe/bootshiro/support/XssSqlFilter.java
f3e8190af29456145f2bea9bc83202453716894e
[ "MIT" ]
permissive
wrmu/bootshiro
0e754fc75a8e09d53821df417ef21597b3cbd039
7c5993108f19a994a11affae729a62af2578c844
refs/heads/master
2020-04-26T02:53:38.997513
2019-02-23T11:59:35
2019-02-23T11:59:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,219
java
package com.usthe.bootshiro.support; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.core.annotation.Order; import javax.servlet.*; import javax.servlet.annotation.WebFilter; import javax.servlet.http.HttpServletRequest; import java.io.IOException; /* * * @Author tomsun28 * @Description * @Date 21:24 2018/4/16 */ @Order(1) @WebFilter(filterName = "xssFilter", urlPatterns = "/*", asyncSupported = true) public class XssSqlFilter implements Filter { private static final Logger LOGGER = LoggerFactory.getLogger(XssSqlFilter.class); @Override public void init(FilterConfig filterConfig) throws ServletException { LOGGER.debug("xssFilter initialized"); } @Override public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException { XssSqlHttpServletRequestWrapper xssSqlHttpServletRequestWrapper = new XssSqlHttpServletRequestWrapper((HttpServletRequest) servletRequest); filterChain.doFilter(xssSqlHttpServletRequestWrapper, servletResponse); } @Override public void destroy() { LOGGER.debug("xssFilter destroy"); } }
a17769f99c42153ef9525cb7d498509616ccea3f
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/1/1_5580cd206fe5a3369d3b5032278fa17710b748f0/ParseUnicode/1_5580cd206fe5a3369d3b5032278fa17710b748f0_ParseUnicode_t.java
83c09c51d8597543c66d790c3b0497e021c6dafd
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
1,550
java
package nl.siegmann.epublib.utilities; import java.io.BufferedReader; import java.io.FileReader; import java.util.ArrayList; import java.util.List; import org.apache.commons.lang.StringUtils; public class ParseUnicode { private static class CharDesc { public int number; public String numberString; public String description; } public static void main(String[] args) throws Exception { String input = "/home/paul/project/private/library/font_poems/cuneiform.txt"; BufferedReader reader = new BufferedReader(new FileReader(input)); String line = reader.readLine(); int skipLines = 0; List<CharDesc> resultList = new ArrayList<CharDesc>(); CharDesc cd1 = new CharDesc(); CharDesc cd2 = new CharDesc(); while(line != null) { if(line.indexOf("The Unicode Standard 5.2") > 0) { skipLines = 1; continue; } else if(skipLines > 0) { skipLines --; continue; } String line1 = line; String line2 = ""; if(line.length() > 50) { line2 = line1.substring(50); line1 = line1.substring(0, 50); } processLine(line1, cd1, resultList); processLine(line2, cd2, resultList); line = reader.readLine(); } } private static void processLine(String line, CharDesc cd, List<CharDesc> resultList) { line = line.trim(); if(line.length() == 0) { return; } if(line.charAt(0) > 256) { line = line.substring(1); } if(StringUtils.isNumeric(line)) { if(StringUtils.isBlank(cd.numberString)) { } } } }
ddb73c17e2b5ee0608c5817c8e3272dc57bd580f
986e1e68dfddc15f818a9bbd23299b2198d127f3
/bank/src/test/java/pt/ulisboa/tecnico/softeng/bank/domain/AccountContructorMethodTest.java
bf569f29a39ccc90d99d8aca3b0f828dd6dc5c24
[]
no_license
leonorsilva/projecto
45650dcbb19842a570b866fb03c74a1f16cccaa9
2acbb84f41624e4ecaf073da90cabbdb91fefacd
refs/heads/master
2023-08-09T08:39:30.083048
2023-07-31T11:13:14
2023-07-31T11:13:14
82,557,461
0
0
null
null
null
null
UTF-8
Java
false
false
847
java
package pt.ulisboa.tecnico.softeng.bank.domain; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; public class AccountContructorMethodTest { Bank bank; Client client; @Before public void setUp() { this.bank = new Bank("Money", "BK01"); this.client = new Client(this.bank, "António"); } @Test public void success() { Account account = new Account(this.bank, this.client); Assert.assertEquals(this.bank, account.getBank()); Assert.assertTrue(account.getIBAN().startsWith(this.bank.getCode())); Assert.assertEquals(this.client, account.getClient()); Assert.assertEquals(0, account.getBalance()); Assert.assertEquals(1, this.bank.getNumberOfAccounts()); Assert.assertTrue(this.bank.hasClient(this.client)); } @After public void tearDown() { Bank.banks.clear(); } }
c766fb40d00945746700a0f67fee6d14744ffe36
bf0a24f50c0026629fe0cd462dceecb145dcd606
/mserver/src/main/java/com/co/example/entity/message/TBrMessageTemplate.java
2c1470c51b0e5f0f52bc99a676f91b871c156b36
[]
no_license
moncat/mpackage
d21af9c1a208b3847cfae482408f6ebbdf28088b
4347f18cb7a8317be7461c493167594f529120d5
refs/heads/master
2022-12-10T09:59:21.590725
2020-03-09T01:15:00
2020-03-09T01:15:00
94,493,254
3
2
null
2022-12-06T00:40:56
2017-06-16T01:35:25
Roff
UTF-8
Java
false
false
573
java
package com.co.example.entity.message; import com.github.moncat.common.entity.BaseEntity; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.ToString; @SuppressWarnings("serial") @Data @EqualsAndHashCode(callSuper=true) @ToString(callSuper=true) public class TBrMessageTemplate extends BaseEntity { /** id */ private Long id; /** 消息标题 */ private String title; /** 消息详情 */ private String detail; /** 类型Id */ private Long typeId; /** 应用id */ private Byte appId; }
[ "Administrator@SKY-20160518SVB" ]
Administrator@SKY-20160518SVB
227aa3539735b30e853e8e9c527591044deed7c0
58a55f1e2b025440f28ab5fe3f5cd2fd88dca646
/app/src/main/java/br/com/sailboat/flashcards/view/session_ended/SessionEndedViewModel.java
a5c682f701f094ef48176c5cce4f3299a30dc315
[]
no_license
brayan/android-flashcards
9ec51d3a8d27c90beb29fea1f0f804e6f65ce787
8396bab68170f3425b0369834a05ebf8f38c83cb
refs/heads/master
2020-06-28T13:34:58.833684
2019-01-18T10:32:25
2019-01-18T10:32:25
200,246,305
0
0
null
null
null
null
UTF-8
Java
false
false
684
java
package br.com.sailboat.flashcards.view.session_ended; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import br.com.sailboat.flashcards.model.view.CardMetrics; import br.com.sailboat.flashcards.model.view.CardPlay; public class SessionEndedViewModel implements Serializable{ private CardMetrics cardMetrics; private final List<CardPlay> cardPlayList = new ArrayList<>(); public CardMetrics getCardMetrics() { return cardMetrics; } public void setCardMetrics(CardMetrics cardMetrics) { this.cardMetrics = cardMetrics; } public List<CardPlay> getCardPlayList() { return cardPlayList; } }
fbd9dee10dc8f6507aed9278579082393e660413
0f75c1d6fb9c2520ef5c2528a69221a6acd7a114
/app/src/main/java/zhy/utils/ViewHolder.java
95362410aca7e57f60b58c36cfd517fbff4e702c
[]
no_license
sbp5151/TorsunCollectVer
0f8bab69a8e23df258f4dd61f08b39f1598581f0
963175bc8b618830be179d22c14423eca6a90e89
refs/heads/master
2020-12-30T12:22:38.892797
2017-05-16T06:10:42
2017-05-16T06:10:42
91,421,869
0
0
null
null
null
null
UTF-8
Java
false
false
2,632
java
package zhy.utils; import android.content.Context; import android.graphics.Bitmap; import android.util.SparseArray; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; public class ViewHolder { private final SparseArray<View> mViews; private int mPosition; private View mConvertView; private ViewHolder(Context context, ViewGroup parent, int layoutId, int position) { this.mPosition = position; this.mViews = new SparseArray<View>(); mConvertView = LayoutInflater.from(context).inflate(layoutId, parent, false); // setTag mConvertView.setTag(this); } /** * 拿到一个ViewHolder对象 * * @param context * @param convertView * @param parent * @param layoutId * @param position * @return */ public static ViewHolder get(Context context, View convertView, ViewGroup parent, int layoutId, int position) { ViewHolder holder = null; if (convertView == null) { holder = new ViewHolder(context, parent, layoutId, position); } else { holder = (ViewHolder) convertView.getTag(); holder.mPosition = position; } return holder; } public View getConvertView() { return mConvertView; } /** * 通过控件的Id获取对于的控件,如果没有则加入views * * @param viewId * @return */ public <T extends View> T getView(int viewId) { View view = mViews.get(viewId); if (view == null) { view = mConvertView.findViewById(viewId); mViews.put(viewId, view); } return (T) view; } /** * 为TextView设置字符串 * * @param viewId * @param text * @return */ public ViewHolder setText(int viewId, String text) { TextView view = getView(viewId); view.setText(text); return this; } /** * 为ImageView设置图片 * * @param viewId * @param drawableId * @return */ public ViewHolder setImageResource(int viewId, int drawableId) { ImageView view = getView(viewId); view.setImageResource(drawableId); return this; } /** * 为ImageView设置图片 * * @param viewId * @param drawableId * @return */ public ViewHolder setImageBitmap(int viewId, Bitmap bm) { ImageView view = getView(viewId); view.setImageBitmap(bm); return this; } /** * 为ImageView设置图片 * * @param viewId * @param drawableId * @return */ public ViewHolder setImageByUrl(int viewId, String url) { ImageLoader.getInstance(3, ImageLoader.Type.LIFO).loadImage(url, (ImageView) getView(viewId)); return this; } public int getPosition() { return mPosition; } }
22f86884194b0ecc1de41470b51479e3f46fcc94
f67b323c31367cdfafd4280a1cc43b2454d3238e
/app/src/main/java/com/troy/deeplinkrouter/activity/UserActivity.java
588b4fbc3006bc6f701107c4b810159ccc200462
[ "Apache-2.0" ]
permissive
xujiaao/DeeplinkRouter
d21abc39e5037c46f0c40a0949aa3cab370436d5
44b4ee1d8cdfc64863aed119b3d34cf48318cdf2
refs/heads/master
2021-01-24T08:35:07.601350
2017-06-05T09:00:25
2017-06-05T09:00:25
93,387,140
1
0
null
2017-06-05T09:22:09
2017-06-05T09:22:09
null
UTF-8
Java
false
false
1,144
java
package com.troy.deeplinkrouter.activity; import android.os.Bundle; import android.widget.TextView; import com.troy.deeplinkrouter.R; import com.troy.dprouter.annotation.ActivityRouter; @ActivityRouter(hosts = {"user"}) public class UserActivity extends BaseRouterActivity { private TextView mContent; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setTitle("Users"); setContentView(R.layout.activity_detail); mContent = (TextView) findViewById(R.id.content); handleExtras(); } private void handleExtras() { Bundle extras = getIntent().getExtras(); if(extras == null) return; String host = extras.getString("host"); String firstName = extras.getString("firstname"); String lastName = extras.getString("lastname"); StringBuilder builder = new StringBuilder(); innerAppend("host", host, builder); innerAppend("firstName", firstName, builder); innerAppend("lastName", lastName, builder); mContent.setText(builder.toString()); } }
03c3254ec2c4fdf1dd443e21326c23e583235dc0
52280cf6517f27bde1ad70037bc20f9aaa01d6c5
/src/com/unionpay/upomp/bypay/other/dr.java
4090136ed3c8335af3dee3ea998a645602639e53
[]
no_license
xiangyong/JDMall
7730ae3395a44d03387f4d4075a1b2c8870c23be
5ce5a7870e87a67cad500903bc169cd266b5a2e9
refs/heads/master
2021-01-16T18:13:41.254336
2014-02-26T09:59:08
2014-02-26T09:59:08
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,230
java
package com.unionpay.upomp.bypay.other; import android.view.MotionEvent; import android.view.View; import android.view.View.OnTouchListener; import android.widget.Button; import android.widget.EditText; import android.widget.RelativeLayout; import android.widget.TextView; import com.unionpay.upomp.bypay.util.Utils; public class dr implements View.OnTouchListener { public dr(Button paramButton, int paramInt, RelativeLayout paramRelativeLayout, TextView paramTextView, EditText paramEditText) {} public boolean onTouch(View paramView, MotionEvent paramMotionEvent) { switch (paramMotionEvent.getAction()) { default: return false; case 0: Utils.a(this.jdField_a_of_type_AndroidWidgetButton, this.jdField_a_of_type_Int, this.jdField_a_of_type_AndroidWidgetRelativeLayout, this.jdField_a_of_type_AndroidWidgetTextView, this.jdField_a_of_type_AndroidWidgetEditText); return true; } this.jdField_a_of_type_AndroidWidgetRelativeLayout.setVisibility(8); return true; } } /* Location: C:\Users\yepeng\Documents\classes-dex2jar.jar * Qualified Name: com.unionpay.upomp.bypay.other.dr * JD-Core Version: 0.7.0.1 */
1e3ab1e2d8da09c5932a0fbb11f6b3cffbd891cf
12a31f1668a8921177a5dcfcb1cccc9359249cd7
/dz4/rovkp_dz4_3/src/main/java/goran/rovkp_dz4_3/Demo.java
83623f72d9db7213fd0dea11016b2f29bf655ac9
[]
no_license
gbrlas/ROVKP
86d5804dafcfb9aa59c4d27313637700b3bf73db
f7c982c5ae39bbc15f5b38a3b2fa679028ef922a
refs/heads/master
2021-06-19T16:37:40.597110
2017-06-07T19:41:54
2017-06-07T19:41:54
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,629
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package goran.rovkp_dz4_3; import java.util.NoSuchElementException; import org.apache.spark.SparkConf; import org.apache.spark.streaming.Durations; import org.apache.spark.streaming.api.java.JavaDStream; import org.apache.spark.streaming.api.java.JavaPairDStream; import org.apache.spark.streaming.api.java.JavaStreamingContext; import scala.Tuple2; /** * * @author goran */ public class Demo { private static final SparkConf conf = new SparkConf().setAppName("SensorScopeStreaming"); private static final JavaStreamingContext context; private static final JavaDStream<String> lines; static { try { conf.get("spark.master"); } catch (NoSuchElementException e) { conf.setMaster("local"); } context = new JavaStreamingContext(conf, Durations.seconds(5)); lines = context.socketTextStream("localhost", 10002); } public static void main(String[] args) { String output = "./output/"; JavaPairDStream<String, Double> result = lines .map(SensorScopeReading::new) .filter(SensorScopeReading.isParsable) .mapToPair((reading) -> new Tuple2<>(reading.getStationID(), reading.getSolarPanelCurrent())) .reduceByKeyAndWindow(Math::max, Durations.seconds(60), Durations.seconds(10)); result.dstream().saveAsTextFiles(output, "txt"); } }