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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b2a4fb50a3f47eba271222470a0c26fb842265c8 | 8df7f5d31493f85e93769328e6400ac123aa3d0c | /app/src/main/java/com/example/chajianhua/App.java | c8772407d205fa41f5f901cb3b9c25d56506641d | [] | no_license | Gracefulwind/ChaJianHua | ac7cc5616935510dfaa0db233b3f87a58d80e3a6 | 6eb5e32f14af942d9b87a69f00f3487843336a5a | refs/heads/master | 2022-04-17T13:50:55.774377 | 2020-04-20T03:20:59 | 2020-04-20T03:20:59 | 256,477,033 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 955 | java | package com.example.chajianhua;
import android.app.Application;
import com.alibaba.android.arouter.BuildConfig;
import com.alibaba.android.arouter.launcher.ARouter;
import com.gracefulwind.commonuiutil.utils.UiUtil;
public class App extends Application {
@Override
public void onCreate() {
super.onCreate();
initRouter(this);
initUiUtil();
}
private void initUiUtil() {
UiUtil.initUiUtil(getApplicationContext());
}
private void initRouter(App myApplication) {
if (BuildConfig.DEBUG) {
ARouter.openLog(); // 打印日志
ARouter.openDebug(); // 开启调试模式(如果在InstantRun模式下运行,必须开启调试模式!线上版本需要关闭,否则有安全风险)
}
ARouter.init(myApplication);
}
@Override
public void onTerminate() {
super.onTerminate();
ARouter.getInstance().destroy();
}
}
| [
"[email protected]"
] | |
295dea6f1c3fc472bc7badc6efe249cd9b4189b2 | 945da52dec387f2a82341f7ead2219477b3e70bc | /mobileassistant/MobileAssistant/endpoint-libs/libmessageEndpoint-v1/messageEndpoint/messageendpoint-v1-generated-source/com/codesdk/mobileassistant/messageEndpoint/MessageEndpointRequestInitializer.java | 29326df21b7f1f626aa4f852fb848e52c0edabd7 | [
"Apache-2.0"
] | permissive | codelabspro/mobileassistant | 1e8c6f677c08a8756f8a2985da727ba531433a5b | 4548d2bac7d1a7474332c8b599c5b424577bb3c7 | refs/heads/master | 2022-10-29T00:30:50.612511 | 2014-08-05T05:36:42 | 2014-08-05T05:36:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,616 | 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.
*/
/*
* This code was generated by https://code.google.com/p/google-apis-client-generator/
* (build: 2014-07-22 21:53:01 UTC)
* on 2014-08-05 at 05:05:12 UTC
* Modify at your own risk.
*/
package com.codesdk.mobileassistant.messageEndpoint;
/**
* MessageEndpoint request initializer for setting properties like key and userIp.
*
* <p>
* The simplest usage is to use it to set the key parameter:
* </p>
*
* <pre>
public static final GoogleClientRequestInitializer KEY_INITIALIZER =
new MessageEndpointRequestInitializer(KEY);
* </pre>
*
* <p>
* There is also a constructor to set both the key and userIp parameters:
* </p>
*
* <pre>
public static final GoogleClientRequestInitializer INITIALIZER =
new MessageEndpointRequestInitializer(KEY, USER_IP);
* </pre>
*
* <p>
* If you want to implement custom logic, extend it like this:
* </p>
*
* <pre>
public static class MyRequestInitializer extends MessageEndpointRequestInitializer {
{@literal @}Override
public void initializeMessageEndpointRequest(MessageEndpointRequest{@literal <}?{@literal >} request)
throws IOException {
// custom logic
}
}
* </pre>
*
* <p>
* Finally, to set the key and userIp parameters and insert custom logic, extend it like this:
* </p>
*
* <pre>
public static class MyRequestInitializer2 extends MessageEndpointRequestInitializer {
public MyKeyRequestInitializer() {
super(KEY, USER_IP);
}
{@literal @}Override
public void initializeMessageEndpointRequest(MessageEndpointRequest{@literal <}?{@literal >} request)
throws IOException {
// custom logic
}
}
* </pre>
*
* <p>
* Subclasses should be thread-safe.
* </p>
*
* @since 1.12
*/
public class MessageEndpointRequestInitializer extends com.google.api.client.googleapis.services.json.CommonGoogleJsonClientRequestInitializer {
public MessageEndpointRequestInitializer() {
super();
}
/**
* @param key API key or {@code null} to leave it unchanged
*/
public MessageEndpointRequestInitializer(String key) {
super(key);
}
/**
* @param key API key or {@code null} to leave it unchanged
* @param userIp user IP or {@code null} to leave it unchanged
*/
public MessageEndpointRequestInitializer(String key, String userIp) {
super(key, userIp);
}
@Override
public final void initializeJsonRequest(com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest<?> request) throws java.io.IOException {
super.initializeJsonRequest(request);
initializeMessageEndpointRequest((MessageEndpointRequest<?>) request);
}
/**
* Initializes MessageEndpoint request.
*
* <p>
* Default implementation does nothing. Called from
* {@link #initializeJsonRequest(com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest)}.
* </p>
*
* @throws java.io.IOException I/O exception
*/
protected void initializeMessageEndpointRequest(MessageEndpointRequest<?> request) throws java.io.IOException {
}
}
| [
"[email protected]"
] | |
f18d71da80de803385d6076167ab73c416bd5e81 | 76b76940f3106d2c3db8205e23b47e407e5e00ff | /app/src/main/java/com/example/haidangdam/myapplication/add_task/AddEditTaskPresenter.java | a08e211ecdd95c96d1e227d34be5645bce6b21bc | [] | no_license | haidangdam/TO-DO-APP-MVP | c886950451a4a907ff61b776b6125c3f8600984b | 66b7bfd3741daff74244967cbdeda26d0a8df3d7 | refs/heads/master | 2021-01-23T06:10:59.081833 | 2017-06-06T08:59:01 | 2017-06-06T08:59:01 | 93,013,793 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,529 | java | package com.example.haidangdam.myapplication.add_task;
import android.os.Bundle;
import android.util.Log;
import com.example.haidangdam.myapplication.Task;
import com.example.haidangdam.myapplication.main_activity.MainActivityInterface;
import com.example.haidangdam.myapplication.main_activity.MainActivityView;
/**
* Created by haidangdam on 5/31/17.
*/
public class AddEditTaskPresenter implements AddEditTaskInterface.Presenter {
AddEditTaskRepository repo;
AddEditTaskInterface.View addTaskView;
Bundle bundle;
public AddEditTaskPresenter(AddEditTaskRepository repo, AddEditTaskInterface.View addTaskInterface) {
this.repo = repo;
this.addTaskView = addTaskInterface;
addTaskView.setPresenter(this);
}
/**
* Save button press
* @param taskName the new task name
* @param description the new description
* @param bundle bundle to differentiate between edit or add (edit
* will have already existed data in bundle)
*/
@Override
public void buttonPress(String taskName, String description, Bundle bundle) {
Log.d("Main Application", "Add button press");
if (taskName.isEmpty() || description.isEmpty()) {
addTaskView.emptyField();
} else {
if (bundle == null) {
saveTask(taskName, description, false);
} else {
this.bundle = bundle;
saveTask(taskName, description, true);
addTaskView.submitButton();
}
}
}
/**
* To save the task to the database
* @param taskName task name in the name field
* @param description task description in description field
* @param alreadyExisted boolean to differentiate between edit or first-add. If edit, use
* update, otherwise, use add
*/
@Override
public void saveTask(String taskName, String description, boolean alreadyExisted) {
if (!alreadyExisted) {
repo.r.addTaskToFirebase(new Task(taskName, description, false), new MainActivityInterface.AddFirebaseCallback() {
@Override
public void callback() {
addTaskView.submitButton();
}
});
} else {
repo.r.updateTask(taskName, description, bundle.getString(MainActivityView.ID), bundle.getInt(MainActivityView.STATUS) == 1);
}
}
/**
* If press the delete button when editting the task
* @param bundle the data getting from the task
*/
@Override
public void deleteButtonPress(Bundle bundle) {
repo.r.deleteTask(bundle.getString(MainActivityView.ID));
addTaskView.submitButton();
}
}
| [
"JDzqt995"
] | JDzqt995 |
0a83a94717a0ced1165160636376d7dfbe10c441 | 284c213ed17ea373eb241ada9f830ca6742942c6 | /src/datastructure/BinarySearchTree.java | cf9948857e98495c93f03e4f8e098b7c9fa45858 | [] | no_license | mars920314/LeetCode | d0a50b951185249af61fd6681c65224dca4ec653 | 654e59797d19437cac8d1cf7e171770729f901f4 | refs/heads/master | 2021-01-10T07:17:54.057857 | 2016-03-19T15:51:29 | 2016-03-19T15:51:29 | 54,273,953 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,550 | java | package datastructure;
public class BinarySearchTree {
TreeNode root=null;
BinarySearchTree(int x){
this.root=new TreeNode(x);
}
void insert(int x){
insert_current(root, x);
}
TreeNode insert_current(TreeNode current, int x){
if(current==null){
return new TreeNode(x);
}
else if(x<current.val)
current.left=insert_current(current.left, x);
else if(x>current.val)
current.right=insert_current(current.right, x);
else
;
return current;
}
TreeNode search(int x){
TreeNode tmp=root;
while(tmp!=null){
if(tmp.val==x)
return tmp;
else if(x<tmp.val)
tmp=tmp.left;
else
tmp=tmp.right;
}
return null;
}
void delete(int x){
delete_current(root, x);
}
TreeNode delete_current(TreeNode current, int x){
if(x<current.val)
current.left=delete_current(current.left, x);
else if(x>current.val)
current.right=delete_current(current.right, x);
else
if(current.left!=null && current.right!=null){
TreeNode tmp=current.right;
while(tmp.left!=null)
tmp=tmp.left;
current.val=tmp.val;
delete_current(current.right, tmp.val);
}
else if(current.left==null && current.right!=null)
return current.right;
else if(current.left!=null && current.right==null)
return current.left;
else
return null;
return current;
}
public static void main(String[] args){
BinarySearchTree BST=new BinarySearchTree(10);
BST.insert(5);
BST.insert(8);
BST.insert(3);
BST.insert(7);
BST.insert(6);
BST.delete(5);
TreeNode se=BST.search(1);
}
}
| [
"[email protected]"
] | |
1afe0ca64fb13e23b839ac1c072b5478324a01d7 | 4b0bf4787e89bcae7e4759bde6d7f3ab2c81f849 | /aliyun-java-sdk-emr/src/main/java/com/aliyuncs/emr/transform/v20160408/DescribeScalingConfigItemV2ResponseUnmarshaller.java | 16bbfac36eca5263aef950dc95245e449a7e5ea6 | [
"Apache-2.0"
] | permissive | aliyun/aliyun-openapi-java-sdk | a263fa08e261f12d45586d1b3ad8a6609bba0e91 | e19239808ad2298d32dda77db29a6d809e4f7add | refs/heads/master | 2023-09-03T12:28:09.765286 | 2023-09-01T09:03:00 | 2023-09-01T09:03:00 | 39,555,898 | 1,542 | 1,317 | NOASSERTION | 2023-09-14T07:27:05 | 2015-07-23T08:41:13 | Java | UTF-8 | Java | false | false | 1,697 | 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 com.aliyuncs.emr.transform.v20160408;
import com.aliyuncs.emr.model.v20160408.DescribeScalingConfigItemV2Response;
import com.aliyuncs.transform.UnmarshallerContext;
public class DescribeScalingConfigItemV2ResponseUnmarshaller {
public static DescribeScalingConfigItemV2Response unmarshall(DescribeScalingConfigItemV2Response describeScalingConfigItemV2Response, UnmarshallerContext _ctx) {
describeScalingConfigItemV2Response.setRequestId(_ctx.stringValue("DescribeScalingConfigItemV2Response.RequestId"));
describeScalingConfigItemV2Response.setConfigItemType(_ctx.stringValue("DescribeScalingConfigItemV2Response.ConfigItemType"));
describeScalingConfigItemV2Response.setScalingGroupBizId(_ctx.stringValue("DescribeScalingConfigItemV2Response.ScalingGroupBizId"));
describeScalingConfigItemV2Response.setScalingConfigItemBizId(_ctx.stringValue("DescribeScalingConfigItemV2Response.ScalingConfigItemBizId"));
describeScalingConfigItemV2Response.setConfigItemInformation(_ctx.stringValue("DescribeScalingConfigItemV2Response.ConfigItemInformation"));
return describeScalingConfigItemV2Response;
}
} | [
"[email protected]"
] | |
6a8ffd0aaa87d491c707ced0fd61fc7344e2c27a | 2bb0ab75288031a14a0494379e668c1c20d11540 | /src/com/massivecraft/factions/entity/BoardColls.java | 8ce013b6d6a2d78dd19fcf58e0a4d8ba970a9a36 | [] | no_license | crazyskink25/Factions | 9fbf6d2b42f229aef3a3c6e011d6131b95640650 | cf03bd5b8a8bf65a0829a1c37421501ca74b2150 | refs/heads/master | 2021-01-16T17:48:31.178179 | 2013-04-29T14:29:10 | 2013-04-29T14:29:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,347 | java | package com.massivecraft.factions.entity;
import java.io.File;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
import com.massivecraft.factions.Const;
import com.massivecraft.factions.Factions;
import com.massivecraft.factions.RelationParticipator;
import com.massivecraft.factions.TerritoryAccess;
import com.massivecraft.mcore.ps.PS;
import com.massivecraft.mcore.ps.PSBuilder;
import com.massivecraft.mcore.usys.Aspect;
import com.massivecraft.mcore.util.DiscUtil;
import com.massivecraft.mcore.xlib.gson.reflect.TypeToken;
public class BoardColls extends XColls<BoardColl, Board> implements BoardInterface
{
// -------------------------------------------- //
// INSTANCE & CONSTRUCT
// -------------------------------------------- //
private static BoardColls i = new BoardColls();
public static BoardColls get() { return i; }
// -------------------------------------------- //
// OVERRIDE: COLLS
// -------------------------------------------- //
@Override
public BoardColl createColl(String collName)
{
return new BoardColl(collName);
}
@Override
public Aspect getAspect()
{
return Factions.get().getAspect();
}
@Override
public String getBasename()
{
return Const.COLLECTION_BASENAME_BOARD;
}
@Override
public void init()
{
super.init();
this.migrate();
}
// This method is for the 1.8.X --> 2.0.0 migration
public void migrate()
{
// Create file objects
File oldFile = new File(Factions.get().getDataFolder(), "board.json");
File newFile = new File(Factions.get().getDataFolder(), "board.json.migrated");
// Already migrated?
if ( ! oldFile.exists()) return;
// Read the file content through GSON.
Type type = new TypeToken<Map<String,Map<String,TerritoryAccess>>>(){}.getType();
Map<String,Map<String,TerritoryAccess>> worldCoordIds = Factions.get().gson.fromJson(DiscUtil.readCatch(oldFile), type);
// Set the data
for (Entry<String,Map<String,TerritoryAccess>> entry : worldCoordIds.entrySet())
{
String worldName = entry.getKey();
BoardColl boardColl = this.getForWorld(worldName);
Board board = boardColl.get(worldName);
for (Entry<String,TerritoryAccess> entry2 : entry.getValue().entrySet())
{
String[] ChunkCoordParts = entry2.getKey().trim().split("[,\\s]+");
int chunkX = Integer.parseInt(ChunkCoordParts[0]);
int chunkZ = Integer.parseInt(ChunkCoordParts[1]);
PS ps = new PSBuilder().chunkX(chunkX).chunkZ(chunkZ).build();
TerritoryAccess territoryAccess = entry2.getValue();
board.setTerritoryAccessAt(ps, territoryAccess);
}
}
// Mark as migrated
oldFile.renameTo(newFile);
}
// -------------------------------------------- //
// OVERRIDE: BOARD
// -------------------------------------------- //
@Override
public TerritoryAccess getTerritoryAccessAt(PS ps)
{
BoardColl coll = this.getForWorld(ps.getWorld());
if (coll == null) return null;
return coll.getTerritoryAccessAt(ps);
}
@Override
public Faction getFactionAt(PS ps)
{
BoardColl coll = this.getForWorld(ps.getWorld());
if (coll == null) return null;
return coll.getFactionAt(ps);
}
// SET
@Override
public void setTerritoryAccessAt(PS ps, TerritoryAccess territoryAccess)
{
BoardColl coll = this.getForWorld(ps.getWorld());
if (coll == null) return;
coll.setTerritoryAccessAt(ps, territoryAccess);
}
@Override
public void setFactionAt(PS ps, Faction faction)
{
BoardColl coll = this.getForWorld(ps.getWorld());
if (coll == null) return;
coll.setFactionAt(ps, faction);
}
// REMOVE
@Override
public void removeAt(PS ps)
{
BoardColl coll = this.getForWorld(ps.getWorld());
if (coll == null) return;
coll.removeAt(ps);
}
@Override
public void removeAll(Faction faction)
{
for (BoardColl coll : this.getColls())
{
coll.removeAll(faction);
}
}
@Override
public void clean()
{
for (BoardColl coll : this.getColls())
{
coll.clean();
}
}
// CHUNKS
@Override
public Set<PS> getChunks(Faction faction)
{
Set<PS> ret = new HashSet<PS>();
for (BoardColl coll : this.getColls())
{
ret.addAll(coll.getChunks(faction));
}
return ret;
}
// COUNT
@Override
public int getCount(Faction faction)
{
int ret = 0;
for (BoardColl coll : this.getColls())
{
ret += coll.getCount(faction);
}
return ret;
}
// NEARBY DETECTION
@Override
public boolean isBorderPs(PS ps)
{
BoardColl coll = this.getForWorld(ps.getWorld());
if (coll == null) return false;
return coll.isBorderPs(ps);
}
@Override
public boolean isConnectedPs(PS ps, Faction faction)
{
BoardColl coll = this.getForWorld(ps.getWorld());
if (coll == null) return false;
return coll.isConnectedPs(ps, faction);
}
// MAP GENERATION
@Override
public ArrayList<String> getMap(RelationParticipator observer, PS centerPs, double inDegrees)
{
BoardColl coll = this.getForWorld(centerPs.getWorld());
if (coll == null) return null;
return coll.getMap(observer, centerPs, inDegrees);
}
}
| [
"[email protected]"
] | |
2bc15d5c58a9f097c10baa32410f287b9fe96957 | 5f3fddd2ead0102c4ddd3d074370152e3ee7fd0d | /app/src/main/java/com/number26/anibal/myapplication/service/Number26Service.java | b509ff4820604c0567e0f2a4e0f7cb7ab26fea93 | [] | no_license | Hannibalem/mygraph | aef0a37ee4686da90bfeb8695ef1ea1dc784f9ba | 4536eb8d3bb37e232bc552019c85eefd93e42109 | refs/heads/master | 2021-01-17T17:36:33.898562 | 2016-08-12T18:59:50 | 2016-08-12T18:59:50 | 63,176,464 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 455 | java | package com.number26.anibal.myapplication.service;
import com.number26.anibal.myapplication.api.BaseResponse;
import com.number26.anibal.myapplication.model.Interval;
import java.util.List;
import retrofit2.http.GET;
import retrofit2.http.Query;
import rx.Observable;
/**
* Created by anibal on 30.06.16.
*/
public interface Number26Service {
@GET("charts/market-price")
Observable<BaseResponse> getGraph(@Query("format") String format);
}
| [
"[email protected]"
] | |
f7157d01f1dec7c867afe907e931d43a307f9d4c | 332297e5b7277ad48ec867933bd2c88bf49e8ff4 | /chrome/android/java/src/org/chromium/chrome/browser/tab/TabContextMenuItemDelegate.java | 45c7a620bf5f6828bb03fca63dfe6791911f92dc | [
"BSD-3-Clause"
] | permissive | chorman0773/chromium | 3b4147a24e41dab4abe82cde84b9a6f52dd7ee67 | ba837a33fd29823d60e8119daf0d5b8113384ca6 | refs/heads/master | 2022-11-29T21:39:15.228897 | 2018-11-13T15:42:24 | 2018-11-13T15:42:24 | 157,396,636 | 1 | 0 | NOASSERTION | 2018-11-13T15:42:25 | 2018-11-13T14:52:16 | null | UTF-8 | Java | false | false | 12,363 | java | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chrome.browser.tab;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.net.MailTo;
import android.net.Uri;
import android.provider.Browser;
import android.provider.ContactsContract;
import android.support.customtabs.CustomTabsIntent;
import org.chromium.base.ContextUtils;
import org.chromium.base.metrics.RecordUserAction;
import org.chromium.chrome.browser.DefaultBrowserInfo;
import org.chromium.chrome.browser.IntentHandler;
import org.chromium.chrome.browser.LaunchIntentDispatcher;
import org.chromium.chrome.browser.UrlConstants;
import org.chromium.chrome.browser.contextmenu.ContextMenuItemDelegate;
import org.chromium.chrome.browser.document.ChromeLauncherActivity;
import org.chromium.chrome.browser.download.ChromeDownloadDelegate;
import org.chromium.chrome.browser.experiments.EphemeralTab;
import org.chromium.chrome.browser.multiwindow.MultiWindowUtils;
import org.chromium.chrome.browser.net.spdyproxy.DataReductionProxySettings;
import org.chromium.chrome.browser.preferences.PrefServiceBridge;
import org.chromium.chrome.browser.tabmodel.TabModel.TabLaunchType;
import org.chromium.chrome.browser.tabmodel.document.TabDelegate;
import org.chromium.chrome.browser.util.IntentUtils;
import org.chromium.chrome.browser.util.UrlUtilities;
import org.chromium.content_public.browser.LoadUrlParams;
import org.chromium.content_public.common.Referrer;
import org.chromium.ui.base.Clipboard;
import org.chromium.ui.base.PageTransition;
import java.net.URI;
import java.util.Locale;
/**
* A default {@link ContextMenuItemDelegate} that supports the context menu functionality in Tab.
*/
public class TabContextMenuItemDelegate implements ContextMenuItemDelegate {
private final Tab mTab;
private boolean mLoadOriginalImageRequestedForPageLoad;
private EmptyTabObserver mDataReductionProxyContextMenuTabObserver;
/**
* Builds a {@link TabContextMenuItemDelegate} instance.
*/
public TabContextMenuItemDelegate(Tab tab) {
mTab = tab;
mDataReductionProxyContextMenuTabObserver = new EmptyTabObserver() {
@Override
public void onPageLoadStarted(Tab tab, String url) {
mLoadOriginalImageRequestedForPageLoad = false;
}
};
mTab.addObserver(mDataReductionProxyContextMenuTabObserver);
}
@Override
public void onDestroy() {
mTab.removeObserver(mDataReductionProxyContextMenuTabObserver);
}
@Override
public boolean isIncognito() {
return mTab.isIncognito();
}
@Override
public boolean isIncognitoSupported() {
return PrefServiceBridge.getInstance().isIncognitoModeEnabled();
}
@Override
public boolean isOpenInOtherWindowSupported() {
return MultiWindowUtils.getInstance().isOpenInOtherWindowSupported(mTab.getActivity());
}
@Override
public boolean isDataReductionProxyEnabledForURL(String url) {
return isSpdyProxyEnabledForUrl(url);
}
@Override
public boolean startDownload(String url, boolean isLink) {
return !isLink
|| !ChromeDownloadDelegate.from(mTab).shouldInterceptContextMenuDownload(url);
}
@Override
public void onSaveToClipboard(String text, int clipboardType) {
Clipboard.getInstance().setText(text);
}
@Override
public boolean supportsCall() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("tel:"));
return mTab.getWindowAndroid().canResolveActivity(intent);
}
@Override
public void onCall(String uri) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setData(Uri.parse(uri));
IntentUtils.safeStartActivity(mTab.getActivity(), intent);
}
@Override
public boolean supportsSendEmailMessage() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("mailto:[email protected]"));
return mTab.getWindowAndroid().canResolveActivity(intent);
}
@Override
public void onSendEmailMessage(String url) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setData(Uri.parse(url));
IntentUtils.safeStartActivity(mTab.getActivity(), intent);
}
@Override
public boolean supportsSendTextMessage() {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("sms:"));
return mTab.getWindowAndroid().canResolveActivity(intent);
}
@Override
public void onSendTextMessage(String url) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("sms:" + UrlUtilities.getTelNumber(url)));
IntentUtils.safeStartActivity(mTab.getActivity(), intent);
}
@Override
public boolean supportsAddToContacts() {
Intent intent = new Intent(Intent.ACTION_INSERT);
intent.setType(ContactsContract.Contacts.CONTENT_TYPE);
return mTab.getWindowAndroid().canResolveActivity(intent);
}
@Override
public void onAddToContacts(String url) {
Intent intent = new Intent(Intent.ACTION_INSERT);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setType(ContactsContract.Contacts.CONTENT_TYPE);
if (MailTo.isMailTo(url)) {
intent.putExtra(
ContactsContract.Intents.Insert.EMAIL, MailTo.parse(url).getTo().split(",")[0]);
} else if (UrlUtilities.isTelScheme(url)) {
intent.putExtra(ContactsContract.Intents.Insert.PHONE, UrlUtilities.getTelNumber(url));
}
IntentUtils.safeStartActivity(mTab.getActivity(), intent);
}
@Override
public void onOpenInOtherWindow(String url, Referrer referrer) {
TabDelegate tabDelegate = new TabDelegate(mTab.isIncognito());
LoadUrlParams loadUrlParams = new LoadUrlParams(url);
loadUrlParams.setReferrer(referrer);
tabDelegate.createTabInOtherWindow(loadUrlParams, mTab.getActivity(), mTab.getParentId());
}
@Override
public void onOpenInNewTab(String url, Referrer referrer) {
RecordUserAction.record("MobileNewTabOpened");
LoadUrlParams loadUrlParams = new LoadUrlParams(url);
loadUrlParams.setReferrer(referrer);
mTab.getTabModelSelector().openNewTab(
loadUrlParams, TabLaunchType.FROM_LONGPRESS_BACKGROUND, mTab, isIncognito());
}
@Override
public void onLoadOriginalImage() {
mLoadOriginalImageRequestedForPageLoad = true;
mTab.loadOriginalImage();
}
@Override
public boolean wasLoadOriginalImageRequestedForPageLoad() {
return mLoadOriginalImageRequestedForPageLoad;
}
@Override
public void onOpenInNewIncognitoTab(String url) {
RecordUserAction.record("MobileNewTabOpened");
mTab.getTabModelSelector().openNewTab(new LoadUrlParams(url),
TabLaunchType.FROM_LONGPRESS_FOREGROUND, mTab, true);
}
@Override
public String getPageUrl() {
return mTab.getUrl();
}
@Override
public void onOpenImageUrl(String url, Referrer referrer) {
LoadUrlParams loadUrlParams = new LoadUrlParams(url);
loadUrlParams.setTransitionType(PageTransition.LINK);
loadUrlParams.setReferrer(referrer);
mTab.loadUrl(loadUrlParams);
}
@Override
public void onOpenImageInNewTab(String url, Referrer referrer) {
boolean useOriginal = isSpdyProxyEnabledForUrl(url);
LoadUrlParams loadUrlParams = new LoadUrlParams(url);
loadUrlParams.setVerbatimHeaders(useOriginal
? DataReductionProxySettings.getInstance()
.getDataReductionProxyPassThroughHeader()
: null);
loadUrlParams.setReferrer(referrer);
mTab.getActivity().getTabModelSelector().openNewTab(loadUrlParams,
TabLaunchType.FROM_LONGPRESS_BACKGROUND, mTab, isIncognito());
}
@Override
public void onOpenInChrome(String linkUrl, String pageUrl) {
Context applicationContext = ContextUtils.getApplicationContext();
Intent chromeIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(linkUrl));
chromeIntent.setPackage(applicationContext.getPackageName());
chromeIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PackageManager packageManager = applicationContext.getPackageManager();
if (packageManager.queryIntentActivities(chromeIntent, 0).isEmpty()) {
// If Chrome can't handle intent fallback to using any other VIEW handlers.
chromeIntent.setPackage(null);
// Query again without the package name set and if there are still no handlers for the
// URI fail gracefully, and do nothing, since this will still cause a crash if launched.
if (packageManager.queryIntentActivities(chromeIntent, 0).isEmpty()) return;
}
// For "Open in Chrome" from the context menu in FullscreenActivity we want to bypass
// CustomTab, and this flag ensures we open in TabbedChrome.
chromeIntent.putExtra(LaunchIntentDispatcher.EXTRA_IS_ALLOWED_TO_RETURN_TO_PARENT, false);
boolean activityStarted = false;
if (pageUrl != null) {
try {
URI pageUri = URI.create(pageUrl);
if (UrlUtilities.isInternalScheme(pageUri)) {
IntentHandler.startChromeLauncherActivityForTrustedIntent(chromeIntent);
activityStarted = true;
}
} catch (IllegalArgumentException ex) {
// Ignore the exception for creating the URI and launch the intent
// without the trusted intent extras.
}
}
if (!activityStarted) {
Context context = mTab.getActivity();
if (context == null) context = applicationContext;
context.startActivity(chromeIntent);
activityStarted = true;
}
}
@Override
public void onOpenInNewChromeTabFromCCT(String linkUrl, boolean isIncognito) {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(linkUrl));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setClass(mTab.getApplicationContext(), ChromeLauncherActivity.class);
intent.putExtra(LaunchIntentDispatcher.EXTRA_IS_ALLOWED_TO_RETURN_TO_PARENT, false);
if (isIncognito) {
intent.putExtra(IntentHandler.EXTRA_OPEN_NEW_INCOGNITO_TAB, true);
intent.putExtra(
Browser.EXTRA_APPLICATION_ID, mTab.getApplicationContext().getPackageName());
IntentHandler.addTrustedIntentExtras(intent);
IntentHandler.setTabLaunchType(intent, TabLaunchType.FROM_EXTERNAL_APP);
}
IntentUtils.safeStartActivity(mTab.getActivity(), intent);
}
@Override
public String getTitleForOpenTabInExternalApp() {
return DefaultBrowserInfo.getTitleOpenInDefaultBrowser(false);
}
@Override
public void onOpenInDefaultBrowser(String url) {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
CustomTabsIntent.setAlwaysUseBrowserUI(intent);
IntentUtils.safeStartActivity(mTab.getActivity(), intent);
}
@Override
public void onOpenInEphemeralTab(String url, Referrer referrer) {
EphemeralTab.onOpen(url, referrer, isIncognito());
}
/**
* Checks if spdy proxy is enabled for input url.
* @param url Input url to check for spdy setting.
* @return true if url is enabled for spdy proxy.
*/
private boolean isSpdyProxyEnabledForUrl(String url) {
if (DataReductionProxySettings.getInstance().isDataReductionProxyEnabled()
&& url != null && !url.toLowerCase(Locale.US).startsWith(
UrlConstants.HTTPS_URL_PREFIX)
&& !isIncognito()) {
return true;
}
return false;
}
}
| [
"[email protected]"
] | |
c4c8a3c6a3d8ff331947d068ff76e067172e039d | fa7a06a099386cc7d4a4414c9914259835962006 | /microservicecloud-provider-dept-hystrix-8001/src/main/java/com/sk/springcloud/service/DeptService.java | fb40cb4e3a7563162c8d14fda196c4c641e5f494 | [] | no_license | xuepengcheng-001/microservicecloud | 54911d1e0afeffd47576a68618f202fb2506985b | 1953532b026b6b4e49235f966d55fb923cd33c9c | refs/heads/master | 2022-06-21T09:59:29.061928 | 2019-08-10T08:49:50 | 2019-08-10T08:49:50 | 201,603,850 | 0 | 0 | null | 2022-06-21T04:05:11 | 2019-08-10T08:43:05 | Java | UTF-8 | Java | false | false | 224 | java | package com.sk.springcloud.service;
import java.util.List;
import com.sk.springcloud.entitys.Dept;
public interface DeptService {
public boolean add(Dept dept);
public Dept get(Long id);
public List<Dept> list();
}
| [
"[email protected]"
] | |
33935a3992edfc0dbee43ff938def0c0ec577fad | e24f3d5d3e0ea1398244fbc450f5ea33bb08f0ab | /dmd_project-dao/src/main/java/ru/innopolis/dmd/project/dao/postgresql/AbstractDaoImpl.java | b8adab3f642aa8a51258a9128cefdd6367932f6f | [] | no_license | TimurKasatkin/dmd_project | 17e506098ffc76bb304815f0d5442bc09213f60d | c62ce95ec0b96f3bedb1d03dd50ce3ab5e18efc7 | refs/heads/master | 2020-04-05T23:04:24.365487 | 2016-12-29T09:19:27 | 2016-12-29T09:19:27 | 42,849,613 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,752 | java | package ru.innopolis.dmd.project.dao.postgresql;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.ResultSetExtractor;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.datasource.DriverManagerDataSource;
import ru.innopolis.dmd.project.dao.AbstractDao;
import ru.innopolis.dmd.project.dao.postgresql.utils.EntityMappingUtils;
import ru.innopolis.dmd.project.dao.postgresql.utils.FetchUtils;
import ru.innopolis.dmd.project.dao.util.Constants;
import ru.innopolis.dmd.project.model.IdentifiedEntity;
import javax.sql.DataSource;
import java.io.Serializable;
import java.util.List;
import static java.text.MessageFormat.format;
import static ru.innopolis.dmd.project.dao.postgresql.utils.SQLUtils.alias;
import static ru.innopolis.dmd.project.dao.postgresql.utils.SQLUtils.fieldsStr;
/**
* Created by timur on 15.10.15.
*/
public abstract class AbstractDaoImpl<E extends IdentifiedEntity, I extends Serializable> implements AbstractDao<E, I> {
/**
* JUST FOR TESTS IN MAIN METHOD!!!
*/
protected static DataSource testDataSource = new DriverManagerDataSource(Constants.POSTGRESQL_URL,
Constants.POSTGRESQL_LOGIN, Constants.POSTGRESQL_PASSWORD);
protected Class<E> entityClass;
@Autowired
protected DataSource dataSource;
protected JdbcTemplate jdbcTemplate;
protected String alias;
protected String tableName;
protected String tableFieldsStr;
public AbstractDaoImpl(Class<E> entityClass, DataSource dataSource) {
this(Constants.ENTITY_TABLE_NAME.get(entityClass), entityClass, dataSource);
}
public AbstractDaoImpl(String tableName, Class<E> entityClass, DataSource dataSource) {
this.tableName = tableName;
this.alias = alias(tableName);
this.entityClass = entityClass;
this.dataSource = dataSource;
this.jdbcTemplate = new JdbcTemplate(dataSource, true);
this.tableFieldsStr = fieldsStr(entityClass);
}
@Override
public E findById(I id) {
return proxy(jdbcTemplate.queryForObject(format("SELECT {0} FROM {1} {2} WHERE {2}.id=?;",
tableFieldsStr, tableName, alias(tableName)), rowMapper(), id));
}
@Override
public long count() {
return jdbcTemplate.queryForObject(format("SELECT count(*) AS {0}_count FROM {1};",
entityClass.getSimpleName().toLowerCase(), tableName), Long.class);
}
@Override
public void delete(I id) {
jdbcTemplate.update(format("DELETE FROM {0} WHERE id=?", tableName), id);
}
@Override
public List<E> findAllAndSortBy(String columnName, boolean isAsc, Integer offset, Integer limit) {
return proxy(jdbcTemplate.query(
format("SELECT {0} FROM {1} {2} ORDER BY {3} {4} LIMIT {5} OFFSET {6};",
tableFieldsStr, tableName, alias, columnName, isAsc ? "ASC" : "DESC",
limit.toString(), offset.toString()),
rowMapper()));
}
protected RowMapper<E> rowMapper() {
return (rs, rowNum) -> EntityMappingUtils.extractEntity(entityClass, rs);
}
protected ResultSetExtractor<E> resExtractor() {
return rs -> rs.next() ? EntityMappingUtils.extractEntity(entityClass, rs) : null;
}
protected E proxy(E entity) {
FetchUtils.proxy(entityClass, entity, jdbcTemplate);
return entity;
}
protected <ET extends IdentifiedEntity> List<ET> proxy(List<ET> entities) {
entities.forEach(entity ->
FetchUtils.proxy((Class<ET>) entity.getClass(), entity, jdbcTemplate));
return entities;
}
}
| [
"[email protected]"
] | |
d7455f7928b411a494d24c16a61b3f30154e2b1a | 0ada9e37f14143f182498206cd3bec4db0eb4661 | /oap-stdlib/src/test/java/oap/util/MemoryMeterTest.java | f6e40860c58988ea5719d8818e5375dad873bbdf | [
"MIT"
] | permissive | vi-ai/oap | b5d428d0ac96c97a9cf93989e964b9adec91bb44 | b5f907d572a36a40dcd7ce1c68aea709f6542349 | refs/heads/master | 2023-07-21T14:18:41.248753 | 2017-12-11T12:10:02 | 2017-12-11T12:10:02 | 82,679,470 | 0 | 0 | null | 2018-01-12T14:11:29 | 2017-02-21T12:52:03 | Java | UTF-8 | Java | false | false | 1,450 | java | /*
* The MIT License (MIT)
*
* Copyright (c) Open Application Platform Authors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package oap.util;
import org.testng.annotations.Test;
/**
* Created by igor.petrenko on 29.11.2016.
*/
public class MemoryMeterTest {
@Test
public void testGet() throws Exception {
MemoryMeter.get().measure( "sdfsdf" );
MemoryMeter.get().measure( "sdfsdf" );
}
} | [
"[email protected]"
] | |
0aa4570dfca3b61edd2f128c20968f36790a3c27 | 3bc88bad2063e40a3f9f4bce4bd18cd474798cce | /백준/BOJ 2884 알람 시계/Main.java | f76f4f52f79d95cc002101924b9bb9584ea99d08 | [] | no_license | cocobino/ACM-ICPC | b1793403bf4f759adf6457f36a78d47dd5988135 | 03c1f8a24f50229abebe03657dc2ef75d2816244 | refs/heads/master | 2023-02-26T02:09:15.120403 | 2023-02-20T15:08:44 | 2023-02-20T15:08:44 | 128,730,398 | 3 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,098 | java |
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class Main {
static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
static StringTokenizer st;
static int h,m;
static int dx[] = {0,0,-1,1};
static int dy[] = {1,-1,0,0};
static int x,y;
public static void main(String[] args) throws NumberFormatException, IOException {
// TODO Auto-generated method stub
st = new StringTokenizer(br.readLine());
h = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
if(m-45>=0) {
m-=45;
}else if(m-45<0){
if(h>0)h--;
else if(h==0)h=23;
m-=45;
m+=60;
}
bw.write(String.valueOf(h +" "+m));
bw.flush();
}// main
}// class
| [
"[email protected]"
] | |
e4d0a7d7932e51607d0190d5be8b6799d7af06ea | 25e8388c82afad04a4351cafa3e11c7ba972b0e9 | /Geico/src/main/java/motorVehicle/MotorVehicleCustomerInfo.java | 299019bd3259acbf0a8e865fa5ba98d7ce9f8dfe | [] | no_license | mohammad898/PNT_HybridFreamwork | 20b539221d988ec6d99e0730977515c4bf46da9e | 37773d12f20397cd7605ffa243c973950ce8952e | refs/heads/master | 2020-04-01T11:52:12.341679 | 2018-10-16T00:12:01 | 2018-10-16T00:12:01 | 153,181,225 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 899 | java | package motorVehicle;
import base.CommonClass;
import homePage.InsuranceProducts;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
public class MotorVehicleCustomerInfo extends CommonClass {
InsuranceProducts obj = new InsuranceProducts();
@FindBy(css = "#mainContent > div.padding-top > form > div:nth-child(2) > div:nth-child(3)")
public static WebElement noDIv;
public void navigateToMotorVehiclePage() throws InterruptedException {
WebElement motorVehicle = InsuranceProducts.motorCycleInsuranceIcon;
obj.clickOnIconwithZipCode(motorVehicle);
}
public void clickOnNoRD(){
driver.findElement(By.xpath("//label[@for='hasGeico1']")).click();
}
public boolean isNoDivVisible(){
clickOnNoRD();
waitToBeVisible(noDIv);
return noDIv.isDisplayed();
}
}
| [
"[email protected]"
] | |
9a543dc20a04a2d8044b502c31fd4fc8f623bb0d | a8e092c1f877317f54882d66ccf5e6c5148fcce3 | /src/main/java/bitmap/BitMapFile.java | 6562235286c1ea4d773fb91c7c464373691d2486 | [] | no_license | shikhar1sharma/Columnar_DB | 6f8401dac9f57f3663422037be2071dddbe16602 | c913bd18bf1cee5026b22238d2255a3b2201000f | refs/heads/master | 2021-09-09T06:17:19.604371 | 2018-03-14T05:21:21 | 2018-03-14T05:21:21 | 125,158,868 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 7,613 | java | package bitmap;
import java.io.IOException;
import bufmgr.HashEntryNotFoundException;
import bufmgr.InvalidFrameNumberException;
import bufmgr.PageUnpinnedException;
import bufmgr.ReplacerException;
import columnar.ColumnarFile;
import diskmgr.Page;
import global.*;
public class BitMapFile {
private BitMapHeaderPage headerPage;
private PageId headerPageId;
private String fileName;
private ColumnarFile columnarFile;
/**
* Access method to data member.
*
* @return Return a BitMapHeaderPage object that is the header page
* of this bitmap file.
*/
public BitMapHeaderPage getHeaderPage() {
return headerPage;
}
private PageId getFileEntry(String fileName) throws GetFileEntryException {
try {
return SystemDefs.JavabaseDB.getFileEntry(fileName);
} catch (Exception e) {
e.printStackTrace();
throw new GetFileEntryException(e, "");
}
}
private Page pinPage(PageId pageId) throws PinPageException {
try {
Page page = new Page();
SystemDefs.JavabaseBM.pinPage(pageId, page, false/*Rdisk*/);
return page;
} catch (Exception e) {
e.printStackTrace();
throw new PinPageException(e, "");
}
}
private void addFileEntry(String fileName, PageId pageId)
throws AddFileEntryException {
try {
SystemDefs.JavabaseDB.addFileEntry(fileName, pageId);
} catch (Exception e) {
e.printStackTrace();
throw new AddFileEntryException(e, "");
}
}
private void unpinPage(PageId pageId) throws UnpinPageException {
try {
SystemDefs.JavabaseBM.unpinPage(pageId, false);
} catch (Exception e) {
e.printStackTrace();
throw new UnpinPageException(e, "");
}
}
private void freePage(PageId pageId) throws FreePageException {
try {
SystemDefs.JavabaseBM.freePage(pageId);
} catch (Exception e) {
e.printStackTrace();
throw new FreePageException(e, "");
}
}
private void deleteFileEntry(String fileName)
throws DeleteFileEntryException {
try {
SystemDefs.JavabaseDB.deleteFileEntry(fileName);
} catch (Exception e) {
e.printStackTrace();
throw new DeleteFileEntryException(e, "");
}
}
private void unpinPage(PageId pageId, boolean dirty)
throws UnpinPageException {
try {
SystemDefs.JavabaseBM.unpinPage(pageId, dirty);
} catch (Exception e) {
e.printStackTrace();
throw new UnpinPageException(e, "");
}
}
public BitMapFile(String fileName) throws GetFileEntryException,
PinPageException, ConstructPageException {
headerPageId = getFileEntry(fileName);
headerPage = new BitMapHeaderPage(headerPageId);
this.fileName = fileName;
}
public BitMapFile(String fileName, ColumnarFile columnarFile, int columnNo, ValueClass value)
throws GetFileEntryException,
ConstructPageException, IOException, AddFileEntryException {
headerPageId = getFileEntry(fileName);
if (headerPageId == null) // file not exist
{
headerPage = new BitMapHeaderPage();
headerPageId = headerPage.getCurrPage();
addFileEntry(fileName, headerPageId);
headerPage.setColumnIndex((short)columnNo);
headerPage.setValueType((short)value.getValueType());
this.columnarFile = columnarFile;
} else {
headerPage = new BitMapHeaderPage(headerPageId);
}
init(value);
this.fileName = fileName;
}
/*
* Initialize our bitMap
*/
private boolean compareValues(int a, int b){
if (a==b)
return true;
else
return false;
}
private boolean compareValues(float a, float b){
if (a==b)
return true;
else
return false;
}
private boolean compareValues(String a, String b){
if (a.equals(b))
return true;
else
return false;
}
private boolean compareValues(int c,int a, int b){
//a must be smaller than b
if (c>= a && c<=b)
return true;
else
return false;
}
private boolean compareValues(float c,float a, float b){
//a must be smaller than b
if (c>= a && c<=b)
return true;
else
return false;
}
private boolean compareValues(String c,String a, String b){
//a must be smaller than b
if (c.compareTo(a)>=0 && c.compareTo(b)>=0)
return true;
else
return false;
}
private void init(ValueClass value) {
//initialize a sequential scan on the
//Scan scan = columnarFile.openColumnScan(1);
//check if scan object is not valid
int val_type=value.getValueType();
boolean flag=false;
int position=0;
/*check if the tuple match the value*/
switch(val_type)
{
case 1:/*IntegerValue value_new1=scan.getnext();
IntegerValue value_given1=(IntegerValue) value;
do {
flag = compareValues(value_new1.getIntValue(), value_given1.getIntValue());
if (flag) {
//set bit at the given position as 1
insert(position);
} else {
position = position + 1;
// access next column value
value_new1 = scan.getnext();
}
}while(value_new1!=NULL); *///how the scan will end
case 2:/*StringValue value_new2=scan.getnext();
StringValue value_given2=(StringValue) value;
flag=compareValues(value_new2.getStringValue(),value_given2.getStringValue());*/
case 3:/*FloatValue value_new3=scan.getnext();
FloatValue value_given3=(FloatValue)value;
flag=compareValues(value_new3.getFloatValue(),value_given3.getFloatValue());*/
/*
Issue : How to know that value_new object is range as it will be a single value
case 4:RangeIntValue value_new4=scan.getnext();
flag=compareValues(value_new4.getIntValue(),value.getIntValue1(),value.getIntValue2());
case 5:RangeStringValue value_new5=scan.getnext();
flag=compareValues(value_new5.getStringValue(),value.getStringValue1(),value.getStringValue2());
case 6:RangeFloatValue value_new6=scan.getnext();
flag=compareValues(value_new6.getFloatValue(),value.getFloatValue1(),value.getFloatValue2());
*/
}
}
public void close() throws PageUnpinnedException,
InvalidFrameNumberException, HashEntryNotFoundException,
ReplacerException {
if (headerPage != null) {
SystemDefs.JavabaseBM.unpinPage(headerPageId, true);
headerPage = null;
}
}
public void destroyBitMapFile() {
}
public boolean Delete(int position) {
return false;
}
public boolean Insert(int position) {
return false;
}
} | [
"[email protected]"
] | |
ed3173100b0545454ad4c1f0474a001d92d5f8b3 | 42631688fbfa2d2757e1af819f065b8a499bbc1c | /Code/P_SelectReceivedEvent.java | 96335242c688a7b7a52cb282e9737da0e1d9c7e9 | [] | no_license | sanketnawle/What-s-Happening- | 5810f75b1e6f5b0c519943836e30db67bc7347ea | 9a4ede14d06ecf93eed2ed342712203d25d6d1e7 | refs/heads/master | 2021-01-21T08:24:06.533873 | 2017-05-17T22:56:07 | 2017-05-17T22:56:07 | 91,626,392 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,435 | java | package com.example.sanketnawle.whatshappening;
import android.util.Log;
public class P_SelectReceivedEvent {
public String fphone,userNumber,ename,uname, details, location, time,date;
public void setUserNumber(String userNo)
{
userNumber = userNo;
Log.e("user no in SU:setUserno", userNumber);
}
public String getUserNumber()
{
Log.e("User no in SU:getUserNo",userNumber);
return userNumber;
}
public String getEventName() {
return ename;
}
public void setEventName(String ename) {
this.ename = ename;
}
public String getUserName() {
return uname;
}
public void setUserName(String uname) {
this.uname = uname;
}
public String getEventDetails() {
return details;
}
public void setEventDetails(String details) {
this.details = details;
}
public String getEventLocation() {
return location;
}
public void setEventLocation(String location) {
this.location = location;
}
public String getEventTime() {
return time;
}
public void setEventTime(String time) {
this.time = time;
}
public String getEventDate() {
return date ;
}
public void setEventDate(String date) {
this.date = date;
}
}
| [
"[email protected]"
] | |
564866ccef94a865b3983b36223db74de4e424a1 | 14966ace1946bb4bba864661125d3c892e8a991b | /slovar/obj/Debug/81/android/src/android/support/v7/appcompat/R.java | 19099bdcf621e692ab0e852bb9a43647eadea629 | [] | no_license | whatisdeadmayneverdi3/praktika | 3e98e2b958c9bbacf397082b32b69b3a29954053 | 259b35d9b48e4a4e8c50f84d5063515fa1218863 | refs/heads/main | 2023-07-28T08:13:23.721362 | 2021-09-11T12:45:02 | 2021-09-11T12:45:02 | 405,368,198 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 633,406 | 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 android.support.v7.appcompat;
public final class R {
public static final class anim {
public static int abc_fade_in=0x7f050000;
public static int abc_fade_out=0x7f050001;
public static int abc_grow_fade_in_from_bottom=0x7f050002;
public static int abc_popup_enter=0x7f050003;
public static int abc_popup_exit=0x7f050004;
public static int abc_shrink_fade_out_from_bottom=0x7f050005;
public static int abc_slide_in_bottom=0x7f050006;
public static int abc_slide_in_top=0x7f050007;
public static int abc_slide_out_bottom=0x7f050008;
public static int abc_slide_out_top=0x7f050009;
public static int design_bottom_sheet_slide_in=0x7f05000a;
public static int design_bottom_sheet_slide_out=0x7f05000b;
public static int design_snackbar_in=0x7f05000c;
public static int design_snackbar_out=0x7f05000d;
public static int tooltip_enter=0x7f05000e;
public static int tooltip_exit=0x7f05000f;
}
public static final class animator {
public static 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 int actionBarDivider=0x7f010052;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionBarItemBackground=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 int actionBarPopupTheme=0x7f01004c;
/** <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 int actionBarSize=0x7f010051;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionBarSplitStyle=0x7f01004e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionBarStyle=0x7f01004d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionBarTabBarStyle=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 int actionBarTabStyle=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 int actionBarTabTextStyle=0x7f010049;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionBarTheme=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 int actionBarWidgetTheme=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 int actionButtonStyle=0x7f01006d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionDropDownStyle=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 int actionLayout=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 int actionMenuTextAppearance=0x7f010054;
/** <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 int actionMenuTextColor=0x7f010055;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeBackground=0x7f010058;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeCloseButtonStyle=0x7f010057;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeCloseDrawable=0x7f01005a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeCopyDrawable=0x7f01005c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeCutDrawable=0x7f01005b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeFindDrawable=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 int actionModePasteDrawable=0x7f01005d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModePopupWindowStyle=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 int actionModeSelectAllDrawable=0x7f01005e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeShareDrawable=0x7f01005f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeSplitBackground=0x7f010059;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeStyle=0x7f010056;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionModeWebSearchDrawable=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 int actionOverflowButtonStyle=0x7f01004a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int actionOverflowMenuStyle=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 int actionProviderClass=0x7f0100c6;
/** <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 int actionViewClass=0x7f0100c5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int activityChooserViewStyle=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 int alertDialogButtonGroupStyle=0x7f01009a;
/** <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 int alertDialogCenterButtons=0x7f01009b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int alertDialogStyle=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 int alertDialogTheme=0x7f01009c;
/** <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 int allowStacking=0x7f0100b2;
/** <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 int alpha=0x7f0100b3;
/** <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 int alphabeticModifiers=0x7f0100c1;
/** <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 int arrowHeadLength=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 int arrowShaftLength=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 int autoCompleteTextViewStyle=0x7f0100a1;
/** <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 int autoSizeMaxTextSize=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 int autoSizeMinTextSize=0x7f01003a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int autoSizePresetSizes=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 int autoSizeStepGranularity=0x7f010038;
/** <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 int autoSizeTextType=0x7f010037;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int background=0x7f010015;
/** <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 int backgroundSplit=0x7f010017;
/** <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 int backgroundStacked=0x7f010016;
/** <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 int backgroundTint=0x7f0100fd;
/** <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 int backgroundTintMode=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 int barLength=0x7f0100bc;
/** <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 int behavior_autoHide=0x7f010128;
/** <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 int behavior_hideable=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 int behavior_overlapTop=0x7f010131;
/** <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 int behavior_peekHeight=0x7f010104;
/** <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 int behavior_skipCollapsed=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 int borderWidth=0x7f010126;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int borderlessButtonStyle=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 int bottomSheetDialogTheme=0x7f010120;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int bottomSheetStyle=0x7f010121;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int buttonBarButtonStyle=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 int buttonBarNegativeButtonStyle=0x7f01009f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int buttonBarNeutralButtonStyle=0x7f0100a0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int buttonBarPositiveButtonStyle=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 int buttonBarStyle=0x7f01006e;
/** <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 int buttonGravity=0x7f0100f2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int buttonPanelSideLayout=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 int buttonStyle=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 int buttonStyleSmall=0x7f0100a3;
/** <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 int buttonTint=0x7f0100b4;
/** <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 int buttonTintMode=0x7f0100b5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int checkboxStyle=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 int checkedTextViewStyle=0x7f0100a5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int closeIcon=0x7f0100d5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int closeItemLayout=0x7f010027;
/** <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 int collapseContentDescription=0x7f0100f4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int collapseIcon=0x7f0100f3;
/** <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 int collapsedTitleGravity=0x7f010113;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int collapsedTitleTextAppearance=0x7f01010d;
/** <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 int color=0x7f0100b6;
/** <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 int colorAccent=0x7f010091;
/** <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 int colorBackgroundFloating=0x7f010098;
/** <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 int colorButtonNormal=0x7f010095;
/** <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 int colorControlActivated=0x7f010093;
/** <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 int colorControlHighlight=0x7f010094;
/** <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 int colorControlNormal=0x7f010092;
/** <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 int colorError=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 int colorPrimary=0x7f01008f;
/** <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 int colorPrimaryDark=0x7f010090;
/** <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 int colorSwitchThumbNormal=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 int commitIcon=0x7f0100da;
/** <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 int contentDescription=0x7f0100c7;
/** <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 int contentInsetEnd=0x7f010020;
/** <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 int contentInsetEndWithActions=0x7f010024;
/** <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 int contentInsetLeft=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 int contentInsetRight=0x7f010022;
/** <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 int contentInsetStart=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 int contentInsetStartWithNavigation=0x7f010023;
/** <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 int contentScrim=0x7f01010e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int controlBackground=0x7f010097;
/** <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 int counterEnabled=0x7f010147;
/** <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 int counterMaxLength=0x7f010148;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int counterOverflowTextAppearance=0x7f01014a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int counterTextAppearance=0x7f010149;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int customNavigationLayout=0x7f010018;
/** <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 int defaultQueryHint=0x7f0100d4;
/** <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 int dialogPreferredPadding=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 int dialogTheme=0x7f010066;
/** <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 int displayOptions=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 int divider=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 int dividerHorizontal=0x7f010074;
/** <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 int dividerPadding=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 int dividerVertical=0x7f010073;
/** <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 int drawableSize=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 int drawerArrowStyle=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 int dropDownListViewStyle=0x7f010086;
/** <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 int dropdownListPreferredItemHeight=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 int editTextBackground=0x7f01007b;
/** <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 int editTextColor=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 int editTextStyle=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 int elevation=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 int errorEnabled=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 int errorTextAppearance=0x7f010146;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int expandActivityOverflowButtonDrawable=0x7f010029;
/** <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 int expanded=0x7f0100ff;
/** <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 int expandedTitleGravity=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 int expandedTitleMargin=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 int expandedTitleMarginBottom=0x7f01010b;
/** <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 int expandedTitleMarginEnd=0x7f01010a;
/** <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 int expandedTitleMarginStart=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 int expandedTitleMarginTop=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 int expandedTitleTextAppearance=0x7f01010c;
/** <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 int fabSize=0x7f010124;
/** <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 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 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 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 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 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 int font=0x7f010158;
/** <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 int fontFamily=0x7f01003c;
/** <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 int fontProviderAuthority=0x7f010151;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int fontProviderCerts=0x7f010154;
/** <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 int fontProviderFetchStrategy=0x7f010155;
/** <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 int fontProviderFetchTimeout=0x7f010156;
/** <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 int fontProviderPackage=0x7f010152;
/** <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 int fontProviderQuery=0x7f010153;
/** <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 int fontStyle=0x7f010157;
/** <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 int fontWeight=0x7f010159;
/** <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 int foregroundInsidePadding=0x7f010129;
/** <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 int gapBetweenBars=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 int goIcon=0x7f0100d6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int headerLayout=0x7f01012f;
/** <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 int height=0x7f01000a;
/** <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 int hideOnContentScroll=0x7f01001e;
/** <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 int hintAnimationEnabled=0x7f01014b;
/** <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 int hintEnabled=0x7f010144;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int hintTextAppearance=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 int homeAsUpIndicator=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 int homeLayout=0x7f010019;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int icon=0x7f010012;
/** <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 int iconTint=0x7f0100c9;
/** <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 int iconTintMode=0x7f0100ca;
/** <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 int iconifiedByDefault=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 int imageButtonStyle=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 int indeterminateProgressStyle=0x7f01001b;
/** <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 int initialActivityCount=0x7f010028;
/** <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 int insetForeground=0x7f010130;
/** <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 int isLightTheme=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 int itemBackground=0x7f01012d;
/** <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 int itemIconTint=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 int itemPadding=0x7f01001d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int itemTextAppearance=0x7f01012e;
/** <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 int itemTextColor=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 int keylines=0x7f010118;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int layout=0x7f0100d1;
/** <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 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 int layout_anchor=0x7f01011b;
/** <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 int layout_anchorGravity=0x7f01011d;
/** <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 int layout_behavior=0x7f01011a;
/** <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 int layout_collapseMode=0x7f010116;
/** <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 int layout_collapseParallaxMultiplier=0x7f010117;
/** <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 int layout_dodgeInsetEdges=0x7f01011f;
/** <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 int layout_insetEdge=0x7f01011e;
/** <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 int layout_keyline=0x7f01011c;
/** <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 int layout_scrollFlags=0x7f010102;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int layout_scrollInterpolator=0x7f010103;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int listChoiceBackgroundIndicator=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 int listDividerAlertDialog=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 int listItemLayout=0x7f01002e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int listLayout=0x7f01002b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int listMenuViewStyle=0x7f0100ae;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int listPopupWindowStyle=0x7f010087;
/** <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 int listPreferredItemHeight=0x7f010081;
/** <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 int listPreferredItemHeightLarge=0x7f010083;
/** <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 int listPreferredItemHeightSmall=0x7f010082;
/** <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 int listPreferredItemPaddingLeft=0x7f010084;
/** <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 int listPreferredItemPaddingRight=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 int logo=0x7f010013;
/** <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 int logoDescription=0x7f0100f7;
/** <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 int maxActionInlineWidth=0x7f010132;
/** <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 int maxButtonHeight=0x7f0100f1;
/** <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 int measureWithLargestChild=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 int menu=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 int multiChoiceItemLayout=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 int navigationContentDescription=0x7f0100f6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int navigationIcon=0x7f0100f5;
/** <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 int navigationMode=0x7f01000d;
/** <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 int numericModifiers=0x7f0100c2;
/** <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 int overlapAnchor=0x7f0100cd;
/** <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 int paddingBottomNoButtons=0x7f0100cf;
/** <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 int paddingEnd=0x7f0100fb;
/** <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 int paddingStart=0x7f0100fa;
/** <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 int paddingTopNoTitle=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 int panelBackground=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 int panelMenuListTheme=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 int panelMenuListWidth=0x7f01008c;
/** <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 int passwordToggleContentDescription=0x7f01014e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int passwordToggleDrawable=0x7f01014d;
/** <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 int passwordToggleEnabled=0x7f01014c;
/** <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 int passwordToggleTint=0x7f01014f;
/** <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 int passwordToggleTintMode=0x7f010150;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int popupMenuStyle=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 int popupTheme=0x7f010026;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int popupWindowStyle=0x7f010079;
/** <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 int preserveIconSpacing=0x7f0100cb;
/** <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 int pressedTranslationZ=0x7f010125;
/** <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 int progressBarPadding=0x7f01001c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int progressBarStyle=0x7f01001a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int queryBackground=0x7f0100dc;
/** <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 int queryHint=0x7f0100d3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int radioButtonStyle=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 int ratingBarStyle=0x7f0100a8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int ratingBarStyleIndicator=0x7f0100a9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int ratingBarStyleSmall=0x7f0100aa;
/** <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 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 int rippleColor=0x7f010123;
/** <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 int scrimAnimationDuration=0x7f010112;
/** <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 int scrimVisibleHeightTrigger=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 int searchHintIcon=0x7f0100d8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int searchIcon=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 int searchViewStyle=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 int seekBarStyle=0x7f0100ab;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int selectableItemBackground=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 int selectableItemBackgroundBorderless=0x7f010071;
/** <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 int showAsAction=0x7f0100c3;
/** <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 int showDividers=0x7f0100bf;
/** <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 int showText=0x7f0100e8;
/** <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 int showTitle=0x7f01002f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int singleChoiceItemLayout=0x7f01002d;
/** <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 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 int spinBars=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 int spinnerDropDownItemStyle=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 int spinnerStyle=0x7f0100ac;
/** <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 int splitTrack=0x7f0100e7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int srcCompat=0x7f010030;
/** <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 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 int state_above_anchor=0x7f0100ce;
/** <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 int state_collapsed=0x7f010100;
/** <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 int state_collapsible=0x7f010101;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int statusBarBackground=0x7f010119;
/** <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 int statusBarScrim=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 int subMenuArrow=0x7f0100cc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int submitBackground=0x7f0100dd;
/** <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 int subtitle=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 int subtitleTextAppearance=0x7f0100ea;
/** <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 int subtitleTextColor=0x7f0100f9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int subtitleTextStyle=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 int suggestionRowLayout=0x7f0100db;
/** <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 int switchMinWidth=0x7f0100e5;
/** <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 int switchPadding=0x7f0100e6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int switchStyle=0x7f0100ad;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int switchTextAppearance=0x7f0100e4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int tabBackground=0x7f010136;
/** <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 int tabContentStart=0x7f010135;
/** <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 int tabGravity=0x7f010138;
/** <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 int tabIndicatorColor=0x7f010133;
/** <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 int tabIndicatorHeight=0x7f010134;
/** <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 int tabMaxWidth=0x7f01013a;
/** <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 int tabMinWidth=0x7f010139;
/** <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 int tabMode=0x7f010137;
/** <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 int tabPadding=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 int tabPaddingBottom=0x7f010141;
/** <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 int tabPaddingEnd=0x7f010140;
/** <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 int tabPaddingStart=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 int tabPaddingTop=0x7f01013f;
/** <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 int tabSelectedTextColor=0x7f01013d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int tabTextAppearance=0x7f01013b;
/** <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 int tabTextColor=0x7f01013c;
/** <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 int textAllCaps=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 int textAppearanceLargePopupMenu=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 int textAppearanceListItem=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 int textAppearanceListItemSecondary=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 int textAppearanceListItemSmall=0x7f01008a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int textAppearancePopupMenuHeader=0x7f010065;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int textAppearanceSearchResultSubtitle=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 int textAppearanceSearchResultTitle=0x7f01007d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int textAppearanceSmallPopupMenu=0x7f010064;
/** <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 int textColorAlertDialogListItem=0x7f01009d;
/** <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 int textColorError=0x7f010122;
/** <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 int textColorSearchUrl=0x7f01007f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int theme=0x7f0100fc;
/** <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 int thickness=0x7f0100bd;
/** <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 int thumbTextPadding=0x7f0100e3;
/** <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 int thumbTint=0x7f0100de;
/** <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 int thumbTintMode=0x7f0100df;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int tickMark=0x7f010033;
/** <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 int tickMarkTint=0x7f010034;
/** <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 int tickMarkTintMode=0x7f010035;
/** <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 int tint=0x7f010031;
/** <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 int tintMode=0x7f010032;
/** <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 int title=0x7f01000c;
/** <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 int titleEnabled=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 int titleMargin=0x7f0100eb;
/** <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 int titleMarginBottom=0x7f0100ef;
/** <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 int titleMarginEnd=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 int titleMarginStart=0x7f0100ec;
/** <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 int titleMarginTop=0x7f0100ee;
/** <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 int titleMargins=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 int titleTextAppearance=0x7f0100e9;
/** <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 int titleTextColor=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 int titleTextStyle=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 int toolbarId=0x7f010110;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int toolbarNavigationButtonStyle=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 int toolbarStyle=0x7f010076;
/** <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 int tooltipForegroundColor=0x7f0100b0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int tooltipFrameBackground=0x7f0100af;
/** <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 int tooltipText=0x7f0100c8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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 int track=0x7f0100e0;
/** <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 int trackTint=0x7f0100e1;
/** <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 int trackTintMode=0x7f0100e2;
/** <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 int useCompatPadding=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 int voiceIcon=0x7f0100d9;
/** <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 int windowActionBar=0x7f01003d;
/** <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 int windowActionBarOverlay=0x7f01003f;
/** <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 int windowActionModeOverlay=0x7f010040;
/** <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 int windowFixedHeightMajor=0x7f010044;
/** <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 int windowFixedHeightMinor=0x7f010042;
/** <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 int windowFixedWidthMajor=0x7f010041;
/** <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 int windowFixedWidthMinor=0x7f010043;
/** <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 int windowMinWidthMajor=0x7f010045;
/** <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 int windowMinWidthMinor=0x7f010046;
/** <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 int windowNoTitle=0x7f01003e;
}
public static final class bool {
public static int abc_action_bar_embed_tabs=0x7f0b0000;
public static int abc_allow_stacked_button_bar=0x7f0b0001;
public static int abc_config_actionMenuItemAllCaps=0x7f0b0002;
public static int abc_config_closeDialogWhenTouchOutside=0x7f0b0003;
public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0b0004;
}
public static final class color {
public static int abc_background_cache_hint_selector_material_dark=0x7f0c004b;
public static int abc_background_cache_hint_selector_material_light=0x7f0c004c;
public static int abc_btn_colored_borderless_text_material=0x7f0c004d;
public static int abc_btn_colored_text_material=0x7f0c004e;
public static int abc_color_highlight_material=0x7f0c004f;
public static int abc_hint_foreground_material_dark=0x7f0c0050;
public static int abc_hint_foreground_material_light=0x7f0c0051;
public static int abc_input_method_navigation_guard=0x7f0c0000;
public static int abc_primary_text_disable_only_material_dark=0x7f0c0052;
public static int abc_primary_text_disable_only_material_light=0x7f0c0053;
public static int abc_primary_text_material_dark=0x7f0c0054;
public static int abc_primary_text_material_light=0x7f0c0055;
public static int abc_search_url_text=0x7f0c0056;
public static int abc_search_url_text_normal=0x7f0c0001;
public static int abc_search_url_text_pressed=0x7f0c0002;
public static int abc_search_url_text_selected=0x7f0c0003;
public static int abc_secondary_text_material_dark=0x7f0c0057;
public static int abc_secondary_text_material_light=0x7f0c0058;
public static int abc_tint_btn_checkable=0x7f0c0059;
public static int abc_tint_default=0x7f0c005a;
public static int abc_tint_edittext=0x7f0c005b;
public static int abc_tint_seek_thumb=0x7f0c005c;
public static int abc_tint_spinner=0x7f0c005d;
public static int abc_tint_switch_track=0x7f0c005e;
public static int accent_material_dark=0x7f0c0004;
public static int accent_material_light=0x7f0c0005;
public static int background_floating_material_dark=0x7f0c0006;
public static int background_floating_material_light=0x7f0c0007;
public static int background_material_dark=0x7f0c0008;
public static int background_material_light=0x7f0c0009;
public static int bright_foreground_disabled_material_dark=0x7f0c000a;
public static int bright_foreground_disabled_material_light=0x7f0c000b;
public static int bright_foreground_inverse_material_dark=0x7f0c000c;
public static int bright_foreground_inverse_material_light=0x7f0c000d;
public static int bright_foreground_material_dark=0x7f0c000e;
public static int bright_foreground_material_light=0x7f0c000f;
public static int button_material_dark=0x7f0c0010;
public static int button_material_light=0x7f0c0011;
public static int colorAccent=0x7f0c0049;
public static int colorPrimary=0x7f0c0047;
public static int colorPrimaryDark=0x7f0c0048;
public static int design_bottom_navigation_shadow_color=0x7f0c003c;
public static int design_error=0x7f0c005f;
public static int design_fab_shadow_end_color=0x7f0c003d;
public static int design_fab_shadow_mid_color=0x7f0c003e;
public static int design_fab_shadow_start_color=0x7f0c003f;
public static int design_fab_stroke_end_inner_color=0x7f0c0040;
public static int design_fab_stroke_end_outer_color=0x7f0c0041;
public static int design_fab_stroke_top_inner_color=0x7f0c0042;
public static int design_fab_stroke_top_outer_color=0x7f0c0043;
public static int design_snackbar_background_color=0x7f0c0044;
public static int design_tint_password_toggle=0x7f0c0060;
public static int dim_foreground_disabled_material_dark=0x7f0c0012;
public static int dim_foreground_disabled_material_light=0x7f0c0013;
public static int dim_foreground_material_dark=0x7f0c0014;
public static int dim_foreground_material_light=0x7f0c0015;
public static int error_color_material=0x7f0c0016;
public static int foreground_material_dark=0x7f0c0017;
public static int foreground_material_light=0x7f0c0018;
public static int highlighted_text_material_dark=0x7f0c0019;
public static int highlighted_text_material_light=0x7f0c001a;
public static int ic_launcher_background=0x7f0c004a;
public static int material_blue_grey_800=0x7f0c001b;
public static int material_blue_grey_900=0x7f0c001c;
public static int material_blue_grey_950=0x7f0c001d;
public static int material_deep_teal_200=0x7f0c001e;
public static int material_deep_teal_500=0x7f0c001f;
public static int material_grey_100=0x7f0c0020;
public static int material_grey_300=0x7f0c0021;
public static int material_grey_50=0x7f0c0022;
public static int material_grey_600=0x7f0c0023;
public static int material_grey_800=0x7f0c0024;
public static int material_grey_850=0x7f0c0025;
public static int material_grey_900=0x7f0c0026;
public static int notification_action_color_filter=0x7f0c0045;
public static int notification_icon_bg_color=0x7f0c0046;
public static int notification_material_background_media_default_color=0x7f0c003b;
public static int primary_dark_material_dark=0x7f0c0027;
public static int primary_dark_material_light=0x7f0c0028;
public static int primary_material_dark=0x7f0c0029;
public static int primary_material_light=0x7f0c002a;
public static int primary_text_default_material_dark=0x7f0c002b;
public static int primary_text_default_material_light=0x7f0c002c;
public static int primary_text_disabled_material_dark=0x7f0c002d;
public static int primary_text_disabled_material_light=0x7f0c002e;
public static int ripple_material_dark=0x7f0c002f;
public static int ripple_material_light=0x7f0c0030;
public static int secondary_text_default_material_dark=0x7f0c0031;
public static int secondary_text_default_material_light=0x7f0c0032;
public static int secondary_text_disabled_material_dark=0x7f0c0033;
public static int secondary_text_disabled_material_light=0x7f0c0034;
public static int switch_thumb_disabled_material_dark=0x7f0c0035;
public static int switch_thumb_disabled_material_light=0x7f0c0036;
public static int switch_thumb_material_dark=0x7f0c0061;
public static int switch_thumb_material_light=0x7f0c0062;
public static int switch_thumb_normal_material_dark=0x7f0c0037;
public static int switch_thumb_normal_material_light=0x7f0c0038;
public static int tooltip_background_dark=0x7f0c0039;
public static int tooltip_background_light=0x7f0c003a;
}
public static final class dimen {
public static int abc_action_bar_content_inset_material=0x7f070012;
public static int abc_action_bar_content_inset_with_nav=0x7f070013;
public static int abc_action_bar_default_height_material=0x7f070007;
public static int abc_action_bar_default_padding_end_material=0x7f070014;
public static int abc_action_bar_default_padding_start_material=0x7f070015;
public static int abc_action_bar_elevation_material=0x7f070017;
public static int abc_action_bar_icon_vertical_padding_material=0x7f070018;
public static int abc_action_bar_overflow_padding_end_material=0x7f070019;
public static int abc_action_bar_overflow_padding_start_material=0x7f07001a;
public static int abc_action_bar_progress_bar_size=0x7f070008;
public static int abc_action_bar_stacked_max_height=0x7f07001b;
public static int abc_action_bar_stacked_tab_max_width=0x7f07001c;
public static int abc_action_bar_subtitle_bottom_margin_material=0x7f07001d;
public static int abc_action_bar_subtitle_top_margin_material=0x7f07001e;
public static int abc_action_button_min_height_material=0x7f07001f;
public static int abc_action_button_min_width_material=0x7f070020;
public static int abc_action_button_min_width_overflow_material=0x7f070021;
public static int abc_alert_dialog_button_bar_height=0x7f070006;
public static int abc_button_inset_horizontal_material=0x7f070022;
public static int abc_button_inset_vertical_material=0x7f070023;
public static int abc_button_padding_horizontal_material=0x7f070024;
public static int abc_button_padding_vertical_material=0x7f070025;
public static int abc_cascading_menus_min_smallest_width=0x7f070026;
public static int abc_config_prefDialogWidth=0x7f07000b;
public static int abc_control_corner_material=0x7f070027;
public static int abc_control_inset_material=0x7f070028;
public static int abc_control_padding_material=0x7f070029;
public static int abc_dialog_fixed_height_major=0x7f07000c;
public static int abc_dialog_fixed_height_minor=0x7f07000d;
public static int abc_dialog_fixed_width_major=0x7f07000e;
public static int abc_dialog_fixed_width_minor=0x7f07000f;
public static int abc_dialog_list_padding_bottom_no_buttons=0x7f07002a;
public static int abc_dialog_list_padding_top_no_title=0x7f07002b;
public static int abc_dialog_min_width_major=0x7f070010;
public static int abc_dialog_min_width_minor=0x7f070011;
public static int abc_dialog_padding_material=0x7f07002c;
public static int abc_dialog_padding_top_material=0x7f07002d;
public static int abc_dialog_title_divider_material=0x7f07002e;
public static int abc_disabled_alpha_material_dark=0x7f07002f;
public static int abc_disabled_alpha_material_light=0x7f070030;
public static int abc_dropdownitem_icon_width=0x7f070031;
public static int abc_dropdownitem_text_padding_left=0x7f070032;
public static int abc_dropdownitem_text_padding_right=0x7f070033;
public static int abc_edit_text_inset_bottom_material=0x7f070034;
public static int abc_edit_text_inset_horizontal_material=0x7f070035;
public static int abc_edit_text_inset_top_material=0x7f070036;
public static int abc_floating_window_z=0x7f070037;
public static int abc_list_item_padding_horizontal_material=0x7f070038;
public static int abc_panel_menu_list_width=0x7f070039;
public static int abc_progress_bar_height_material=0x7f07003a;
public static int abc_search_view_preferred_height=0x7f07003b;
public static int abc_search_view_preferred_width=0x7f07003c;
public static int abc_seekbar_track_background_height_material=0x7f07003d;
public static int abc_seekbar_track_progress_height_material=0x7f07003e;
public static int abc_select_dialog_padding_start_material=0x7f07003f;
public static int abc_switch_padding=0x7f070016;
public static int abc_text_size_body_1_material=0x7f070040;
public static int abc_text_size_body_2_material=0x7f070041;
public static int abc_text_size_button_material=0x7f070042;
public static int abc_text_size_caption_material=0x7f070043;
public static int abc_text_size_display_1_material=0x7f070044;
public static int abc_text_size_display_2_material=0x7f070045;
public static int abc_text_size_display_3_material=0x7f070046;
public static int abc_text_size_display_4_material=0x7f070047;
public static int abc_text_size_headline_material=0x7f070048;
public static int abc_text_size_large_material=0x7f070049;
public static int abc_text_size_medium_material=0x7f07004a;
public static int abc_text_size_menu_header_material=0x7f07004b;
public static int abc_text_size_menu_material=0x7f07004c;
public static int abc_text_size_small_material=0x7f07004d;
public static int abc_text_size_subhead_material=0x7f07004e;
public static int abc_text_size_subtitle_material_toolbar=0x7f070009;
public static int abc_text_size_title_material=0x7f07004f;
public static int abc_text_size_title_material_toolbar=0x7f07000a;
public static int compat_button_inset_horizontal_material=0x7f07008b;
public static int compat_button_inset_vertical_material=0x7f07008c;
public static int compat_button_padding_horizontal_material=0x7f07008d;
public static int compat_button_padding_vertical_material=0x7f07008e;
public static int compat_control_corner_material=0x7f07008f;
public static int design_appbar_elevation=0x7f070069;
public static int design_bottom_navigation_active_item_max_width=0x7f07006a;
public static int design_bottom_navigation_active_text_size=0x7f07006b;
public static int design_bottom_navigation_elevation=0x7f07006c;
public static int design_bottom_navigation_height=0x7f07006d;
public static int design_bottom_navigation_item_max_width=0x7f07006e;
public static int design_bottom_navigation_item_min_width=0x7f07006f;
public static int design_bottom_navigation_margin=0x7f070070;
public static int design_bottom_navigation_shadow_height=0x7f070071;
public static int design_bottom_navigation_text_size=0x7f070072;
public static int design_bottom_sheet_modal_elevation=0x7f070073;
public static int design_bottom_sheet_peek_height_min=0x7f070074;
public static int design_fab_border_width=0x7f070075;
public static int design_fab_elevation=0x7f070076;
public static int design_fab_image_size=0x7f070077;
public static int design_fab_size_mini=0x7f070078;
public static int design_fab_size_normal=0x7f070079;
public static int design_fab_translation_z_pressed=0x7f07007a;
public static int design_navigation_elevation=0x7f07007b;
public static int design_navigation_icon_padding=0x7f07007c;
public static int design_navigation_icon_size=0x7f07007d;
public static int design_navigation_max_width=0x7f070061;
public static int design_navigation_padding_bottom=0x7f07007e;
public static int design_navigation_separator_vertical_padding=0x7f07007f;
public static int design_snackbar_action_inline_max_width=0x7f070062;
public static int design_snackbar_background_corner_radius=0x7f070063;
public static int design_snackbar_elevation=0x7f070080;
public static int design_snackbar_extra_spacing_horizontal=0x7f070064;
public static int design_snackbar_max_width=0x7f070065;
public static int design_snackbar_min_width=0x7f070066;
public static int design_snackbar_padding_horizontal=0x7f070081;
public static int design_snackbar_padding_vertical=0x7f070082;
public static int design_snackbar_padding_vertical_2lines=0x7f070067;
public static int design_snackbar_text_size=0x7f070083;
public static int design_tab_max_width=0x7f070084;
public static int design_tab_scrollable_min_width=0x7f070068;
public static int design_tab_text_size=0x7f070085;
public static int design_tab_text_size_2line=0x7f070086;
public static int disabled_alpha_material_dark=0x7f070050;
public static int disabled_alpha_material_light=0x7f070051;
public static int fab_margin=0x7f07009b;
public static int fastscroll_default_thickness=0x7f070000;
public static int fastscroll_margin=0x7f070001;
public static int fastscroll_minimum_range=0x7f070002;
public static int highlight_alpha_material_colored=0x7f070052;
public static int highlight_alpha_material_dark=0x7f070053;
public static int highlight_alpha_material_light=0x7f070054;
public static int hint_alpha_material_dark=0x7f070055;
public static int hint_alpha_material_light=0x7f070056;
public static int hint_pressed_alpha_material_dark=0x7f070057;
public static int hint_pressed_alpha_material_light=0x7f070058;
public static int item_touch_helper_max_drag_scroll_per_frame=0x7f070003;
public static int item_touch_helper_swipe_escape_max_velocity=0x7f070004;
public static int item_touch_helper_swipe_escape_velocity=0x7f070005;
public static int notification_action_icon_size=0x7f070090;
public static int notification_action_text_size=0x7f070091;
public static int notification_big_circle_margin=0x7f070092;
public static int notification_content_margin_start=0x7f070088;
public static int notification_large_icon_height=0x7f070093;
public static int notification_large_icon_width=0x7f070094;
public static int notification_main_column_padding_top=0x7f070089;
public static int notification_media_narrow_margin=0x7f07008a;
public static int notification_right_icon_size=0x7f070095;
public static int notification_right_side_padding_top=0x7f070087;
public static int notification_small_icon_background_padding=0x7f070096;
public static int notification_small_icon_size_as_large=0x7f070097;
public static int notification_subtext_size=0x7f070098;
public static int notification_top_pad=0x7f070099;
public static int notification_top_pad_large_text=0x7f07009a;
public static int tooltip_corner_radius=0x7f070059;
public static int tooltip_horizontal_padding=0x7f07005a;
public static int tooltip_margin=0x7f07005b;
public static int tooltip_precise_anchor_extra_offset=0x7f07005c;
public static int tooltip_precise_anchor_threshold=0x7f07005d;
public static int tooltip_vertical_padding=0x7f07005e;
public static int tooltip_y_offset_non_touch=0x7f07005f;
public static int tooltip_y_offset_touch=0x7f070060;
}
public static final class drawable {
public static int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static int abc_action_bar_item_background_material=0x7f020001;
public static int abc_btn_borderless_material=0x7f020002;
public static int abc_btn_check_material=0x7f020003;
public static int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static int abc_btn_colored_material=0x7f020006;
public static int abc_btn_default_mtrl_shape=0x7f020007;
public static int abc_btn_radio_material=0x7f020008;
public static int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static int abc_cab_background_internal_bg=0x7f02000d;
public static int abc_cab_background_top_material=0x7f02000e;
public static int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static int abc_control_background_material=0x7f020010;
public static int abc_dialog_material_background=0x7f020011;
public static int abc_edit_text_material=0x7f020012;
public static int abc_ic_ab_back_material=0x7f020013;
public static int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static int abc_ic_clear_material=0x7f020015;
public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static int abc_ic_go_search_api_material=0x7f020017;
public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static int abc_ic_menu_overflow_material=0x7f02001a;
public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static int abc_ic_search_api_material=0x7f02001e;
public static int abc_ic_star_black_16dp=0x7f02001f;
public static int abc_ic_star_black_36dp=0x7f020020;
public static int abc_ic_star_black_48dp=0x7f020021;
public static int abc_ic_star_half_black_16dp=0x7f020022;
public static int abc_ic_star_half_black_36dp=0x7f020023;
public static int abc_ic_star_half_black_48dp=0x7f020024;
public static int abc_ic_voice_search_api_material=0x7f020025;
public static int abc_item_background_holo_dark=0x7f020026;
public static int abc_item_background_holo_light=0x7f020027;
public static int abc_list_divider_mtrl_alpha=0x7f020028;
public static int abc_list_focused_holo=0x7f020029;
public static int abc_list_longpressed_holo=0x7f02002a;
public static int abc_list_pressed_holo_dark=0x7f02002b;
public static int abc_list_pressed_holo_light=0x7f02002c;
public static int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static int abc_list_selector_disabled_holo_light=0x7f020030;
public static int abc_list_selector_holo_dark=0x7f020031;
public static int abc_list_selector_holo_light=0x7f020032;
public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static int abc_popup_background_mtrl_mult=0x7f020034;
public static int abc_ratingbar_indicator_material=0x7f020035;
public static int abc_ratingbar_material=0x7f020036;
public static int abc_ratingbar_small_material=0x7f020037;
public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static int abc_seekbar_thumb_material=0x7f02003d;
public static int abc_seekbar_tick_mark_material=0x7f02003e;
public static int abc_seekbar_track_material=0x7f02003f;
public static int abc_spinner_mtrl_am_alpha=0x7f020040;
public static int abc_spinner_textfield_background_material=0x7f020041;
public static int abc_switch_thumb_material=0x7f020042;
public static int abc_switch_track_mtrl_alpha=0x7f020043;
public static int abc_tab_indicator_material=0x7f020044;
public static int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static int abc_text_cursor_material=0x7f020046;
public static int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static int abc_textfield_search_material=0x7f020051;
public static int abc_vector_test=0x7f020052;
public static int avd_hide_password=0x7f020053;
public static int avd_hide_password_1=0x7f02006a;
public static int avd_hide_password_2=0x7f02006b;
public static int avd_hide_password_3=0x7f02006c;
public static int avd_show_password=0x7f020054;
public static int avd_show_password_1=0x7f02006d;
public static int avd_show_password_2=0x7f02006e;
public static int avd_show_password_3=0x7f02006f;
public static int design_bottom_navigation_item_background=0x7f020055;
public static int design_fab_background=0x7f020056;
public static int design_ic_visibility=0x7f020057;
public static int design_ic_visibility_off=0x7f020058;
public static int design_password_eye=0x7f020059;
public static int design_snackbar_background=0x7f02005a;
public static int navigation_empty_icon=0x7f02005b;
public static int notification_action_background=0x7f02005c;
public static int notification_bg=0x7f02005d;
public static int notification_bg_low=0x7f02005e;
public static int notification_bg_low_normal=0x7f02005f;
public static int notification_bg_low_pressed=0x7f020060;
public static int notification_bg_normal=0x7f020061;
public static int notification_bg_normal_pressed=0x7f020062;
public static int notification_icon_background=0x7f020063;
public static int notification_template_icon_bg=0x7f020068;
public static int notification_template_icon_low_bg=0x7f020069;
public static int notification_tile_bg=0x7f020064;
public static int notify_panel_notification_icon_bg=0x7f020065;
public static int tooltip_frame_dark=0x7f020066;
public static int tooltip_frame_light=0x7f020067;
}
public static final class id {
public static int ALT=0x7f080032;
public static int CTRL=0x7f080033;
public static int FUNCTION=0x7f080034;
public static int META=0x7f080035;
public static int MyButton=0x7f08008e;
public static int SHIFT=0x7f080036;
public static int SYM=0x7f080037;
public static int action0=0x7f0800a1;
public static int action_bar=0x7f08007c;
public static int action_bar_activity_content=0x7f080001;
public static int action_bar_container=0x7f08007b;
public static int action_bar_root=0x7f080077;
public static int action_bar_spinner=0x7f080002;
public static int action_bar_subtitle=0x7f08005b;
public static int action_bar_title=0x7f08005a;
public static int action_container=0x7f08009e;
public static int action_context_bar=0x7f08007d;
public static int action_divider=0x7f0800a5;
public static int action_image=0x7f08009f;
public static int action_menu_divider=0x7f080003;
public static int action_menu_presenter=0x7f080004;
public static int action_mode_bar=0x7f080079;
public static int action_mode_bar_stub=0x7f080078;
public static int action_mode_close_button=0x7f08005c;
public static int action_settings=0x7f0800b4;
public static int action_text=0x7f0800a0;
public static int actions=0x7f0800ae;
public static int activity_chooser_view_content=0x7f08005d;
public static int add=0x7f080027;
public static int alertTitle=0x7f080070;
public static int all=0x7f080052;
public static int always=0x7f080038;
public static int async=0x7f080056;
public static int auto=0x7f080044;
public static int beginning=0x7f08002f;
public static int blocking=0x7f080057;
public static int bottom=0x7f08003d;
public static int buttonPanel=0x7f080063;
public static int cancel_action=0x7f0800a2;
public static int center=0x7f080045;
public static int center_horizontal=0x7f080046;
public static int center_vertical=0x7f080047;
public static int checkbox=0x7f080073;
public static int chronometer=0x7f0800aa;
public static int clip_horizontal=0x7f08004e;
public static int clip_vertical=0x7f08004f;
public static int collapseActionView=0x7f080039;
public static int container=0x7f080092;
public static int contentPanel=0x7f080066;
public static int coordinator=0x7f080093;
public static int custom=0x7f08006d;
public static int customPanel=0x7f08006c;
public static int decor_content_parent=0x7f08007a;
public static int default_activity_button=0x7f080060;
public static int design_bottom_sheet=0x7f080095;
public static int design_menu_item_action_area=0x7f08009c;
public static int design_menu_item_action_area_stub=0x7f08009b;
public static int design_menu_item_text=0x7f08009a;
public static int design_navigation_view=0x7f080099;
public static int disableHome=0x7f080020;
public static int edit_query=0x7f08007e;
public static int end=0x7f080030;
public static int end_padder=0x7f0800b0;
public static int enterAlways=0x7f08003f;
public static int enterAlwaysCollapsed=0x7f080040;
public static int etWidth1=0x7f08008d;
public static int etWidth2=0x7f08008f;
public static int exitUntilCollapsed=0x7f080041;
public static int expand_activities_button=0x7f08005e;
public static int expanded_menu=0x7f080072;
public static int fab=0x7f08008c;
public static int fill=0x7f080050;
public static int fill_horizontal=0x7f080051;
public static int fill_vertical=0x7f080048;
public static int fixed=0x7f080054;
public static int forever=0x7f080058;
public static int ghost_view=0x7f08000a;
public static int home=0x7f080005;
public static int homeAsUp=0x7f080021;
public static int icon=0x7f080062;
public static int icon_group=0x7f0800af;
public static int ifRoom=0x7f08003a;
public static int image=0x7f08005f;
public static int info=0x7f0800ab;
public static int italic=0x7f080059;
public static int item_touch_helper_previous_elevation=0x7f080000;
public static int largeLabel=0x7f080091;
public static int left=0x7f080049;
public static int line1=0x7f080017;
public static int line3=0x7f080018;
public static int listMode=0x7f08001d;
public static int list_item=0x7f080061;
public static int masked=0x7f0800b3;
public static int media_actions=0x7f0800a4;
public static int message=0x7f0800b1;
public static int middle=0x7f080031;
public static int mini=0x7f080053;
public static int multiply=0x7f080028;
public static int navigation_header_container=0x7f080098;
public static int never=0x7f08003b;
public static int none=0x7f080022;
public static int normal=0x7f08001e;
public static int notification_background=0x7f0800ad;
public static int notification_main_column=0x7f0800a7;
public static int notification_main_column_container=0x7f0800a6;
public static int parallax=0x7f08004c;
public static int parentPanel=0x7f080065;
public static int parent_matrix=0x7f08000b;
public static int pin=0x7f08004d;
public static int progress_circular=0x7f080006;
public static int progress_horizontal=0x7f080007;
public static int radio=0x7f080075;
public static int right=0x7f08004a;
public static int right_icon=0x7f0800ac;
public static int right_side=0x7f0800a8;
public static int save_image_matrix=0x7f08000c;
public static int save_non_transition_alpha=0x7f08000d;
public static int save_scale_type=0x7f08000e;
public static int screen=0x7f080029;
public static int scroll=0x7f080042;
public static int scrollIndicatorDown=0x7f08006b;
public static int scrollIndicatorUp=0x7f080067;
public static int scrollView=0x7f080068;
public static int scrollable=0x7f080055;
public static int search_badge=0x7f080080;
public static int search_bar=0x7f08007f;
public static int search_button=0x7f080081;
public static int search_close_btn=0x7f080086;
public static int search_edit_frame=0x7f080082;
public static int search_go_btn=0x7f080088;
public static int search_mag_icon=0x7f080083;
public static int search_plate=0x7f080084;
public static int search_src_text=0x7f080085;
public static int search_voice_btn=0x7f080089;
public static int select_dialog_listview=0x7f08008a;
public static int shortcut=0x7f080074;
public static int showCustom=0x7f080023;
public static int showHome=0x7f080024;
public static int showTitle=0x7f080025;
public static int smallLabel=0x7f080090;
public static int snackbar_action=0x7f080097;
public static int snackbar_text=0x7f080096;
public static int snap=0x7f080043;
public static int spacer=0x7f080064;
public static int split_action_bar=0x7f080008;
public static int src_atop=0x7f08002a;
public static int src_in=0x7f08002b;
public static int src_over=0x7f08002c;
public static int start=0x7f08004b;
public static int status_bar_latest_event_content=0x7f0800a3;
public static int submenuarrow=0x7f080076;
public static int submit_area=0x7f080087;
public static int tabMode=0x7f08001f;
public static int tag_transition_group=0x7f080019;
public static int text=0x7f08001a;
public static int text2=0x7f08001b;
public static int textSpacerNoButtons=0x7f08006a;
public static int textSpacerNoTitle=0x7f080069;
public static int text_input_password_toggle=0x7f08009d;
public static int textinput_counter=0x7f080014;
public static int textinput_error=0x7f080015;
public static int time=0x7f0800a9;
public static int title=0x7f08001c;
public static int titleDividerNoCustom=0x7f080071;
public static int title_template=0x7f08006f;
public static int toolbar=0x7f08008b;
public static int top=0x7f08003e;
public static int topPanel=0x7f08006e;
public static int touch_outside=0x7f080094;
public static int transition_current_scene=0x7f08000f;
public static int transition_layout_save=0x7f080010;
public static int transition_position=0x7f080011;
public static int transition_scene_layoutid_cache=0x7f080012;
public static int transition_transform=0x7f080013;
public static int uniform=0x7f08002d;
public static int up=0x7f080009;
public static int useLogo=0x7f080026;
public static int view_offset_helper=0x7f080016;
public static int visible=0x7f0800b2;
public static int withText=0x7f08003c;
public static int wrap_content=0x7f08002e;
}
public static final class integer {
public static int abc_config_activityDefaultDur=0x7f0d0000;
public static int abc_config_activityShortDur=0x7f0d0001;
public static int app_bar_elevation_anim_duration=0x7f0d0005;
public static int bottom_sheet_slide_duration=0x7f0d0006;
public static int cancel_button_image_alpha=0x7f0d0002;
public static int config_tooltipAnimTime=0x7f0d0003;
public static int design_snackbar_text_max_lines=0x7f0d0004;
public static int hide_password_duration=0x7f0d0007;
public static int show_password_duration=0x7f0d0008;
public static int status_bar_notification_info_maxnum=0x7f0d0009;
}
public static final class layout {
public static int abc_action_bar_title_item=0x7f040000;
public static int abc_action_bar_up_container=0x7f040001;
public static int abc_action_menu_item_layout=0x7f040002;
public static int abc_action_menu_layout=0x7f040003;
public static int abc_action_mode_bar=0x7f040004;
public static int abc_action_mode_close_item_material=0x7f040005;
public static int abc_activity_chooser_view=0x7f040006;
public static int abc_activity_chooser_view_list_item=0x7f040007;
public static int abc_alert_dialog_button_bar_material=0x7f040008;
public static int abc_alert_dialog_material=0x7f040009;
public static int abc_alert_dialog_title_material=0x7f04000a;
public static int abc_dialog_title_material=0x7f04000b;
public static int abc_expanded_menu_layout=0x7f04000c;
public static int abc_list_menu_item_checkbox=0x7f04000d;
public static int abc_list_menu_item_icon=0x7f04000e;
public static int abc_list_menu_item_layout=0x7f04000f;
public static int abc_list_menu_item_radio=0x7f040010;
public static int abc_popup_menu_header_item_layout=0x7f040011;
public static int abc_popup_menu_item_layout=0x7f040012;
public static int abc_screen_content_include=0x7f040013;
public static int abc_screen_simple=0x7f040014;
public static int abc_screen_simple_overlay_action_mode=0x7f040015;
public static int abc_screen_toolbar=0x7f040016;
public static int abc_search_dropdown_item_icons_2line=0x7f040017;
public static int abc_search_view=0x7f040018;
public static int abc_select_dialog_material=0x7f040019;
public static int activity_main=0x7f04001a;
public static int content_main=0x7f04001b;
public static int design_bottom_navigation_item=0x7f04001c;
public static int design_bottom_sheet_dialog=0x7f04001d;
public static int design_layout_snackbar=0x7f04001e;
public static int design_layout_snackbar_include=0x7f04001f;
public static int design_layout_tab_icon=0x7f040020;
public static int design_layout_tab_text=0x7f040021;
public static int design_menu_item_action_area=0x7f040022;
public static int design_navigation_item=0x7f040023;
public static int design_navigation_item_header=0x7f040024;
public static int design_navigation_item_separator=0x7f040025;
public static int design_navigation_item_subheader=0x7f040026;
public static int design_navigation_menu=0x7f040027;
public static int design_navigation_menu_item=0x7f040028;
public static int design_text_input_password_icon=0x7f040029;
public static int notification_action=0x7f04002a;
public static int notification_action_tombstone=0x7f04002b;
public static int notification_media_action=0x7f04002c;
public static int notification_media_cancel_action=0x7f04002d;
public static int notification_template_big_media=0x7f04002e;
public static int notification_template_big_media_custom=0x7f04002f;
public static int notification_template_big_media_narrow=0x7f040030;
public static int notification_template_big_media_narrow_custom=0x7f040031;
public static int notification_template_custom_big=0x7f040032;
public static int notification_template_icon_group=0x7f040033;
public static int notification_template_lines_media=0x7f040034;
public static int notification_template_media=0x7f040035;
public static int notification_template_media_custom=0x7f040036;
public static int notification_template_part_chronometer=0x7f040037;
public static int notification_template_part_time=0x7f040038;
public static int select_dialog_item_material=0x7f040039;
public static int select_dialog_multichoice_material=0x7f04003a;
public static int select_dialog_singlechoice_material=0x7f04003b;
public static int support_simple_spinner_dropdown_item=0x7f04003c;
public static int tooltip=0x7f04003d;
}
public static final class menu {
public static int menu_main=0x7f0e0000;
}
public static final class mipmap {
public static int ic_launcher=0x7f030000;
public static int ic_launcher_foreground=0x7f030001;
public static int ic_launcher_round=0x7f030002;
}
public static final class string {
public static int abc_action_bar_home_description=0x7f090000;
public static int abc_action_bar_up_description=0x7f090001;
public static int abc_action_menu_overflow_description=0x7f090002;
public static int abc_action_mode_done=0x7f090003;
public static int abc_activity_chooser_view_see_all=0x7f090004;
public static int abc_activitychooserview_choose_application=0x7f090005;
public static int abc_capital_off=0x7f090006;
public static int abc_capital_on=0x7f090007;
public static int abc_font_family_body_1_material=0x7f090012;
public static int abc_font_family_body_2_material=0x7f090013;
public static int abc_font_family_button_material=0x7f090014;
public static int abc_font_family_caption_material=0x7f090015;
public static int abc_font_family_display_1_material=0x7f090016;
public static int abc_font_family_display_2_material=0x7f090017;
public static int abc_font_family_display_3_material=0x7f090018;
public static int abc_font_family_display_4_material=0x7f090019;
public static int abc_font_family_headline_material=0x7f09001a;
public static int abc_font_family_menu_material=0x7f09001b;
public static int abc_font_family_subhead_material=0x7f09001c;
public static int abc_font_family_title_material=0x7f09001d;
public static int abc_search_hint=0x7f090008;
public static int abc_searchview_description_clear=0x7f090009;
public static int abc_searchview_description_query=0x7f09000a;
public static int abc_searchview_description_search=0x7f09000b;
public static int abc_searchview_description_submit=0x7f09000c;
public static int abc_searchview_description_voice=0x7f09000d;
public static int abc_shareactionprovider_share_with=0x7f09000e;
public static int abc_shareactionprovider_share_with_application=0x7f09000f;
public static int abc_toolbar_collapse_description=0x7f090010;
public static int action_settings=0x7f090028;
public static int app_name=0x7f090027;
public static int appbar_scrolling_view_behavior=0x7f09001e;
public static int bottom_sheet_behavior=0x7f09001f;
public static int character_counter_pattern=0x7f090020;
public static int password_toggle_content_description=0x7f090021;
public static int path_password_eye=0x7f090022;
public static int path_password_eye_mask_strike_through=0x7f090023;
public static int path_password_eye_mask_visible=0x7f090024;
public static int path_password_strike_through=0x7f090025;
public static int search_menu_title=0x7f090011;
public static int status_bar_notification_info_overflow=0x7f090026;
}
public static final class style {
public static int AlertDialog_AppCompat=0x7f0a0095;
public static int AlertDialog_AppCompat_Light=0x7f0a0096;
public static int Animation_AppCompat_Dialog=0x7f0a0097;
public static int Animation_AppCompat_DropDownUp=0x7f0a0098;
public static int Animation_AppCompat_Tooltip=0x7f0a0099;
public static int Animation_Design_BottomSheetDialog=0x7f0a015f;
/** Base application theme.
*/
public static int AppTheme=0x7f0a0180;
public static int AppTheme_AppBarOverlay=0x7f0a0182;
public static int AppTheme_NoActionBar=0x7f0a0181;
public static int AppTheme_PopupOverlay=0x7f0a0183;
public static int Base_AlertDialog_AppCompat=0x7f0a009a;
public static int Base_AlertDialog_AppCompat_Light=0x7f0a009b;
public static int Base_Animation_AppCompat_Dialog=0x7f0a009c;
public static int Base_Animation_AppCompat_DropDownUp=0x7f0a009d;
public static int Base_Animation_AppCompat_Tooltip=0x7f0a009e;
public static int Base_DialogWindowTitle_AppCompat=0x7f0a009f;
public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0a00a0;
public static int Base_TextAppearance_AppCompat=0x7f0a0039;
public static int Base_TextAppearance_AppCompat_Body1=0x7f0a003a;
public static int Base_TextAppearance_AppCompat_Body2=0x7f0a003b;
public static int Base_TextAppearance_AppCompat_Button=0x7f0a0027;
public static int Base_TextAppearance_AppCompat_Caption=0x7f0a003c;
public static int Base_TextAppearance_AppCompat_Display1=0x7f0a003d;
public static int Base_TextAppearance_AppCompat_Display2=0x7f0a003e;
public static int Base_TextAppearance_AppCompat_Display3=0x7f0a003f;
public static int Base_TextAppearance_AppCompat_Display4=0x7f0a0040;
public static int Base_TextAppearance_AppCompat_Headline=0x7f0a0041;
public static int Base_TextAppearance_AppCompat_Inverse=0x7f0a000b;
public static int Base_TextAppearance_AppCompat_Large=0x7f0a0042;
public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a000c;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a0043;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a0044;
public static int Base_TextAppearance_AppCompat_Medium=0x7f0a0045;
public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a000d;
public static int Base_TextAppearance_AppCompat_Menu=0x7f0a0046;
public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0a00a1;
public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a0047;
public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a0048;
public static int Base_TextAppearance_AppCompat_Small=0x7f0a0049;
public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a000e;
public static int Base_TextAppearance_AppCompat_Subhead=0x7f0a004a;
public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a000f;
public static int Base_TextAppearance_AppCompat_Title=0x7f0a004b;
public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a0010;
public static int Base_TextAppearance_AppCompat_Tooltip=0x7f0a00a2;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a0086;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a004c;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a004d;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a004e;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a004f;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a0050;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a0051;
public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a0052;
public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a008d;
public static int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a008e;
public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a0087;
public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00a3;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a0053;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a0054;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a0055;
public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a0056;
public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a0057;
public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00a4;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a0058;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0059;
public static int Base_Theme_AppCompat=0x7f0a005a;
public static int Base_Theme_AppCompat_CompactMenu=0x7f0a00a5;
public static int Base_Theme_AppCompat_Dialog=0x7f0a0011;
public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0a0012;
public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a00a6;
public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a0013;
public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a0001;
public static int Base_Theme_AppCompat_Light=0x7f0a005b;
public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a00a7;
public static int Base_Theme_AppCompat_Light_Dialog=0x7f0a0014;
public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a0015;
public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a00a8;
public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0016;
public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0002;
public static int Base_ThemeOverlay_AppCompat=0x7f0a00a9;
public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a00aa;
public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0a00ab;
public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00ac;
public static int Base_ThemeOverlay_AppCompat_Dialog=0x7f0a0017;
public static int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a0018;
public static int Base_ThemeOverlay_AppCompat_Light=0x7f0a00ad;
public static int Base_V11_Theme_AppCompat_Dialog=0x7f0a0019;
public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a001a;
public static int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0a001b;
public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a0023;
public static int Base_V12_Widget_AppCompat_EditText=0x7f0a0024;
public static int Base_V14_Widget_Design_AppBarLayout=0x7f0a0160;
public static int Base_V21_Theme_AppCompat=0x7f0a005c;
public static int Base_V21_Theme_AppCompat_Dialog=0x7f0a005d;
public static int Base_V21_Theme_AppCompat_Light=0x7f0a005e;
public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a005f;
public static int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0a0060;
public static int Base_V21_Widget_Design_AppBarLayout=0x7f0a015c;
public static int Base_V22_Theme_AppCompat=0x7f0a0084;
public static int Base_V22_Theme_AppCompat_Light=0x7f0a0085;
public static int Base_V23_Theme_AppCompat=0x7f0a0088;
public static int Base_V23_Theme_AppCompat_Light=0x7f0a0089;
public static int Base_V26_Theme_AppCompat=0x7f0a0091;
public static int Base_V26_Theme_AppCompat_Light=0x7f0a0092;
public static int Base_V26_Widget_AppCompat_Toolbar=0x7f0a0093;
public static int Base_V26_Widget_Design_AppBarLayout=0x7f0a015e;
public static int Base_V7_Theme_AppCompat=0x7f0a00ae;
public static int Base_V7_Theme_AppCompat_Dialog=0x7f0a00af;
public static int Base_V7_Theme_AppCompat_Light=0x7f0a00b0;
public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00b1;
public static int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0a00b2;
public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00b3;
public static int Base_V7_Widget_AppCompat_EditText=0x7f0a00b4;
public static int Base_V7_Widget_AppCompat_Toolbar=0x7f0a00b5;
public static int Base_Widget_AppCompat_ActionBar=0x7f0a00b6;
public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00b7;
public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00b8;
public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a0061;
public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a0062;
public static int Base_Widget_AppCompat_ActionButton=0x7f0a0063;
public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a0064;
public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a0065;
public static int Base_Widget_AppCompat_ActionMode=0x7f0a00b9;
public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00ba;
public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a0025;
public static int Base_Widget_AppCompat_Button=0x7f0a0066;
public static int Base_Widget_AppCompat_Button_Borderless=0x7f0a0067;
public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a0068;
public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00bb;
public static int Base_Widget_AppCompat_Button_Colored=0x7f0a008a;
public static int Base_Widget_AppCompat_Button_Small=0x7f0a0069;
public static int Base_Widget_AppCompat_ButtonBar=0x7f0a006a;
public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00bc;
public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a006b;
public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a006c;
public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00bd;
public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a0000;
public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00be;
public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a006d;
public static int Base_Widget_AppCompat_EditText=0x7f0a0026;
public static int Base_Widget_AppCompat_ImageButton=0x7f0a006e;
public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00bf;
public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00c0;
public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00c1;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a006f;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0070;
public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0071;
public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a0072;
public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0073;
public static int Base_Widget_AppCompat_ListMenuView=0x7f0a00c2;
public static int Base_Widget_AppCompat_ListPopupWindow=0x7f0a0074;
public static int Base_Widget_AppCompat_ListView=0x7f0a0075;
public static int Base_Widget_AppCompat_ListView_DropDown=0x7f0a0076;
public static int Base_Widget_AppCompat_ListView_Menu=0x7f0a0077;
public static int Base_Widget_AppCompat_PopupMenu=0x7f0a0078;
public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a0079;
public static int Base_Widget_AppCompat_PopupWindow=0x7f0a00c3;
public static int Base_Widget_AppCompat_ProgressBar=0x7f0a001c;
public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a001d;
public static int Base_Widget_AppCompat_RatingBar=0x7f0a007a;
public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0a008b;
public static int Base_Widget_AppCompat_RatingBar_Small=0x7f0a008c;
public static int Base_Widget_AppCompat_SearchView=0x7f0a00c4;
public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00c5;
public static int Base_Widget_AppCompat_SeekBar=0x7f0a007b;
public static int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0a00c6;
public static int Base_Widget_AppCompat_Spinner=0x7f0a007c;
public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a0003;
public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a007d;
public static int Base_Widget_AppCompat_Toolbar=0x7f0a0094;
public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a007e;
public static int Base_Widget_Design_AppBarLayout=0x7f0a015d;
public static int Base_Widget_Design_TabLayout=0x7f0a0161;
public static int Platform_AppCompat=0x7f0a001e;
public static int Platform_AppCompat_Light=0x7f0a001f;
public static int Platform_ThemeOverlay_AppCompat=0x7f0a007f;
public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a0080;
public static int Platform_ThemeOverlay_AppCompat_Light=0x7f0a0081;
public static int Platform_V11_AppCompat=0x7f0a0020;
public static int Platform_V11_AppCompat_Light=0x7f0a0021;
public static int Platform_V14_AppCompat=0x7f0a0028;
public static int Platform_V14_AppCompat_Light=0x7f0a0029;
public static int Platform_V21_AppCompat=0x7f0a0082;
public static int Platform_V21_AppCompat_Light=0x7f0a0083;
public static int Platform_V25_AppCompat=0x7f0a008f;
public static int Platform_V25_AppCompat_Light=0x7f0a0090;
public static int Platform_Widget_AppCompat_Spinner=0x7f0a0022;
public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a002b;
public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a002c;
public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a002d;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a002e;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a002f;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a0030;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a0031;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a0032;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a0033;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a0034;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a0035;
public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a0036;
public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a0037;
public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a0038;
public static int TextAppearance_AppCompat=0x7f0a00c7;
public static int TextAppearance_AppCompat_Body1=0x7f0a00c8;
public static int TextAppearance_AppCompat_Body2=0x7f0a00c9;
public static int TextAppearance_AppCompat_Button=0x7f0a00ca;
public static int TextAppearance_AppCompat_Caption=0x7f0a00cb;
public static int TextAppearance_AppCompat_Display1=0x7f0a00cc;
public static int TextAppearance_AppCompat_Display2=0x7f0a00cd;
public static int TextAppearance_AppCompat_Display3=0x7f0a00ce;
public static int TextAppearance_AppCompat_Display4=0x7f0a00cf;
public static int TextAppearance_AppCompat_Headline=0x7f0a00d0;
public static int TextAppearance_AppCompat_Inverse=0x7f0a00d1;
public static int TextAppearance_AppCompat_Large=0x7f0a00d2;
public static int TextAppearance_AppCompat_Large_Inverse=0x7f0a00d3;
public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00d4;
public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00d5;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00d6;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00d7;
public static int TextAppearance_AppCompat_Medium=0x7f0a00d8;
public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00d9;
public static int TextAppearance_AppCompat_Menu=0x7f0a00da;
public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00db;
public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00dc;
public static int TextAppearance_AppCompat_Small=0x7f0a00dd;
public static int TextAppearance_AppCompat_Small_Inverse=0x7f0a00de;
public static int TextAppearance_AppCompat_Subhead=0x7f0a00df;
public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00e0;
public static int TextAppearance_AppCompat_Title=0x7f0a00e1;
public static int TextAppearance_AppCompat_Title_Inverse=0x7f0a00e2;
public static int TextAppearance_AppCompat_Tooltip=0x7f0a002a;
public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00e3;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00e4;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00e5;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00e6;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00e7;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00e8;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00e9;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00ea;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00eb;
public static int TextAppearance_AppCompat_Widget_Button=0x7f0a00ec;
public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a00ed;
public static int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a00ee;
public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00ef;
public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00f0;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a00f1;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00f2;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00f3;
public static int TextAppearance_AppCompat_Widget_Switch=0x7f0a00f4;
public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00f5;
public static int TextAppearance_Compat_Notification=0x7f0a0179;
public static int TextAppearance_Compat_Notification_Info=0x7f0a017a;
public static int TextAppearance_Compat_Notification_Info_Media=0x7f0a0156;
public static int TextAppearance_Compat_Notification_Line2=0x7f0a017f;
public static int TextAppearance_Compat_Notification_Line2_Media=0x7f0a015a;
public static int TextAppearance_Compat_Notification_Media=0x7f0a0157;
public static int TextAppearance_Compat_Notification_Time=0x7f0a017b;
public static int TextAppearance_Compat_Notification_Time_Media=0x7f0a0158;
public static int TextAppearance_Compat_Notification_Title=0x7f0a017c;
public static int TextAppearance_Compat_Notification_Title_Media=0x7f0a0159;
public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0a0162;
public static int TextAppearance_Design_Counter=0x7f0a0163;
public static int TextAppearance_Design_Counter_Overflow=0x7f0a0164;
public static int TextAppearance_Design_Error=0x7f0a0165;
public static int TextAppearance_Design_Hint=0x7f0a0166;
public static int TextAppearance_Design_Snackbar_Message=0x7f0a0167;
public static int TextAppearance_Design_Tab=0x7f0a0168;
public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00f6;
public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a00f7;
public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a00f8;
public static int Theme_AppCompat=0x7f0a00f9;
public static int Theme_AppCompat_CompactMenu=0x7f0a00fa;
public static int Theme_AppCompat_DayNight=0x7f0a0004;
public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f0a0005;
public static int Theme_AppCompat_DayNight_Dialog=0x7f0a0006;
public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0a0007;
public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0a0008;
public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0a0009;
public static int Theme_AppCompat_DayNight_NoActionBar=0x7f0a000a;
public static int Theme_AppCompat_Dialog=0x7f0a00fb;
public static int Theme_AppCompat_Dialog_Alert=0x7f0a00fc;
public static int Theme_AppCompat_Dialog_MinWidth=0x7f0a00fd;
public static int Theme_AppCompat_DialogWhenLarge=0x7f0a00fe;
public static int Theme_AppCompat_Light=0x7f0a00ff;
public static int Theme_AppCompat_Light_DarkActionBar=0x7f0a0100;
public static int Theme_AppCompat_Light_Dialog=0x7f0a0101;
public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0a0102;
public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0103;
public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0104;
public static int Theme_AppCompat_Light_NoActionBar=0x7f0a0105;
public static int Theme_AppCompat_NoActionBar=0x7f0a0106;
public static int Theme_Design=0x7f0a0169;
public static int Theme_Design_BottomSheetDialog=0x7f0a016a;
public static int Theme_Design_Light=0x7f0a016b;
public static int Theme_Design_Light_BottomSheetDialog=0x7f0a016c;
public static int Theme_Design_Light_NoActionBar=0x7f0a016d;
public static int Theme_Design_NoActionBar=0x7f0a016e;
public static int ThemeOverlay_AppCompat=0x7f0a0107;
public static int ThemeOverlay_AppCompat_ActionBar=0x7f0a0108;
public static int ThemeOverlay_AppCompat_Dark=0x7f0a0109;
public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a010a;
public static int ThemeOverlay_AppCompat_Dialog=0x7f0a010b;
public static int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a010c;
public static int ThemeOverlay_AppCompat_Light=0x7f0a010d;
public static int Widget_AppCompat_ActionBar=0x7f0a010e;
public static int Widget_AppCompat_ActionBar_Solid=0x7f0a010f;
public static int Widget_AppCompat_ActionBar_TabBar=0x7f0a0110;
public static int Widget_AppCompat_ActionBar_TabText=0x7f0a0111;
public static int Widget_AppCompat_ActionBar_TabView=0x7f0a0112;
public static int Widget_AppCompat_ActionButton=0x7f0a0113;
public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0a0114;
public static int Widget_AppCompat_ActionButton_Overflow=0x7f0a0115;
public static int Widget_AppCompat_ActionMode=0x7f0a0116;
public static int Widget_AppCompat_ActivityChooserView=0x7f0a0117;
public static int Widget_AppCompat_AutoCompleteTextView=0x7f0a0118;
public static int Widget_AppCompat_Button=0x7f0a0119;
public static int Widget_AppCompat_Button_Borderless=0x7f0a011a;
public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0a011b;
public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a011c;
public static int Widget_AppCompat_Button_Colored=0x7f0a011d;
public static int Widget_AppCompat_Button_Small=0x7f0a011e;
public static int Widget_AppCompat_ButtonBar=0x7f0a011f;
public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0120;
public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0121;
public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0122;
public static int Widget_AppCompat_CompoundButton_Switch=0x7f0a0123;
public static int Widget_AppCompat_DrawerArrowToggle=0x7f0a0124;
public static int Widget_AppCompat_DropDownItem_Spinner=0x7f0a0125;
public static int Widget_AppCompat_EditText=0x7f0a0126;
public static int Widget_AppCompat_ImageButton=0x7f0a0127;
public static int Widget_AppCompat_Light_ActionBar=0x7f0a0128;
public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a0129;
public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a012a;
public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a012b;
public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a012c;
public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a012d;
public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a012e;
public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a012f;
public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0130;
public static int Widget_AppCompat_Light_ActionButton=0x7f0a0131;
public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a0132;
public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a0133;
public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a0134;
public static int Widget_AppCompat_Light_ActivityChooserView=0x7f0a0135;
public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a0136;
public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a0137;
public static int Widget_AppCompat_Light_ListPopupWindow=0x7f0a0138;
public static int Widget_AppCompat_Light_ListView_DropDown=0x7f0a0139;
public static int Widget_AppCompat_Light_PopupMenu=0x7f0a013a;
public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a013b;
public static int Widget_AppCompat_Light_SearchView=0x7f0a013c;
public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a013d;
public static int Widget_AppCompat_ListMenuView=0x7f0a013e;
public static int Widget_AppCompat_ListPopupWindow=0x7f0a013f;
public static int Widget_AppCompat_ListView=0x7f0a0140;
public static int Widget_AppCompat_ListView_DropDown=0x7f0a0141;
public static int Widget_AppCompat_ListView_Menu=0x7f0a0142;
public static int Widget_AppCompat_PopupMenu=0x7f0a0143;
public static int Widget_AppCompat_PopupMenu_Overflow=0x7f0a0144;
public static int Widget_AppCompat_PopupWindow=0x7f0a0145;
public static int Widget_AppCompat_ProgressBar=0x7f0a0146;
public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0147;
public static int Widget_AppCompat_RatingBar=0x7f0a0148;
public static int Widget_AppCompat_RatingBar_Indicator=0x7f0a0149;
public static int Widget_AppCompat_RatingBar_Small=0x7f0a014a;
public static int Widget_AppCompat_SearchView=0x7f0a014b;
public static int Widget_AppCompat_SearchView_ActionBar=0x7f0a014c;
public static int Widget_AppCompat_SeekBar=0x7f0a014d;
public static int Widget_AppCompat_SeekBar_Discrete=0x7f0a014e;
public static int Widget_AppCompat_Spinner=0x7f0a014f;
public static int Widget_AppCompat_Spinner_DropDown=0x7f0a0150;
public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a0151;
public static int Widget_AppCompat_Spinner_Underlined=0x7f0a0152;
public static int Widget_AppCompat_TextView_SpinnerItem=0x7f0a0153;
public static int Widget_AppCompat_Toolbar=0x7f0a0154;
public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0155;
public static int Widget_Compat_NotificationActionContainer=0x7f0a017d;
public static int Widget_Compat_NotificationActionText=0x7f0a017e;
public static int Widget_Design_AppBarLayout=0x7f0a016f;
public static int Widget_Design_BottomNavigationView=0x7f0a0170;
public static int Widget_Design_BottomSheet_Modal=0x7f0a0171;
public static int Widget_Design_CollapsingToolbar=0x7f0a0172;
public static int Widget_Design_CoordinatorLayout=0x7f0a0173;
public static int Widget_Design_FloatingActionButton=0x7f0a0174;
public static int Widget_Design_NavigationView=0x7f0a0175;
public static int Widget_Design_ScrimInsetsFrameLayout=0x7f0a0176;
public static int Widget_Design_Snackbar=0x7f0a0177;
public static int Widget_Design_TabLayout=0x7f0a015b;
public static int Widget_Design_TextInputLayout=0x7f0a0178;
}
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 android.support.v7.appcompat:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit android.support.v7.appcompat:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked android.support.v7.appcompat:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd android.support.v7.appcompat:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions android.support.v7.appcompat:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft android.support.v7.appcompat:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight android.support.v7.appcompat:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart android.support.v7.appcompat:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation android.support.v7.appcompat:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout android.support.v7.appcompat:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions android.support.v7.appcompat:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider android.support.v7.appcompat:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation android.support.v7.appcompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height android.support.v7.appcompat:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll android.support.v7.appcompat:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator android.support.v7.appcompat:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout android.support.v7.appcompat:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon android.support.v7.appcompat:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle android.support.v7.appcompat:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding android.support.v7.appcompat:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo android.support.v7.appcompat:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode android.support.v7.appcompat:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme android.support.v7.appcompat:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding android.support.v7.appcompat:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle android.support.v7.appcompat:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle android.support.v7.appcompat:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle android.support.v7.appcompat:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title android.support.v7.appcompat:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle android.support.v7.appcompat: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 = {
0x7f01000a, 0x7f01000c, 0x7f01000d, 0x7f01000e,
0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012,
0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016,
0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a,
0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e,
0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022,
0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026,
0x7f01006c
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:background
*/
public static int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:backgroundSplit
*/
public static int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:backgroundStacked
*/
public static int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetEnd
*/
public static int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetEndWithActions
*/
public static int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetLeft
*/
public static int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetRight
*/
public static int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetStart
*/
public static int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetStartWithNavigation
*/
public static int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:customNavigationLayout
*/
public static int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:displayOptions
*/
public static int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:divider
*/
public static int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:elevation
*/
public static int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:height
*/
public static int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:hideOnContentScroll
*/
public static int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:homeAsUpIndicator
*/
public static int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:homeLayout
*/
public static int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:icon
*/
public static int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:indeterminateProgressStyle
*/
public static int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:itemPadding
*/
public static int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:logo
*/
public static int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:navigationMode
*/
public static int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:popupTheme
*/
public static int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:progressBarPadding
*/
public static int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:progressBarStyle
*/
public static int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:subtitle
*/
public static int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:subtitleTextStyle
*/
public static int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:title
*/
public static int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleTextStyle
*/
public static 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 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 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 android.support.v7.appcompat:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit android.support.v7.appcompat:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout android.support.v7.appcompat:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height android.support.v7.appcompat:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle android.support.v7.appcompat:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle android.support.v7.appcompat: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 = {
0x7f01000a, 0x7f010010, 0x7f010011, 0x7f010015,
0x7f010017, 0x7f010027
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:background
*/
public static int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:backgroundSplit
*/
public static int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:closeItemLayout
*/
public static int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:height
*/
public static int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:subtitleTextStyle
*/
public static int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleTextStyle
*/
public static 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 android.support.v7.appcompat:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount android.support.v7.appcompat:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010028, 0x7f010029
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:expandActivityOverflowButtonDrawable
*/
public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:initialActivityCount
*/
public static 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 android.support.v7.appcompat:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout android.support.v7.appcompat:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout android.support.v7.appcompat:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout android.support.v7.appcompat:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle android.support.v7.appcompat:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout android.support.v7.appcompat: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, 0x7f01002a, 0x7f01002b, 0x7f01002c,
0x7f01002d, 0x7f01002e, 0x7f01002f
};
/**
<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 int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonPanelSideLayout
*/
public static int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listItemLayout
*/
public static int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listLayout
*/
public static int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:multiChoiceItemLayout
*/
public static int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:showTitle
*/
public static int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:singleChoiceItemLayout
*/
public static 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 android.support.v7.appcompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded android.support.v7.appcompat: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, 0x7f010025,
0x7f0100ff
};
/**
<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 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 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 int AppBarLayout_android_touchscreenBlocksFocus = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:elevation
*/
public static int AppBarLayout_elevation = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:expanded
*/
public static 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 android.support.v7.appcompat:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible android.support.v7.appcompat:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010100, 0x7f010101
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:state_collapsed
*/
public static int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:state_collapsible
*/
public static 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 android.support.v7.appcompat:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator android.support.v7.appcompat:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f010102, 0x7f010103
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout_scrollFlags
*/
public static int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout_scrollInterpolator
*/
public static 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 android.support.v7.appcompat:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint android.support.v7.appcompat:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode android.support.v7.appcompat: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, 0x7f010030, 0x7f010031, 0x7f010032
};
/**
<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 int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:srcCompat
*/
public static int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tint
*/
public static int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tintMode
*/
public static 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 android.support.v7.appcompat:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint android.support.v7.appcompat:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode android.support.v7.appcompat: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, 0x7f010033, 0x7f010034, 0x7f010035
};
/**
<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 int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tickMark
*/
public static int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tickMarkTint
*/
public static int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tickMarkTintMode
*/
public static 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 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 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 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 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 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 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 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 android.support.v7.appcompat:autoSizeMaxTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize android.support.v7.appcompat:autoSizeMinTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes android.support.v7.appcompat:autoSizePresetSizes}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity android.support.v7.appcompat:autoSizeStepGranularity}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeTextType android.support.v7.appcompat:autoSizeTextType}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_fontFamily android.support.v7.appcompat:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps android.support.v7.appcompat: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, 0x7f010036, 0x7f010037, 0x7f010038,
0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c
};
/**
<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 int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:autoSizeMaxTextSize
*/
public static int AppCompatTextView_autoSizeMaxTextSize = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:autoSizeMinTextSize
*/
public static int AppCompatTextView_autoSizeMinTextSize = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:autoSizePresetSizes
*/
public static int AppCompatTextView_autoSizePresetSizes = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:autoSizeStepGranularity
*/
public static int AppCompatTextView_autoSizeStepGranularity = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:autoSizeTextType
*/
public static int AppCompatTextView_autoSizeTextType = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fontFamily
*/
public static int AppCompatTextView_fontFamily = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textAllCaps
*/
public static 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 android.support.v7.appcompat:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground android.support.v7.appcompat:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme android.support.v7.appcompat:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize android.support.v7.appcompat:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle android.support.v7.appcompat:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle android.support.v7.appcompat:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle android.support.v7.appcompat:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle android.support.v7.appcompat:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle android.support.v7.appcompat:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme android.support.v7.appcompat:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme android.support.v7.appcompat:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle android.support.v7.appcompat:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle android.support.v7.appcompat:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance android.support.v7.appcompat:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor android.support.v7.appcompat:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground android.support.v7.appcompat:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.v7.appcompat:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable android.support.v7.appcompat:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable android.support.v7.appcompat:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable android.support.v7.appcompat:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable android.support.v7.appcompat:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable android.support.v7.appcompat:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle android.support.v7.appcompat:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.v7.appcompat:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable android.support.v7.appcompat:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground android.support.v7.appcompat:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle android.support.v7.appcompat:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.v7.appcompat:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle android.support.v7.appcompat:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle android.support.v7.appcompat:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle android.support.v7.appcompat:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.v7.appcompat:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons android.support.v7.appcompat:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle android.support.v7.appcompat:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme android.support.v7.appcompat: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 android.support.v7.appcompat:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle android.support.v7.appcompat:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle android.support.v7.appcompat:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.v7.appcompat:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.v7.appcompat:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.v7.appcompat:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle android.support.v7.appcompat:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle android.support.v7.appcompat:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall android.support.v7.appcompat:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle android.support.v7.appcompat:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle android.support.v7.appcompat:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent android.support.v7.appcompat:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating android.support.v7.appcompat:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal android.support.v7.appcompat:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated android.support.v7.appcompat:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight android.support.v7.appcompat:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal android.support.v7.appcompat:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorError android.support.v7.appcompat:colorError}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary android.support.v7.appcompat:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark android.support.v7.appcompat:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal android.support.v7.appcompat:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground android.support.v7.appcompat:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding android.support.v7.appcompat:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme android.support.v7.appcompat:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal android.support.v7.appcompat:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical android.support.v7.appcompat:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle android.support.v7.appcompat:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.v7.appcompat:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground android.support.v7.appcompat:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor android.support.v7.appcompat:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle android.support.v7.appcompat:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator android.support.v7.appcompat:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle android.support.v7.appcompat:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.v7.appcompat:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog android.support.v7.appcompat:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle android.support.v7.appcompat:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle android.support.v7.appcompat:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight android.support.v7.appcompat:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.v7.appcompat:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.v7.appcompat:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.v7.appcompat:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.v7.appcompat:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground android.support.v7.appcompat:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme android.support.v7.appcompat:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth android.support.v7.appcompat:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle android.support.v7.appcompat:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle android.support.v7.appcompat:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle android.support.v7.appcompat:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle android.support.v7.appcompat:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator android.support.v7.appcompat:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall android.support.v7.appcompat:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle android.support.v7.appcompat:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle android.support.v7.appcompat:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground android.support.v7.appcompat:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.v7.appcompat:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.v7.appcompat:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle android.support.v7.appcompat:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle android.support.v7.appcompat:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.v7.appcompat:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem android.support.v7.appcompat:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary android.support.v7.appcompat:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall android.support.v7.appcompat:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader android.support.v7.appcompat:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.v7.appcompat:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.v7.appcompat:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.v7.appcompat:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem android.support.v7.appcompat:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl android.support.v7.appcompat:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.v7.appcompat:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle android.support.v7.appcompat:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor android.support.v7.appcompat:tooltipForegroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground android.support.v7.appcompat:tooltipFrameBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar android.support.v7.appcompat:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay android.support.v7.appcompat:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay android.support.v7.appcompat:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor android.support.v7.appcompat:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor android.support.v7.appcompat:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor android.support.v7.appcompat:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor android.support.v7.appcompat:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor android.support.v7.appcompat:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor android.support.v7.appcompat:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle android.support.v7.appcompat: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, 0x7f01003d, 0x7f01003e,
0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042,
0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046,
0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a,
0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e,
0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052,
0x7f010053, 0x7f010054, 0x7f010055, 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
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarDivider
*/
public static int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarItemBackground
*/
public static int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarPopupTheme
*/
public static int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarSize
*/
public static int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarSplitStyle
*/
public static int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarStyle
*/
public static int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarTabBarStyle
*/
public static int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarTabStyle
*/
public static int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarTabTextStyle
*/
public static int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarTheme
*/
public static int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionBarWidgetTheme
*/
public static int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionButtonStyle
*/
public static int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionDropDownStyle
*/
public static int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionMenuTextAppearance
*/
public static int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionMenuTextColor
*/
public static int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeBackground
*/
public static int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeCloseButtonStyle
*/
public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeCloseDrawable
*/
public static int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeCopyDrawable
*/
public static int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeCutDrawable
*/
public static int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeFindDrawable
*/
public static int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModePasteDrawable
*/
public static int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModePopupWindowStyle
*/
public static int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeSelectAllDrawable
*/
public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeShareDrawable
*/
public static int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeSplitBackground
*/
public static int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeStyle
*/
public static int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionModeWebSearchDrawable
*/
public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionOverflowButtonStyle
*/
public static int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionOverflowMenuStyle
*/
public static int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:activityChooserViewStyle
*/
public static int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:alertDialogButtonGroupStyle
*/
public static int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:alertDialogCenterButtons
*/
public static int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:alertDialogStyle
*/
public static int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:alertDialogTheme
*/
public static 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 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 int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:autoCompleteTextViewStyle
*/
public static int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:borderlessButtonStyle
*/
public static int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonBarButtonStyle
*/
public static int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonBarNegativeButtonStyle
*/
public static int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonBarNeutralButtonStyle
*/
public static int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonBarPositiveButtonStyle
*/
public static int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonBarStyle
*/
public static int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonStyle
*/
public static int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonStyleSmall
*/
public static int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:checkboxStyle
*/
public static int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:checkedTextViewStyle
*/
public static int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:colorAccent
*/
public static int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:colorBackgroundFloating
*/
public static int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:colorButtonNormal
*/
public static int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:colorControlActivated
*/
public static int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:colorControlHighlight
*/
public static int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:colorControlNormal
*/
public static int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:colorError
*/
public static int AppCompatTheme_colorError = 118;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:colorPrimary
*/
public static int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:colorPrimaryDark
*/
public static int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:colorSwitchThumbNormal
*/
public static int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:controlBackground
*/
public static int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:dialogPreferredPadding
*/
public static int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:dialogTheme
*/
public static int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:dividerHorizontal
*/
public static int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:dividerVertical
*/
public static int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:dropDownListViewStyle
*/
public static int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:dropdownListPreferredItemHeight
*/
public static int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:editTextBackground
*/
public static int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:editTextColor
*/
public static int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:editTextStyle
*/
public static int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:homeAsUpIndicator
*/
public static int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:imageButtonStyle
*/
public static int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listChoiceBackgroundIndicator
*/
public static int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listDividerAlertDialog
*/
public static int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listMenuViewStyle
*/
public static int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listPopupWindowStyle
*/
public static int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listPreferredItemHeight
*/
public static int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listPreferredItemHeightLarge
*/
public static int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listPreferredItemHeightSmall
*/
public static int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listPreferredItemPaddingLeft
*/
public static int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:listPreferredItemPaddingRight
*/
public static int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:panelBackground
*/
public static int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:panelMenuListTheme
*/
public static int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:panelMenuListWidth
*/
public static int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:popupMenuStyle
*/
public static int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:popupWindowStyle
*/
public static int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:radioButtonStyle
*/
public static int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:ratingBarStyle
*/
public static int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:ratingBarStyleIndicator
*/
public static int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:ratingBarStyleSmall
*/
public static int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:searchViewStyle
*/
public static int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:seekBarStyle
*/
public static int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:selectableItemBackground
*/
public static int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:selectableItemBackgroundBorderless
*/
public static int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:spinnerDropDownItemStyle
*/
public static int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:spinnerStyle
*/
public static int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:switchStyle
*/
public static int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textAppearanceLargePopupMenu
*/
public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textAppearanceListItem
*/
public static int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textAppearanceListItemSecondary
*/
public static int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textAppearanceListItemSmall
*/
public static int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textAppearancePopupMenuHeader
*/
public static int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textAppearanceSearchResultSubtitle
*/
public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textAppearanceSearchResultTitle
*/
public static int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textAppearanceSmallPopupMenu
*/
public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textColorAlertDialogListItem
*/
public static int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textColorSearchUrl
*/
public static int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:toolbarNavigationButtonStyle
*/
public static int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:toolbarStyle
*/
public static int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tooltipForegroundColor
*/
public static int AppCompatTheme_tooltipForegroundColor = 117;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tooltipFrameBackground
*/
public static int AppCompatTheme_tooltipFrameBackground = 116;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:windowActionBar
*/
public static int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:windowActionBarOverlay
*/
public static int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:windowActionModeOverlay
*/
public static int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:windowFixedHeightMajor
*/
public static int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:windowFixedHeightMinor
*/
public static int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:windowFixedWidthMajor
*/
public static int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:windowFixedWidthMinor
*/
public static int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:windowMinWidthMajor
*/
public static int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:windowMinWidthMinor
*/
public static int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:windowNoTitle
*/
public static 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 android.support.v7.appcompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground android.support.v7.appcompat:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint android.support.v7.appcompat:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor android.support.v7.appcompat:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu android.support.v7.appcompat: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 = {
0x7f010025, 0x7f01012a, 0x7f01012b, 0x7f01012c,
0x7f01012d
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:elevation
*/
public static int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:itemBackground
*/
public static int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:itemIconTint
*/
public static int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:itemTextColor
*/
public static int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:menu
*/
public static 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 android.support.v7.appcompat:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight android.support.v7.appcompat:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed android.support.v7.appcompat: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 = {
0x7f010104, 0x7f010105, 0x7f010106
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:behavior_hideable
*/
public static int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:behavior_peekHeight
*/
public static int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:behavior_skipCollapsed
*/
public static 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 android.support.v7.appcompat:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100b2
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:allowStacking
*/
public static int ButtonBarLayout_allowStacking = 0;
/** 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 android.support.v7.appcompat:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.v7.appcompat:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim android.support.v7.appcompat:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.v7.appcompat:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.v7.appcompat:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.v7.appcompat:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.v7.appcompat:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.v7.appcompat:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.v7.appcompat:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.v7.appcompat:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration android.support.v7.appcompat:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger android.support.v7.appcompat:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim android.support.v7.appcompat:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title android.support.v7.appcompat:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled android.support.v7.appcompat:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId android.support.v7.appcompat: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 = {
0x7f01000c, 0x7f010107, 0x7f010108, 0x7f010109,
0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111,
0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:collapsedTitleGravity
*/
public static int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:collapsedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentScrim
*/
public static int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:expandedTitleGravity
*/
public static int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:expandedTitleMargin
*/
public static int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:expandedTitleMarginBottom
*/
public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:expandedTitleMarginEnd
*/
public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:expandedTitleMarginStart
*/
public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:expandedTitleMarginTop
*/
public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:expandedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:scrimAnimationDuration
*/
public static int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:scrimVisibleHeightTrigger
*/
public static int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:statusBarScrim
*/
public static int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:title
*/
public static int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleEnabled
*/
public static int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:toolbarId
*/
public static 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 android.support.v7.appcompat:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier android.support.v7.appcompat:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f010116, 0x7f010117
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout_collapseMode
*/
public static int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout_collapseParallaxMultiplier
*/
public static 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 android.support.v7.appcompat: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, 0x7f0100b3
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:alpha
*/
public static 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 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 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 android.support.v7.appcompat:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode android.support.v7.appcompat:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100b4, 0x7f0100b5
};
/**
<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 int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonTint
*/
public static int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonTintMode
*/
public static 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 android.support.v7.appcompat:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground android.support.v7.appcompat:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010118, 0x7f010119
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:keylines
*/
public static int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:statusBarBackground
*/
public static 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 android.support.v7.appcompat:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity android.support.v7.appcompat:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior android.support.v7.appcompat:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges android.support.v7.appcompat:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge android.support.v7.appcompat:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline android.support.v7.appcompat: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, 0x7f01011a, 0x7f01011b, 0x7f01011c,
0x7f01011d, 0x7f01011e, 0x7f01011f
};
/**
<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 int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout_anchor
*/
public static int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout_anchorGravity
*/
public static int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout_behavior
*/
public static int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout_dodgeInsetEdges
*/
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout_insetEdge
*/
public static int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout_keyline
*/
public static 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 android.support.v7.appcompat:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle android.support.v7.appcompat:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError android.support.v7.appcompat:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010120, 0x7f010121, 0x7f010122
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:bottomSheetDialogTheme
*/
public static int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:bottomSheetStyle
*/
public static int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textColorError
*/
public static 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 android.support.v7.appcompat:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength android.support.v7.appcompat:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength android.support.v7.appcompat:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color android.support.v7.appcompat:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize android.support.v7.appcompat:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars android.support.v7.appcompat:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars android.support.v7.appcompat:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness android.support.v7.appcompat: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 = {
0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9,
0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:arrowHeadLength
*/
public static int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:arrowShaftLength
*/
public static int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:barLength
*/
public static int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:color
*/
public static int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:drawableSize
*/
public static int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:gapBetweenBars
*/
public static int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:spinBars
*/
public static int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:thickness
*/
public static 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 android.support.v7.appcompat:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode android.support.v7.appcompat:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth android.support.v7.appcompat:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation android.support.v7.appcompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize android.support.v7.appcompat:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ android.support.v7.appcompat:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor android.support.v7.appcompat:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding android.support.v7.appcompat: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 = {
0x7f010025, 0x7f0100fd, 0x7f0100fe, 0x7f010123,
0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:backgroundTint
*/
public static int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:backgroundTintMode
*/
public static int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:borderWidth
*/
public static int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:elevation
*/
public static int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fabSize
*/
public static int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:pressedTranslationZ
*/
public static int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:rippleColor
*/
public static int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:useCompatPadding
*/
public static 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 android.support.v7.appcompat:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f010128
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:behavior_autoHide
*/
public static 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 android.support.v7.appcompat:fontProviderAuthority}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderCerts android.support.v7.appcompat:fontProviderCerts}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchStrategy android.support.v7.appcompat:fontProviderFetchStrategy}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchTimeout android.support.v7.appcompat:fontProviderFetchTimeout}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderPackage android.support.v7.appcompat:fontProviderPackage}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderQuery android.support.v7.appcompat: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 = {
0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154,
0x7f010155, 0x7f010156
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fontProviderAuthority
*/
public static int FontFamily_fontProviderAuthority = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fontProviderCerts
*/
public static int FontFamily_fontProviderCerts = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fontProviderFetchStrategy
*/
public static int FontFamily_fontProviderFetchStrategy = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fontProviderFetchTimeout
*/
public static int FontFamily_fontProviderFetchTimeout = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fontProviderPackage
*/
public static int FontFamily_fontProviderPackage = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fontProviderQuery
*/
public static 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 android.support.v7.appcompat:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontStyle android.support.v7.appcompat:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontWeight android.support.v7.appcompat: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, 0x7f010157,
0x7f010158, 0x7f010159
};
/**
<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 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 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 int FontFamilyFont_android_fontWeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:font
*/
public static int FontFamilyFont_font = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fontStyle
*/
public static int FontFamilyFont_fontStyle = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fontWeight
*/
public static 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 android.support.v7.appcompat: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, 0x7f010129
};
/**
<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 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 int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:foregroundInsidePadding
*/
public static 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 android.support.v7.appcompat:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding android.support.v7.appcompat:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild android.support.v7.appcompat:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers android.support.v7.appcompat: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, 0x7f010014, 0x7f0100be, 0x7f0100bf,
0x7f0100c0
};
/**
<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 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 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 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 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 int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:divider
*/
public static int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:dividerPadding
*/
public static int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:measureWithLargestChild
*/
public static int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:showDividers
*/
public static 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 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 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 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 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 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 int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** 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 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 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 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 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 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 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 android.support.v7.appcompat:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass android.support.v7.appcompat:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass android.support.v7.appcompat:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_alphabeticModifiers android.support.v7.appcompat: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 android.support.v7.appcompat:contentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTint android.support.v7.appcompat:iconTint}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTintMode android.support.v7.appcompat:iconTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_numericModifiers android.support.v7.appcompat:numericModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction android.support.v7.appcompat:showAsAction}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_tooltipText android.support.v7.appcompat: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, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3,
0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7,
0x7f0100c8, 0x7f0100c9, 0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionLayout
*/
public static int MenuItem_actionLayout = 16;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionProviderClass
*/
public static int MenuItem_actionProviderClass = 18;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:actionViewClass
*/
public static int MenuItem_actionViewClass = 17;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:alphabeticModifiers
*/
public static 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 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 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 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 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 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 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 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 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 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 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 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 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 int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentDescription
*/
public static int MenuItem_contentDescription = 19;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:iconTint
*/
public static int MenuItem_iconTint = 21;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:iconTintMode
*/
public static int MenuItem_iconTintMode = 22;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:numericModifiers
*/
public static int MenuItem_numericModifiers = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:showAsAction
*/
public static int MenuItem_showAsAction = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tooltipText
*/
public static 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 android.support.v7.appcompat:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow android.support.v7.appcompat: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, 0x7f0100cb,
0x7f0100cc
};
/**
<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 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 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 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 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 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 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 int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:preserveIconSpacing
*/
public static int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:subMenuArrow
*/
public static 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 android.support.v7.appcompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout android.support.v7.appcompat:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground android.support.v7.appcompat:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint android.support.v7.appcompat:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance android.support.v7.appcompat:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor android.support.v7.appcompat:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu android.support.v7.appcompat: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, 0x7f010025,
0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d,
0x7f01012e, 0x7f01012f
};
/**
<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 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 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 int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:elevation
*/
public static int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:headerLayout
*/
public static int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:itemBackground
*/
public static int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:itemIconTint
*/
public static int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:itemTextAppearance
*/
public static int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:itemTextColor
*/
public static int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:menu
*/
public static 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 android.support.v7.appcompat: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, 0x7f0100cd
};
/**
<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 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 int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:overlapAnchor
*/
public static 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 android.support.v7.appcompat:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:state_above_anchor
*/
public static 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 android.support.v7.appcompat:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle android.support.v7.appcompat:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100cf, 0x7f0100d0
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:paddingBottomNoButtons
*/
public static int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:paddingTopNoTitle
*/
public static 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 android.support.v7.appcompat:fastScrollEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable android.support.v7.appcompat:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable android.support.v7.appcompat:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable android.support.v7.appcompat:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable android.support.v7.appcompat:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager android.support.v7.appcompat:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout android.support.v7.appcompat:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount android.support.v7.appcompat:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd android.support.v7.appcompat: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 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 int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fastScrollEnabled
*/
public static int RecyclerView_fastScrollEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fastScrollHorizontalThumbDrawable
*/
public static int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fastScrollHorizontalTrackDrawable
*/
public static int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fastScrollVerticalThumbDrawable
*/
public static int RecyclerView_fastScrollVerticalThumbDrawable = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fastScrollVerticalTrackDrawable
*/
public static int RecyclerView_fastScrollVerticalTrackDrawable = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layoutManager
*/
public static int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:reverseLayout
*/
public static int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:spanCount
*/
public static int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:stackFromEnd
*/
public static 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 android.support.v7.appcompat:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010130
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:insetForeground
*/
public static 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 android.support.v7.appcompat:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f010131
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:behavior_overlapTop
*/
public static 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 android.support.v7.appcompat:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon android.support.v7.appcompat:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint android.support.v7.appcompat:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon android.support.v7.appcompat:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault android.support.v7.appcompat:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout android.support.v7.appcompat:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground android.support.v7.appcompat:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint android.support.v7.appcompat:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon android.support.v7.appcompat:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon android.support.v7.appcompat:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground android.support.v7.appcompat:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout android.support.v7.appcompat:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon android.support.v7.appcompat: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,
0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4,
0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd
};
/**
<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 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 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 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 int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:closeIcon
*/
public static int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:commitIcon
*/
public static int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:defaultQueryHint
*/
public static int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:goIcon
*/
public static int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:iconifiedByDefault
*/
public static int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:layout
*/
public static int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:queryBackground
*/
public static int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:queryHint
*/
public static int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:searchHintIcon
*/
public static int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:searchIcon
*/
public static int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:submitBackground
*/
public static int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:suggestionRowLayout
*/
public static int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:voiceIcon
*/
public static 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 android.support.v7.appcompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth android.support.v7.appcompat:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010025, 0x7f010132
};
/**
<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 int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:elevation
*/
public static int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:maxActionInlineWidth
*/
public static 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 android.support.v7.appcompat: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,
0x7f010026
};
/**
<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 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 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 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 int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:popupTheme
*/
public static 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 android.support.v7.appcompat:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack android.support.v7.appcompat:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth android.support.v7.appcompat:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding android.support.v7.appcompat:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance android.support.v7.appcompat:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding android.support.v7.appcompat:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint android.support.v7.appcompat:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode android.support.v7.appcompat:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track android.support.v7.appcompat:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint android.support.v7.appcompat:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode android.support.v7.appcompat: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, 0x7f0100de,
0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2,
0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6,
0x7f0100e7, 0x7f0100e8
};
/**
<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 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 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 int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:showText
*/
public static int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:splitTrack
*/
public static int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:switchMinWidth
*/
public static int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:switchPadding
*/
public static int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:switchTextAppearance
*/
public static int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:thumbTextPadding
*/
public static int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:thumbTint
*/
public static int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:thumbTintMode
*/
public static int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:track
*/
public static int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:trackTint
*/
public static int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:trackTintMode
*/
public static 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 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 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 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 android.support.v7.appcompat:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart android.support.v7.appcompat:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity android.support.v7.appcompat:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor android.support.v7.appcompat:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight android.support.v7.appcompat:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth android.support.v7.appcompat:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth android.support.v7.appcompat:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode android.support.v7.appcompat:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding android.support.v7.appcompat:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom android.support.v7.appcompat:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd android.support.v7.appcompat:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart android.support.v7.appcompat:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop android.support.v7.appcompat:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor android.support.v7.appcompat:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance android.support.v7.appcompat:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor android.support.v7.appcompat: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 = {
0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136,
0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a,
0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e,
0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142
};
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabBackground
*/
public static int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabContentStart
*/
public static int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabGravity
*/
public static int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabIndicatorColor
*/
public static int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabIndicatorHeight
*/
public static int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabMaxWidth
*/
public static int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabMinWidth
*/
public static int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabMode
*/
public static int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabPadding
*/
public static int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabPaddingBottom
*/
public static int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabPaddingEnd
*/
public static int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabPaddingStart
*/
public static int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabPaddingTop
*/
public static int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabSelectedTextColor
*/
public static int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabTextAppearance
*/
public static int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:tabTextColor
*/
public static 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 android.support.v7.appcompat:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps android.support.v7.appcompat: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, 0x7f010036,
0x7f01003c
};
/**
<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 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 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 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 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 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 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 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 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 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 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 int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:fontFamily
*/
public static int TextAppearance_fontFamily = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:textAllCaps
*/
public static 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 android.support.v7.appcompat:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength android.support.v7.appcompat:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance android.support.v7.appcompat:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance android.support.v7.appcompat:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled android.support.v7.appcompat:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance android.support.v7.appcompat:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled android.support.v7.appcompat:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled android.support.v7.appcompat:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance android.support.v7.appcompat:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription android.support.v7.appcompat:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable android.support.v7.appcompat:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled android.support.v7.appcompat:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint android.support.v7.appcompat:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode android.support.v7.appcompat: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, 0x7f010143, 0x7f010144,
0x7f010145, 0x7f010146, 0x7f010147, 0x7f010148,
0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c,
0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150
};
/**
<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 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 int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:counterEnabled
*/
public static int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:counterMaxLength
*/
public static int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:counterOverflowTextAppearance
*/
public static int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:counterTextAppearance
*/
public static int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:errorEnabled
*/
public static int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:errorTextAppearance
*/
public static int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:hintAnimationEnabled
*/
public static int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:hintEnabled
*/
public static int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:hintTextAppearance
*/
public static int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:passwordToggleContentDescription
*/
public static int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:passwordToggleDrawable
*/
public static int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:passwordToggleEnabled
*/
public static int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:passwordToggleTint
*/
public static int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:passwordToggleTintMode
*/
public static 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 android.support.v7.appcompat:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription android.support.v7.appcompat:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon android.support.v7.appcompat:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd android.support.v7.appcompat:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions android.support.v7.appcompat:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft android.support.v7.appcompat:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight android.support.v7.appcompat:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart android.support.v7.appcompat:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation android.support.v7.appcompat:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo android.support.v7.appcompat:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription android.support.v7.appcompat:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight android.support.v7.appcompat:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription android.support.v7.appcompat:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon android.support.v7.appcompat:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme android.support.v7.appcompat:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle android.support.v7.appcompat:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance android.support.v7.appcompat:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor android.support.v7.appcompat:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title android.support.v7.appcompat:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin android.support.v7.appcompat:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom android.support.v7.appcompat:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd android.support.v7.appcompat:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart android.support.v7.appcompat:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop android.support.v7.appcompat:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins android.support.v7.appcompat:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance android.support.v7.appcompat:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor android.support.v7.appcompat: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, 0x7f01000c, 0x7f01000f,
0x7f010013, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023, 0x7f010024, 0x7f010026,
0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec,
0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0,
0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4,
0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8,
0x7f0100f9
};
/**
<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 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 int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:buttonGravity
*/
public static int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:collapseContentDescription
*/
public static int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:collapseIcon
*/
public static int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetEnd
*/
public static int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetEndWithActions
*/
public static int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetLeft
*/
public static int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetRight
*/
public static int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetStart
*/
public static int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:contentInsetStartWithNavigation
*/
public static int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:logo
*/
public static int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:logoDescription
*/
public static int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:maxButtonHeight
*/
public static int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:navigationContentDescription
*/
public static int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:navigationIcon
*/
public static int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:popupTheme
*/
public static int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:subtitle
*/
public static int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:subtitleTextAppearance
*/
public static int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:subtitleTextColor
*/
public static int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:title
*/
public static int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleMargin
*/
public static int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleMarginBottom
*/
public static int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleMarginEnd
*/
public static int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleMarginStart
*/
public static int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleMarginTop
*/
public static int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleMargins
*/
public static int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleTextAppearance
*/
public static int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:titleTextColor
*/
public static 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 android.support.v7.appcompat:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart android.support.v7.appcompat:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme android.support.v7.appcompat: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, 0x7f0100fa, 0x7f0100fb,
0x7f0100fc
};
/**
<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 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 int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:paddingEnd
*/
public static int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:paddingStart
*/
public static int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:theme
*/
public static 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 android.support.v7.appcompat:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode android.support.v7.appcompat:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f0100fd, 0x7f0100fe
};
/**
<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 int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:backgroundTint
*/
public static int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.appcompat.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 android.support.v7.appcompat:backgroundTintMode
*/
public static 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 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 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 int ViewStubCompat_android_layout = 1;
};
}
| [
"[email protected]"
] | |
40b65868e8877076db2de437108e3f58c9eecef0 | f3649575b113bb24591e95d16088ee58d91bf21e | /Source_Code/fBReader/src/main/java/org/geometerplus/fbreader/formats/oeb/OEBAnnotationReader.java | bc810f9634456289c5160dd6b72c922fcd522b82 | [] | no_license | lurongshuang/FBReader-Mupdf_library | 8b12cd4cb4d7d014491c0a20726908f539822cf7 | 6c08865a7cf7d5f1b6ec1cfde301a194b9900329 | refs/heads/master | 2021-05-08T21:38:29.037300 | 2019-12-02T07:34:52 | 2019-12-02T07:34:52 | 119,648,514 | 53 | 18 | null | null | null | null | UTF-8 | Java | false | false | 2,669 | java | /*
* Copyright (C) 2007-2015 FBReader.ORG Limited <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
package org.geometerplus.fbreader.formats.oeb;
import java.io.IOException;
import org.geometerplus.zlibrary.core.constants.XMLNamespaces;
import org.geometerplus.zlibrary.core.filesystem.ZLFile;
import org.geometerplus.zlibrary.core.xml.*;
class OEBAnnotationReader extends ZLXMLReaderAdapter implements XMLNamespaces {
private static final int READ_NONE = 0;
private static final int READ_DESCRIPTION = 1;
private int myReadState;
private final StringBuilder myBuffer = new StringBuilder();
String readAnnotation(ZLFile file) {
myReadState = READ_NONE;
myBuffer.delete(0, myBuffer.length());
try {
ZLXMLProcessor.read(this, file, 512);
final int len = myBuffer.length();
if (len > 1) {
if (myBuffer.charAt(len - 1) == '\n') {
myBuffer.delete(len - 1, len);
}
return myBuffer.toString();
}
return null;
} catch (IOException e) {
return null;
}
}
@Override
public boolean processNamespaces() {
return true;
}
@Override
public boolean startElementHandler(String tag, ZLStringMap attributes) {
tag = tag.toLowerCase();
if (testTag(DublinCore, "description", tag) ||
testTag(DublinCoreLegacy, "description", tag)) {
myReadState = READ_DESCRIPTION;
} else if (myReadState == READ_DESCRIPTION) {
// TODO: process tags
myBuffer.append(" ");
}
return false;
}
@Override
public void characterDataHandler(char[] data, int start, int len) {
if (myReadState == READ_DESCRIPTION) {
myBuffer.append(new String(data, start, len).trim());
}
}
@Override
public boolean endElementHandler(String tag) {
if (myReadState != READ_DESCRIPTION) {
return false;
}
tag = tag.toLowerCase();
if (testTag(DublinCore, "description", tag) ||
testTag(DublinCoreLegacy, "description", tag)) {
return true;
}
// TODO: process tags
myBuffer.append(" ");
return false;
}
}
| [
"[email protected]"
] | |
1919b6de89abf43a8a70f82aed4c25fa25ea7eb9 | 0a6360134dbf6400383e119e618615e4c2aaeeff | /app/build/generated/not_namespaced_r_class_sources/debug/r/androidx/fragment/R.java | a42ee741d5959fd04720a092f4b881ae76c3cecc | [] | no_license | eduardscaueru/ContractSimplify | 716a0e59b57477948fa4a542c18df78c8cff8e30 | 8006dd7861a440c2f225d4ae9964aa103b293190 | refs/heads/main | 2023-02-09T12:22:55.437455 | 2021-01-07T13:35:14 | 2021-01-07T13:35:14 | 311,032,961 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,390 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package androidx.fragment;
public final class R {
private R() {}
public static final class attr {
private attr() {}
public static final int alpha = 0x7f020027;
public static final int coordinatorLayoutStyle = 0x7f020064;
public static final int font = 0x7f02007a;
public static final int fontProviderAuthority = 0x7f02007c;
public static final int fontProviderCerts = 0x7f02007d;
public static final int fontProviderFetchStrategy = 0x7f02007e;
public static final int fontProviderFetchTimeout = 0x7f02007f;
public static final int fontProviderPackage = 0x7f020080;
public static final int fontProviderQuery = 0x7f020081;
public static final int fontStyle = 0x7f020082;
public static final int fontVariationSettings = 0x7f020083;
public static final int fontWeight = 0x7f020084;
public static final int keylines = 0x7f020094;
public static final int layout_anchor = 0x7f020097;
public static final int layout_anchorGravity = 0x7f020098;
public static final int layout_behavior = 0x7f020099;
public static final int layout_dodgeInsetEdges = 0x7f0200c3;
public static final int layout_insetEdge = 0x7f0200cc;
public static final int layout_keyline = 0x7f0200cd;
public static final int statusBarBackground = 0x7f020109;
public static final int ttcIndex = 0x7f02013c;
}
public static final class color {
private color() {}
public static final int notification_action_color_filter = 0x7f04003f;
public static final int notification_icon_bg_color = 0x7f040040;
public static final int ripple_material_light = 0x7f04004a;
public static final int secondary_text_default_material_light = 0x7f04004c;
}
public static final class dimen {
private dimen() {}
public static final int compat_button_inset_horizontal_material = 0x7f05004b;
public static final int compat_button_inset_vertical_material = 0x7f05004c;
public static final int compat_button_padding_horizontal_material = 0x7f05004d;
public static final int compat_button_padding_vertical_material = 0x7f05004e;
public static final int compat_control_corner_material = 0x7f05004f;
public static final int compat_notification_large_icon_max_height = 0x7f050050;
public static final int compat_notification_large_icon_max_width = 0x7f050051;
public static final int notification_action_icon_size = 0x7f05005b;
public static final int notification_action_text_size = 0x7f05005c;
public static final int notification_big_circle_margin = 0x7f05005d;
public static final int notification_content_margin_start = 0x7f05005e;
public static final int notification_large_icon_height = 0x7f05005f;
public static final int notification_large_icon_width = 0x7f050060;
public static final int notification_main_column_padding_top = 0x7f050061;
public static final int notification_media_narrow_margin = 0x7f050062;
public static final int notification_right_icon_size = 0x7f050063;
public static final int notification_right_side_padding_top = 0x7f050064;
public static final int notification_small_icon_background_padding = 0x7f050065;
public static final int notification_small_icon_size_as_large = 0x7f050066;
public static final int notification_subtext_size = 0x7f050067;
public static final int notification_top_pad = 0x7f050068;
public static final int notification_top_pad_large_text = 0x7f050069;
}
public static final class drawable {
private drawable() {}
public static final int notification_action_background = 0x7f060058;
public static final int notification_bg = 0x7f060059;
public static final int notification_bg_low = 0x7f06005a;
public static final int notification_bg_low_normal = 0x7f06005b;
public static final int notification_bg_low_pressed = 0x7f06005c;
public static final int notification_bg_normal = 0x7f06005d;
public static final int notification_bg_normal_pressed = 0x7f06005e;
public static final int notification_icon_background = 0x7f06005f;
public static final int notification_template_icon_bg = 0x7f060060;
public static final int notification_template_icon_low_bg = 0x7f060061;
public static final int notification_tile_bg = 0x7f060062;
public static final int notify_panel_notification_icon_bg = 0x7f060063;
}
public static final class id {
private id() {}
public static final int action_container = 0x7f07000d;
public static final int action_divider = 0x7f07000f;
public static final int action_image = 0x7f070010;
public static final int action_text = 0x7f070016;
public static final int actions = 0x7f070017;
public static final int async = 0x7f07001d;
public static final int blocking = 0x7f070020;
public static final int bottom = 0x7f070021;
public static final int chronometer = 0x7f070029;
public static final int end = 0x7f070037;
public static final int forever = 0x7f07003d;
public static final int icon = 0x7f070043;
public static final int icon_group = 0x7f070044;
public static final int info = 0x7f070048;
public static final int italic = 0x7f07004a;
public static final int left = 0x7f07004b;
public static final int line1 = 0x7f07004c;
public static final int line3 = 0x7f07004d;
public static final int none = 0x7f070054;
public static final int normal = 0x7f070055;
public static final int notification_background = 0x7f070056;
public static final int notification_main_column = 0x7f070057;
public static final int notification_main_column_container = 0x7f070058;
public static final int right = 0x7f070060;
public static final int right_icon = 0x7f070061;
public static final int right_side = 0x7f070062;
public static final int start = 0x7f07007e;
public static final int tag_transition_group = 0x7f070082;
public static final int tag_unhandled_key_event_manager = 0x7f070083;
public static final int tag_unhandled_key_listeners = 0x7f070084;
public static final int text = 0x7f070085;
public static final int text2 = 0x7f070086;
public static final int time = 0x7f07008b;
public static final int title = 0x7f07008c;
public static final int top = 0x7f07008f;
}
public static final class integer {
private integer() {}
public static final int status_bar_notification_info_maxnum = 0x7f080004;
}
public static final class layout {
private layout() {}
public static final int notification_action = 0x7f09001d;
public static final int notification_action_tombstone = 0x7f09001e;
public static final int notification_template_custom_big = 0x7f09001f;
public static final int notification_template_icon_group = 0x7f090020;
public static final int notification_template_part_chronometer = 0x7f090021;
public static final int notification_template_part_time = 0x7f090022;
}
public static final class string {
private string() {}
public static final int status_bar_notification_info_overflow = 0x7f0b002c;
}
public static final class style {
private style() {}
public static final int TextAppearance_Compat_Notification = 0x7f0c00ec;
public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed;
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee;
public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef;
public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0;
public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158;
public static final int Widget_Compat_NotificationActionText = 0x7f0c0159;
public static final int Widget_Support_CoordinatorLayout = 0x7f0c015a;
}
public static final class styleable {
private styleable() {}
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 };
public static final int ColorStateListItem_android_color = 0;
public static final int ColorStateListItem_android_alpha = 1;
public static final int ColorStateListItem_alpha = 2;
public static final int[] CoordinatorLayout = { 0x7f020094, 0x7f020109 };
public static final int CoordinatorLayout_keylines = 0;
public static final int CoordinatorLayout_statusBarBackground = 1;
public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f0200c3, 0x7f0200cc, 0x7f0200cd };
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
public static final int CoordinatorLayout_Layout_layout_anchor = 1;
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2;
public static final int CoordinatorLayout_Layout_layout_behavior = 3;
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4;
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
public static final int CoordinatorLayout_Layout_layout_keyline = 6;
public static final int[] FontFamily = { 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 };
public static final int FontFamily_fontProviderAuthority = 0;
public static final int FontFamily_fontProviderCerts = 1;
public static final int FontFamily_fontProviderFetchStrategy = 2;
public static final int FontFamily_fontProviderFetchTimeout = 3;
public static final int FontFamily_fontProviderPackage = 4;
public static final int FontFamily_fontProviderQuery = 5;
public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c };
public static final int FontFamilyFont_android_font = 0;
public static final int FontFamilyFont_android_fontWeight = 1;
public static final int FontFamilyFont_android_fontStyle = 2;
public static final int FontFamilyFont_android_ttcIndex = 3;
public static final int FontFamilyFont_android_fontVariationSettings = 4;
public static final int FontFamilyFont_font = 5;
public static final int FontFamilyFont_fontStyle = 6;
public static final int FontFamilyFont_fontVariationSettings = 7;
public static final int FontFamilyFont_fontWeight = 8;
public static final int FontFamilyFont_ttcIndex = 9;
public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 };
public static final int GradientColor_android_startColor = 0;
public static final int GradientColor_android_endColor = 1;
public static final int GradientColor_android_type = 2;
public static final int GradientColor_android_centerX = 3;
public static final int GradientColor_android_centerY = 4;
public static final int GradientColor_android_gradientRadius = 5;
public static final int GradientColor_android_tileMode = 6;
public static final int GradientColor_android_centerColor = 7;
public static final int GradientColor_android_startX = 8;
public static final int GradientColor_android_startY = 9;
public static final int GradientColor_android_endX = 10;
public static final int GradientColor_android_endY = 11;
public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 };
public static final int GradientColorItem_android_color = 0;
public static final int GradientColorItem_android_offset = 1;
}
}
| [
"[email protected]"
] | |
ef2f276685d60eca89aab458b80190ddc6a5526c | 78a9a4aadf6758d38754c0a398fe0c3659731a76 | /src/main/java/com/nirav/demo/ApplicationWebXml.java | c80cde367da6d8df1577df3dd1aa19b3d95a4613 | [] | no_license | nrvmodi/jhipster-sample-application | ff44d97f6096709ce909ccec0bfa2c094d0d3c8e | 0daa12e9a4ed6a260d5045275af99041f5c7a6b4 | refs/heads/main | 2023-02-07T10:29:58.233552 | 2021-01-01T11:24:26 | 2021-01-01T11:24:26 | 325,965,600 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 813 | java | package com.nirav.demo;
import io.github.jhipster.config.DefaultProfileUtil;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
/**
* This is a helper Java class that provides an alternative to creating a {@code web.xml}.
* This will be invoked only when the application is deployed to a Servlet container like Tomcat, JBoss etc.
*/
public class ApplicationWebXml extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
// set a default to use when no profile is configured.
DefaultProfileUtil.addDefaultProfile(application.application());
return application.sources(SpringJibDemoApp.class);
}
}
| [
"[email protected]"
] | |
9bb72b96500f1b3c3e3e33d83a1e3b736b05419c | b01eab4165d36bf5c50e8c28deca9991bfc963f2 | /src/dp/behaviour/state/problem/ToolType.java | 49931a18f608951c7a59ce0181dce1165cd14001 | [] | no_license | Hmida-Rojbani/DP-Samples | 0925c57349de610cbbd999a697fc445e35f40db3 | 4d73370f8756bb6d34d974b4e6f8f5bf9d920999 | refs/heads/master | 2023-03-14T13:13:43.782838 | 2021-03-05T12:39:51 | 2021-03-05T12:39:51 | 344,777,251 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 91 | java | package dp.behaviour.state.problem;
public enum ToolType {
SELECTION,
BRUSH,
ERASER
}
| [
"[email protected]"
] | |
bb5c1d7d71bb7c87dcd096d31a33668e3bea00fc | c885ef92397be9d54b87741f01557f61d3f794f3 | /tests-without-trycatch/Gson-17/com.google.gson.DefaultDateTypeAdapter/BBC-F0-opt-70/8/com/google/gson/DefaultDateTypeAdapter_ESTest_scaffolding.java | 45c24216a52b16e7f24bf7d2dfa4ad1f29d14e81 | [
"CC-BY-4.0",
"MIT"
] | permissive | pderakhshanfar/EMSE-BBC-experiment | f60ac5f7664dd9a85f755a00a57ec12c7551e8c6 | fea1a92c2e7ba7080b8529e2052259c9b697bbda | refs/heads/main | 2022-11-25T00:39:58.983828 | 2022-04-12T16:04:26 | 2022-04-12T16:04:26 | 309,335,889 | 0 | 1 | null | 2021-11-05T11:18:43 | 2020-11-02T10:30:38 | null | UTF-8 | Java | false | false | 8,085 | java | /**
* Scaffolding file used to store all the setups needed to run
* tests automatically generated by EvoSuite
* Thu Oct 14 01:15:47 GMT 2021
*/
package com.google.gson;
import org.evosuite.runtime.annotation.EvoSuiteClassExclude;
import org.junit.BeforeClass;
import org.junit.Before;
import org.junit.After;
import org.junit.AfterClass;
import org.evosuite.runtime.sandbox.Sandbox;
import org.evosuite.runtime.sandbox.Sandbox.SandboxMode;
@EvoSuiteClassExclude
public class DefaultDateTypeAdapter_ESTest_scaffolding {
@org.junit.Rule
public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule();
private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone();
private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000);
@BeforeClass
public static void initEvoSuiteFramework() {
org.evosuite.runtime.RuntimeSettings.className = "com.google.gson.DefaultDateTypeAdapter";
org.evosuite.runtime.GuiSupport.initialize();
org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100;
org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000;
org.evosuite.runtime.RuntimeSettings.mockSystemIn = true;
org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED;
org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT();
org.evosuite.runtime.classhandling.JDKClassResetter.init();
setSystemProperties();
initializeClasses();
org.evosuite.runtime.Runtime.getInstance().resetRuntime();
}
@AfterClass
public static void clearEvoSuiteFramework(){
Sandbox.resetDefaultSecurityManager();
java.lang.System.setProperties((java.util.Properties) defaultProperties.clone());
}
@Before
public void initTestCase(){
threadStopper.storeCurrentThreads();
threadStopper.startRecordingTime();
org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler();
org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode();
setSystemProperties();
org.evosuite.runtime.GuiSupport.setHeadless();
org.evosuite.runtime.Runtime.getInstance().resetRuntime();
org.evosuite.runtime.agent.InstrumentingAgent.activate();
}
@After
public void doneWithTestCase(){
threadStopper.killAndJoinClientThreads();
org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks();
org.evosuite.runtime.classhandling.JDKClassResetter.reset();
resetClasses();
org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode();
org.evosuite.runtime.agent.InstrumentingAgent.deactivate();
org.evosuite.runtime.GuiSupport.restoreHeadlessMode();
}
public static void setSystemProperties() {
java.lang.System.setProperties((java.util.Properties) defaultProperties.clone());
java.lang.System.setProperty("user.dir", "/experiment");
}
private static void initializeClasses() {
org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(DefaultDateTypeAdapter_ESTest_scaffolding.class.getClassLoader() ,
"com.google.gson.JsonParseException",
"com.google.gson.stream.JsonReader$1",
"com.google.gson.JsonObject",
"com.google.gson.internal.bind.JsonTreeReader$1",
"com.google.gson.TypeAdapter$1",
"com.google.gson.internal.$Gson$Preconditions",
"com.google.gson.JsonSyntaxException",
"com.google.gson.TypeAdapter",
"com.google.gson.internal.bind.JsonTreeWriter",
"com.google.gson.stream.JsonReader",
"com.google.gson.internal.bind.util.ISO8601Utils",
"com.google.gson.JsonElement",
"com.google.gson.stream.MalformedJsonException",
"com.google.gson.stream.JsonToken",
"com.google.gson.JsonArray",
"com.google.gson.internal.bind.JsonTreeReader",
"com.google.gson.internal.bind.JsonTreeWriter$1",
"com.google.gson.internal.JsonReaderInternalAccess",
"com.google.gson.JsonNull",
"com.google.gson.JsonIOException",
"com.google.gson.DefaultDateTypeAdapter",
"com.google.gson.JsonPrimitive",
"com.google.gson.stream.JsonWriter",
"com.google.gson.internal.LazilyParsedNumber"
);
}
private static void resetClasses() {
org.evosuite.runtime.classhandling.ClassResetter.getInstance().setClassLoader(DefaultDateTypeAdapter_ESTest_scaffolding.class.getClassLoader());
org.evosuite.runtime.classhandling.ClassStateSupport.resetClasses(
"com.google.gson.TypeAdapter",
"com.google.gson.DefaultDateTypeAdapter",
"com.google.gson.stream.JsonToken",
"com.google.gson.internal.bind.util.ISO8601Utils",
"com.google.gson.internal.JsonReaderInternalAccess",
"com.google.gson.stream.JsonReader$1",
"com.google.gson.stream.JsonReader",
"com.google.gson.stream.JsonWriter",
"com.google.gson.TypeAdapter$1",
"com.google.gson.internal.bind.JsonTreeWriter$1",
"com.google.gson.JsonElement",
"com.google.gson.JsonPrimitive",
"com.google.gson.internal.$Gson$Preconditions",
"com.google.gson.internal.bind.JsonTreeWriter",
"com.google.gson.JsonNull",
"com.google.gson.stream.MalformedJsonException",
"com.google.gson.internal.bind.JsonTreeReader$1",
"com.google.gson.internal.bind.JsonTreeReader",
"com.google.gson.JsonParseException",
"com.google.gson.JsonArray",
"com.google.gson.internal.Streams",
"com.google.gson.internal.bind.TypeAdapters$6",
"com.google.gson.internal.bind.TypeAdapters$32",
"com.google.gson.internal.bind.TypeAdapters$5",
"com.google.gson.internal.bind.TypeAdapters$7",
"com.google.gson.internal.bind.TypeAdapters$8",
"com.google.gson.internal.bind.TypeAdapters$33",
"com.google.gson.internal.bind.TypeAdapters$9",
"com.google.gson.internal.bind.TypeAdapters$10",
"com.google.gson.internal.bind.TypeAdapters$11",
"com.google.gson.internal.bind.TypeAdapters$1",
"com.google.gson.internal.bind.TypeAdapters$2",
"com.google.gson.internal.bind.TypeAdapters$3",
"com.google.gson.internal.bind.TypeAdapters$12",
"com.google.gson.internal.bind.TypeAdapters$13",
"com.google.gson.internal.bind.TypeAdapters$14",
"com.google.gson.internal.bind.TypeAdapters$15",
"com.google.gson.internal.bind.TypeAdapters$16",
"com.google.gson.internal.bind.TypeAdapters$17",
"com.google.gson.internal.bind.TypeAdapters$18",
"com.google.gson.internal.bind.TypeAdapters$19",
"com.google.gson.internal.bind.TypeAdapters$20",
"com.google.gson.internal.bind.TypeAdapters$21",
"com.google.gson.internal.bind.TypeAdapters$22",
"com.google.gson.internal.bind.TypeAdapters$23",
"com.google.gson.internal.bind.TypeAdapters$24",
"com.google.gson.internal.bind.TypeAdapters$35",
"com.google.gson.internal.bind.TypeAdapters$25",
"com.google.gson.internal.bind.TypeAdapters$4",
"com.google.gson.internal.bind.TypeAdapters$26",
"com.google.gson.internal.bind.TypeAdapters$27",
"com.google.gson.internal.bind.TypeAdapters$34",
"com.google.gson.internal.bind.TypeAdapters$28",
"com.google.gson.internal.bind.TypeAdapters$29",
"com.google.gson.internal.bind.TypeAdapters$30",
"com.google.gson.internal.bind.TypeAdapters",
"com.google.gson.JsonObject",
"com.google.gson.internal.LinkedTreeMap$1",
"com.google.gson.internal.LinkedTreeMap",
"com.google.gson.internal.LinkedTreeMap$Node",
"com.google.gson.internal.LinkedTreeMap$EntrySet",
"com.google.gson.internal.LinkedTreeMap$LinkedTreeMapIterator",
"com.google.gson.internal.LinkedTreeMap$EntrySet$1",
"com.google.gson.JsonSyntaxException",
"com.google.gson.internal.LazilyParsedNumber"
);
}
}
| [
"[email protected]"
] | |
bcf4ffb33c2d5550b4620b9ed0a7775c19d85ebe | 04b3202071e9be38bb6d800c7b348edc88dc11d5 | /src/main/java/br/com/ifood/vehiclerouting/entity/Client.java | b75ec2eddd1a13dbc32636af23f507b19cb053ac | [] | no_license | jeffersonrodrigues92/vehiclerouting | d9e2d0f09023fd4b1a2f8948fba5e1c2fa3428d1 | bce4ff780c15b47eae3b2e31306492085b34b978 | refs/heads/master | 2020-04-09T15:38:44.369043 | 2018-12-10T13:27:03 | 2018-12-10T13:27:03 | 160,431,870 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 697 | java | package br.com.ifood.vehiclerouting.entity;
import javax.persistence.*;
import javax.validation.constraints.NotNull;
@Entity
@Table(name = "client")
public class Client {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@NotNull
private Double lat;
@NotNull
private Double lon;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Double getLat() {
return lat;
}
public void setLat(Double lat) {
this.lat = lat;
}
public Double getLon() {
return lon;
}
public void setLon(Double lon) {
this.lon = lon;
}
}
| [
"[email protected]"
] | |
f4e5ae5401ab9334dbaeca94cfd2b2e3fa10a02e | bd390bbe0e630eb402066955cc5d68cb7919521e | /src/officehours/April23.java | 91a40d6f705e70df4394a98b4a8cc9eded79f16b | [] | no_license | msarikoc/Spring2019Online_Project | 77bfb8904ff2571ba2d2006a0b1cb6b35f4e5024 | ef73f76911447763ed538f51b8dbbcd2440987a4 | refs/heads/master | 2020-05-27T17:16:45.311073 | 2019-05-26T17:24:52 | 2019-05-26T17:24:52 | 188,717,403 | 1 | 0 | null | 2019-05-26T18:22:44 | 2019-05-26T18:22:44 | null | UTF-8 | Java | false | false | 1,523 | java | package officehours;
import java.util.Arrays;
public class April23 {
public static void main(String[] args) {
// isPalindrome(43234);
// int num = 1;
// System.out.println("Result: "+ (num%10));
// int reversed = reverseNumber(123456789);
// System.out.println(reversed);
System.out.println(fib(20) == 6765);
System.out.println(fib(20));
System.out.println(Arrays.toString(Integer.toBinaryString(255).toCharArray()));
}
public static void isPalindrome(int num) {
// WRITE YOUR CODE HERE
int reversedNum = 0;
int originalNum = num;
while (num > 0) {
// 1 iteration (0 * 10)+ 1 , reversedNum = 1, num/10 -> 100
// 2 iteration 1 * 10 + 0, reversedNum = 10, num/10 -> 10
// 3 iteration (10 * 10) + 0, revesedNum = 100, num/10 -> 1
// 4 iteration (100 * 10) + 1, revesedNum = 1001
// 8%10 = 8, 1%10 = 1, 10%10 = 0
reversedNum = reversedNum * 10 + num % 10;
num = num / 10;
}
System.out.println(reversedNum == originalNum);
}
public static int reverseNumber(int num) {
int reversedNum = 0;
while (num > 0) {
reversedNum = reversedNum * 10 + num % 10;
num = num / 10;
}
return reversedNum;
}
public static int fib(int num) {
// WRITE YOUR CODE HERE
int num1 = 0;
System.out.println("Fib 0 : " + num1);
int num2 = 1;
System.out.println("Fib 1 : " + num2);
int result = 0;
for (int i = 2; i <= num; i++) {
result = num1 + num2;
num1 = num2;
num2 = result;
System.out.println("Fib " + i + ": " + result);
}
return result;
}
}
| [
"[email protected]"
] | |
16307b6fe907d4556f48da1ef582f461ef0b7453 | 7cfe6d59908021d848d580df3c5024a1207e41aa | /customwidget/src/main/java/cn/xxt/customwidget/thinkinginjava/io/file18_7/BinaryFile.java | 5f9c1233dbec4d43f8ad23db73593116478562da | [
"Apache-2.0"
] | permissive | Martin-zhq/someexercise | ee80f469769eeeec6eb11c28267d2ad7d750bc40 | 6edd6cc4ce260c189727a487652738549ca61d56 | refs/heads/master | 2022-03-04T21:16:51.379746 | 2019-12-02T10:04:24 | 2019-12-02T10:04:24 | 114,429,305 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 748 | java | package cn.xxt.customwidget.thinkinginjava.io.file18_7;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
/**
* @Author zhq
* @Date 2019-12-02-17:25
* @Description
* @Email [email protected]
*/
public class BinaryFile {
public static byte[] read(File file) throws IOException {
BufferedInputStream bf = new BufferedInputStream(new FileInputStream(file));
try {
byte[] data = new byte[bf.available()];
bf.read(data);
return data;
} finally {
bf.close();
}
}
public static byte[] read(String file) throws IOException {
return read(new File(file).getAbsoluteFile());
}
}
| [
"[email protected]"
] | |
e6a7a792d93cff4d8dd8b53945dfe04463e13779 | 5c751af50b8766802c19e2e1d39aed9e55ff478c | /src/subject/observer/pattern/ISubject.java | 070f75eb06b25574c508889664637b5abd5c423b | [] | no_license | rabbitmz/HeadFirstDesignPatternBook | 6e3e4422610b3a037ea888055bcc48c3269929b8 | 3cd4de9e5a4bb95c734e1ec5771b80973a34ed07 | refs/heads/master | 2020-04-07T07:04:34.762118 | 2018-11-22T04:57:06 | 2018-11-22T04:57:06 | 158,162,492 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 321 | java | package subject.observer.pattern;
/**
* An interface that represents the subjects
*
* A subject is responsible to publish the data to the observers
* @author rabbit
*
*/
public interface ISubject
{
void registerObserver(IObserver observer);
void removeObserver(IObserver observer);
void notifyObservers();
}
| [
"[email protected]"
] | |
bbc44861963aa66201bfe230c8aab2348b34f141 | 1c311ca46807a37b50b494c0f0a0f9d57744b570 | /src/admin/frames/ItemExtendedFrame.java | 5f087f6616ac59d1b78db8f0b820516ae9f61a20 | [] | no_license | MrHistone/Admin | d6ef9159f8bf7b502fca0acf5d9f509365079bc1 | c3c807bcd517dd1a7cf68a256770c61ff46010f2 | refs/heads/master | 2020-12-30T13:20:00.564691 | 2017-05-15T14:36:38 | 2017-05-15T14:36:38 | 91,342,965 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,009 | java | package admin.frames;
import admin.ConfigWindow;
import admin.MDIStart;
import admin.Preferences;
import java.awt.Dimension;
import java.awt.Point;
public class ItemExtendedFrame extends javax.swing.JInternalFrame {
/**
* Creates new form ItemExtendedFrame
*/
public ItemExtendedFrame() {
initComponents();
if (!java.beans.Beans.isDesignTime()) {
loadAndSetPositionAndSizeOfWindow();
}
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
itemExtended = new admin.frames.ItemExtended();
jMenuBar1 = new javax.swing.JMenuBar();
jMenuFile = new javax.swing.JMenu();
jMenuItemSluit = new javax.swing.JMenuItem();
jMenuEdit = new javax.swing.JMenu();
jMenuItemNieuw = new javax.swing.JMenuItem();
jMenuItemBewerken = new javax.swing.JMenuItem();
jMenuItemVerwijderen = new javax.swing.JMenuItem();
jMenuDiversen = new javax.swing.JMenu();
jMenuItemSaveKolommen = new javax.swing.JMenuItem();
jMenuItemReadDirectory = new javax.swing.JMenuItem();
setClosable(true);
setIconifiable(true);
setMaximizable(true);
setResizable(true);
setTitle("Administratie Bestanden");
addInternalFrameListener(new javax.swing.event.InternalFrameListener() {
public void internalFrameActivated(javax.swing.event.InternalFrameEvent evt) {
}
public void internalFrameClosed(javax.swing.event.InternalFrameEvent evt) {
}
public void internalFrameClosing(javax.swing.event.InternalFrameEvent evt) {
formInternalFrameClosing(evt);
}
public void internalFrameDeactivated(javax.swing.event.InternalFrameEvent evt) {
}
public void internalFrameDeiconified(javax.swing.event.InternalFrameEvent evt) {
}
public void internalFrameIconified(javax.swing.event.InternalFrameEvent evt) {
}
public void internalFrameOpened(javax.swing.event.InternalFrameEvent evt) {
}
});
jMenuFile.setText("File");
jMenuItemSluit.setText("Sluit scherm");
jMenuItemSluit.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jMenuItemSluitActionPerformed(evt);
}
});
jMenuFile.add(jMenuItemSluit);
jMenuBar1.add(jMenuFile);
jMenuEdit.setText("Edit");
jMenuItemNieuw.setText("Nieuw bestand");
jMenuEdit.add(jMenuItemNieuw);
jMenuItemBewerken.setText("Bewerken");
jMenuEdit.add(jMenuItemBewerken);
jMenuItemVerwijderen.setText("Verwijderen");
jMenuEdit.add(jMenuItemVerwijderen);
jMenuBar1.add(jMenuEdit);
jMenuDiversen.setText("Diversen");
jMenuItemSaveKolommen.setText("Save Kolommen");
jMenuDiversen.add(jMenuItemSaveKolommen);
jMenuItemReadDirectory.setText("Lees Komplete Directory Bestanden");
jMenuItemReadDirectory.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jMenuItemReadDirectoryActionPerformed(evt);
}
});
jMenuDiversen.add(jMenuItemReadDirectory);
jMenuBar1.add(jMenuDiversen);
setJMenuBar(jMenuBar1);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(itemExtended, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addComponent(itemExtended, javax.swing.GroupLayout.DEFAULT_SIZE, 590, Short.MAX_VALUE)
.addContainerGap())
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void formInternalFrameClosing(javax.swing.event.InternalFrameEvent evt) {//GEN-FIRST:event_formInternalFrameClosing
savePositionAndSizeOfWindow();
}//GEN-LAST:event_formInternalFrameClosing
private void jMenuItemSluitActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jMenuItemSluitActionPerformed
dispose();
}//GEN-LAST:event_jMenuItemSluitActionPerformed
private void jMenuItemReadDirectoryActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jMenuItemReadDirectoryActionPerformed
itemExtended.importFilesFromDirectory();
}//GEN-LAST:event_jMenuItemReadDirectoryActionPerformed
// Variables declaration - do not modify//GEN-BEGIN:variables
private admin.frames.ItemExtended itemExtended;
private javax.swing.JMenuBar jMenuBar1;
private javax.swing.JMenu jMenuDiversen;
private javax.swing.JMenu jMenuEdit;
private javax.swing.JMenu jMenuFile;
private javax.swing.JMenuItem jMenuItemBewerken;
private javax.swing.JMenuItem jMenuItemNieuw;
private javax.swing.JMenuItem jMenuItemReadDirectory;
private javax.swing.JMenuItem jMenuItemSaveKolommen;
private javax.swing.JMenuItem jMenuItemSluit;
private javax.swing.JMenuItem jMenuItemVerwijderen;
// End of variables declaration//GEN-END:variables
private void savePositionAndSizeOfWindow() {
try {
// Get window name
String className = this.getClass().getName();
Dimension size = this.getSize();
Point point = this.getLocation();
ConfigWindow confWin = new ConfigWindow();
confWin.setDimension(size);
confWin.setPoint(point);
confWin.setWindowName(className);
Preferences.saveProperties(confWin);
} catch (Exception ex) {
System.out.println("Something terrible happened with saving "
+ "the window size and position. "
+ "(loadAndSetPositionAndSizeOfWindow) of "
+ this.getClass().getName() + ex);
}
}
private void loadAndSetPositionAndSizeOfWindow() {
ConfigWindow confWin = Preferences.loadProperties(this.getClass().getName());
if (confWin == null){
System.out.println("Geen confWin gevonden voor " + this.getClass().getName());
}
try {
if (confWin.getDimension() != null && confWin.getDimension().getWidth() > 0 && confWin.getDimension().getHeight() > 0) {
this.setSize(confWin.getDimension());
}
if (confWin.getPoint() != null && confWin.getPoint().getX() > 0 && confWin.getPoint().getY() > 0) {
this.setLocation(confWin.getPoint());
}
} catch (Exception ex) {
System.out.println("Something terrible happened with loading "
+ "and/or setting the window size and position. "
+ "(loadAndSetPositionAndSizeOfWindow) of "
+ this.getClass().getName() + ex);
}
}
public void setMDIHandle (MDIStart mdiStart){
itemExtended.setMDIStart(mdiStart);
}
}
| [
"Bart Jansen@SOSDE49"
] | Bart Jansen@SOSDE49 |
c531b982e733aaf7dbd2a7002a96de73a3fb69d4 | 6baf1fe00541560788e78de5244ae17a7a2b375a | /hollywood/com.oculus.browser-base/sources/org/chromium/chrome/browser/notifications/settings/NotificationSettings.java | 7a4d95d23132d716c3e7f55a8ace9f2bcf5631f9 | [] | no_license | phwd/quest-tracker | 286e605644fc05f00f4904e51f73d77444a78003 | 3d46fbb467ba11bee5827f7cae7dfeabeb1fd2ba | refs/heads/main | 2023-03-29T20:33:10.959529 | 2021-04-10T22:14:11 | 2021-04-10T22:14:11 | 357,185,040 | 4 | 2 | null | 2021-04-12T12:28:09 | 2021-04-12T12:28:08 | null | UTF-8 | Java | false | false | 1,856 | java | package org.chromium.chrome.browser.notifications.settings;
import J.N;
import android.os.Bundle;
import androidx.preference.Preference;
import com.oculus.browser.R;
import org.chromium.chrome.browser.profiles.Profile;
import org.chromium.components.browser_ui.settings.ChromeSwitchPreference;
/* compiled from: chromium-OculusBrowser.apk-stable-281887347 */
public class NotificationSettings extends AbstractC2324eF0 {
public static final /* synthetic */ int G0 = 0;
public Preference H0;
public ChromeSwitchPreference I0;
@Override // defpackage.AbstractComponentCallbacksC3550lS
public void B0() {
boolean z = true;
this.i0 = true;
if (this.I0 != null) {
boolean a2 = AbstractC5056uF0.a();
boolean d = NU0.f8549a.d("prefetch_notification_enabled", true);
ChromeSwitchPreference chromeSwitchPreference = this.I0;
if (!a2 || !d) {
z = false;
}
chromeSwitchPreference.a0(z);
this.I0.K(a2);
this.I0.S(a2 ? R.string.f56240_resource_name_obfuscated_RES_2131952941 : R.string.f56250_resource_name_obfuscated_RES_2131952942);
}
this.H0.S(AbstractC1154Sy.b(6, N.MJSt3Ocq(Profile.b(), 6)));
}
@Override // defpackage.AbstractC2324eF0
public void g1(Bundle bundle, String str) {
AbstractC2870hT0.a(this, R.xml.f76310_resource_name_obfuscated_RES_2132213787);
u().setTitle(R.string.f59140_resource_name_obfuscated_RES_2131953231);
ChromeSwitchPreference chromeSwitchPreference = (ChromeSwitchPreference) f1("content_suggestions");
this.I0 = chromeSwitchPreference;
chromeSwitchPreference.f9480J = new C1381Wp0();
Preference f1 = f1("from_websites");
this.H0 = f1;
f1.j().putString("category", QX0.p(14));
}
}
| [
"[email protected]"
] | |
05fb26cd1aad70beb0755f11509249facb624f51 | afda65607d49070cf980497acd9789dcef64a186 | /src/main/java/net/smartcosmos/edge/things/converter/RestThingResponseToMapConverter.java | a8a008b5ab925af8ace34be3db5e75717c550905 | [
"Apache-2.0"
] | permissive | SMARTRACTECHNOLOGY/smartcosmos-edge-things | 35bbf802407ec18e54e6bf6b14623fbf0bb71df9 | 5987823f965ebf423c38d3ecaedfe6f9470ee94e | refs/heads/master | 2020-04-11T02:09:07.085873 | 2017-01-24T21:17:02 | 2017-01-24T21:17:02 | 61,788,340 | 0 | 1 | null | 2017-01-27T11:49:49 | 2016-06-23T08:27:21 | Java | UTF-8 | Java | false | false | 790 | java | package net.smartcosmos.edge.things.converter;
import java.util.LinkedHashMap;
import java.util.Map;
import org.springframework.core.convert.converter.Converter;
import org.springframework.stereotype.Component;
import net.smartcosmos.edge.things.domain.things.RestThingResponse;
@Component
public class RestThingResponseToMapConverter implements Converter<RestThingResponse, Map<String, Object>> {
@Override
public Map<String, Object> convert(RestThingResponse thingResponse) {
Map<String, Object> map = new LinkedHashMap<>();
map.put("urn", thingResponse.getUrn());
map.put("type", thingResponse.getType());
map.put("tenantUrn", thingResponse.getTenantUrn());
map.put("active", thingResponse.getActive());
return map;
}
}
| [
"[email protected]"
] | |
5702aedd39fd0c66178a24a04480a807b943da4c | 73308ecf567af9e5f4ef8d5ff10f5e9a71e81709 | /jaso83310/src/main/java/com/example/jaso83310/UserService.java | 30450c55ff1d7045434e3b2cb0996ef4410037ff | [] | no_license | yukihane/stackoverflow-qa | bfaf371e3c61919492e2084ed4c65f33323d7231 | ba5e6a0d51f5ecfa80bb149456adea49de1bf6fb | refs/heads/main | 2023-08-03T06:54:32.086724 | 2023-07-26T20:02:07 | 2023-07-26T20:02:07 | 194,699,870 | 3 | 3 | null | 2023-03-02T23:37:45 | 2019-07-01T15:34:08 | Java | UTF-8 | Java | false | false | 1,116 | java | package com.example.jaso83310;
import java.util.List;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
@Transactional
public class UserService {
@Autowired
UserRepository userRepository;
public List<User> findBynameLike(String name){
return userRepository.findBynameLike(name + "%");
}
public List<User> findAll() {
return userRepository.findAll();
}
public void insert(User user) {
userRepository.save(user);
}
public void update(User user) {
userRepository.save(user);
}
public void delete(String id) {
userRepository.deleteById(id);
}
public Optional<User> selectById(String id) {
return userRepository.findById(id);
}
public User Login(String id,String pass) {
User u = userRepository.getById(id);
if (null != u) {
if (u.getPass().equals(pass)) {
return u;
}
} else {
}
return null;
}
}
| [
"[email protected]"
] | |
7f0f2645999a325559c32dc6c34cf58d2438f75e | 1ce7a2d1e8d6f58af86b60e69eb3a993deb5a3fe | /src/main/java/kye/Main.java | 8a8fbea600b9653f23cf325c95ba409bd52ce05c | [] | no_license | KirylPod/Codewars | 234925063aea1b799ac1203720dcb500037dd164 | a91d4d0e13e2d9bc0093e38db1fe811737dad2cd | refs/heads/master | 2020-07-11T06:35:33.780916 | 2019-09-14T15:09:14 | 2019-09-14T15:09:14 | 181,540,391 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,450 | java | package main.java.kye;
import main.java.kye.eight.AreYouPlayingBanjo;
import main.java.kye.eight.TransportationOnVacation;
public class Main {
public static void main(String[] args) {
// CenturyFromYear.century(1705);
// System.out.println(NoZerosForHeros.noBoringZeros(0));
// System.out.println(TheSupermarketQueue.solveSuperMarketQueue(new int[] { 2, 3, 4, 5 }, 2));
// System.out.println(FakeBinary.fakeBin("123456789"));
// System.out.println(TransportationOnVacation.rentalCarCost(4));
System.out.println(AreYouPlayingBanjo.areYouPlayingBanjo("rar"));
// System.out.println(SentenceSmash.smash(new String[] { "Bilal", "Djaghout" }));
// StringyStrings.stringy(3);
// AlternativeString.toAlternativeString("altERnaTIng cAsE");
// DNAtoRNAConversion.dnaToRna("TTTT");
//
// FindMaximumAndMinimumValues.min(new int[]{-52, 56, 30, 29, -54, 0, -110});
// FindMaximumAndMinimumValues.max(new int[]{4, 6, 2, 1, 9, 63, -134, 566});
// System.out.println(HumanReadableDurationFormat.formatDuration(1));
// System.out.println(DisemvowelTrolls.disemvowel("What are you, a communist?"));
// int[] input = new int[]{-1, -2, -3, -4, -5};
// Arrays.toString(InvertValues.invert(input));
// TortoiseRacing.race(720, 850, 70);
// FactorialDecomposition.decomp(12);
// System.out.println(DuckDuckGoose.duckDuckGoose(new Player[]{"a", "b", "c", "d"}, 1));
// System.out.println(CountOddNumbersBelow.oddCount(123587024));
// FindOdd.findIt(new int[]{1,1,3,2,2,3,3,3,3});
// DuplicateEncoder.encode("rrEced");
// Line.Tickets(new int[] {25,100,50});
// JadenCase.toJadenCase(null);
// Index index = new Index();
// System.out.println(index.findEvenIndex(new int[]{1,2,3,4,3,2,1}));
// Order.order("is2 Thi1s T4est 3a");
// Persist.persistence(25);
// SpinWords spinWords = new SpinWords();
// spinWords.spinWords("Just gniddik [ereht is llits] one more");
// int[] exampleTest1 = {Integer.MAX_VALUE, 0, 1};
// System.out.println((FindOutlier.find(exampleTest1)));
// MexicanWave.wave(" gap ");
// Sid.howMuchILoveYou(21);
// System.out.println(LongestConsec.longestConsec(new String[] {"zone", "abigail", "theta", "form", "libe", "zas", "theta", "abigail"}, 2));
// Hernia.returnHerni(new int[] {3,4,4,7,7}, 3);
// long start = System.nanoTime();
// System.out.println(SumDigPower.sumDigPow(1, 25000000));
// long finish = System.nanoTime();
// System.out.println((double)(finish - start)/1000000000);
// StrayNum.stray(new int []{5, 5, 5, 2, 5, 5, 5});
// System.out.println(Printer.printerError("aaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbmmmmmmmmmmmmmmmmmmmxyz"));
// UniqueNumber.findUniq(new double[]{1, 1, 1, 2, 1, 1});
// int[] r = BuyCar.nbMonths(18000, 32000, 1500, 1.25);
// System.out.println(r[0] + ", " + r[1]);
// String art[] = new String[]{"ABAR 200", "CDXE 500", "BKWR 250", "BTSQ 890", "DRTY 600"};
// String cd[] = new String[] {"A", "B"};
// System.out.println(StockList.stockSummaryStream(art, cd));
// System.out.println(TenMinWalk.isValid(new char[] {'w','e','w','e','w','e','w','e','w','e','w','e'}));
// System.out.println(DirReduction.dirReduc(new String[]{"NORTH", "SOUTH", "SOUTH", "EAST", "WEST", "NORTH"}));
// Player[] players = makePlayerArr(new String[] {"a", "b", "c", "d", "c", "e", "f", "g", "h", "z"});
// DuckDuckGoose.duckDuckGoose(players, 10);
//
// private Player[] makePlayerArr(String[] names) {
// Player[] players = new Player[names.length];
// for (int i = 0; i < names.length; i++) {
// players[i] = new Player(names[i]);
// }
// return players;
// }
// new Dubstep().SongDecoder("RWUBWUBWUBLWUB");
// KeepHydrated kh = new KeepHydrated();
// kh.Liters(2);
// ReversedStrings.solution("world");
// ReverseWords.reverseWords("I like eating");
// System.out.println(Max.sequence(new int[]{-2, -1, -3, -4, -1, -2, -1, -5, -4}));
// System.out.println(PigLatin.pigIt("O temporal o mores !"));
}
}
| [
"[email protected]"
] | |
3ba2d2ae714fd2ace48b425f1cbf0e54c969196c | d71e879b3517cf4fccde29f7bf82cff69856cfcd | /ExtractedJars/iRobot_com.irobot.home/javafiles/com/irobot/core/PushNotificationPayloadUtils.java | 1d20cb50f8f5b77a57ddb84c7a1d18c907d2f180 | [
"MIT"
] | permissive | Andreas237/AndroidPolicyAutomation | b8e949e072d08cf6c6166c3f15c9c63379b8f6ce | c1ed10a2c6d4cf3dfda8b8e6291dee2c2a15ee8a | refs/heads/master | 2020-04-10T02:14:08.789751 | 2019-05-16T19:29:11 | 2019-05-16T19:29:11 | 160,739,088 | 5 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,112 | java | // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) annotate safe
package com.irobot.core;
import java.util.concurrent.atomic.AtomicBoolean;
// Referenced classes of package com.irobot.core:
// AssetId
public abstract class PushNotificationPayloadUtils
{
private static final class CppProxy extends PushNotificationPayloadUtils
{
private native void nativeDestroy(long l);
public void destroy()
{
if(!destroyed.getAndSet(true))
//* 0 0:aload_0
//* 1 1:getfield #21 <Field AtomicBoolean destroyed>
//* 2 4:iconst_1
//* 3 5:invokevirtual #37 <Method boolean AtomicBoolean.getAndSet(boolean)>
//* 4 8:ifne 19
nativeDestroy(nativeRef);
// 5 11:aload_0
// 6 12:aload_0
// 7 13:getfield #30 <Field long nativeRef>
// 8 16:invokespecial #39 <Method void nativeDestroy(long)>
// 9 19:return
}
protected void finalize()
{
destroy();
// 0 0:aload_0
// 1 1:invokevirtual #42 <Method void destroy()>
((Object)this).finalize();
// 2 4:aload_0
// 3 5:invokespecial #46 <Method void Object.finalize()>
// 4 8:return
}
private final AtomicBoolean destroyed = new AtomicBoolean(false);
private final long nativeRef;
private CppProxy(long l)
{
// 0 0:aload_0
// 1 1:invokespecial #14 <Method void PushNotificationPayloadUtils()>
// 2 4:aload_0
// 3 5:new #16 <Class AtomicBoolean>
// 4 8:dup
// 5 9:iconst_0
// 6 10:invokespecial #19 <Method void AtomicBoolean(boolean)>
// 7 13:putfield #21 <Field AtomicBoolean destroyed>
if(l == 0L)
//* 8 16:lload_1
//* 9 17:lconst_0
//* 10 18:lcmp
//* 11 19:ifne 32
{
throw new RuntimeException("nativeRef is zero");
// 12 22:new #23 <Class RuntimeException>
// 13 25:dup
// 14 26:ldc1 #25 <String "nativeRef is zero">
// 15 28:invokespecial #28 <Method void RuntimeException(String)>
// 16 31:athrow
} else
{
nativeRef = l;
// 17 32:aload_0
// 18 33:lload_1
// 19 34:putfield #30 <Field long nativeRef>
return;
// 20 37:return
}
}
}
public PushNotificationPayloadUtils()
{
// 0 0:aload_0
// 1 1:invokespecial #11 <Method void Object()>
// 2 4:return
}
public static native AssetId assetId(String s);
public static native int errorCode(String s);
public static native int missionId(String s);
public static native String persistentMapId(String s);
public static native String persistentMapVersionId(String s);
public static native String sku(String s);
public static native int stateCode(String s);
}
| [
"[email protected]"
] | |
3daa8d5b777948f817d44b47efa35e7d387df6fa | f43f5483e65436395ad049c0ae9c708644ee5bb1 | /Account-Maker-PrizeGen-1/src/main/java/com/bae/controller/PrizeGenController.java | 156330c64b539b9cb65241cf72093f0c9535de2f | [] | no_license | JoeBenRob/Account-Maker | 46834ecdc911d0f9dae654e494fd54421d4c9f65 | 9178b011dfed9d25e6f7dd1c6a612ee205a9b342 | refs/heads/master | 2020-07-01T06:40:24.386154 | 2019-08-08T09:20:03 | 2019-08-08T09:20:03 | 201,078,254 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 896 | java | package com.bae.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.bae.service.PrizeGenService;
@RestController
@RequestMapping("/PrizeGen")
public class PrizeGenController {
private PrizeGenService service;
@Autowired
public PrizeGenController(PrizeGenService service) {
this.service = service;
}
public PrizeGenController() {
}
@GetMapping("/PrizeGen/{num}")
public ResponseEntity<String> getPrize(@PathVariable String num) {
return new ResponseEntity<>(service.getPrize(num), HttpStatus.OK);
}
}
| [
"[email protected]"
] | |
175e90d0cf6d30b0f67415a5dddfc81b6d5086fb | b9bea8ffd1cbe88fe3d84cfd8b0c4dae6faf43e5 | /graphql-maven-plugin-logic/src/main/resources/templates/server_WebSocketConfig.vm.java | 559c517de55bba6640468fe6ad8dc1a652172d74 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | graphql-java-generator/graphql-maven-plugin-project | 5638a108449461fe5a9f0bc72b1b8f84c271388e | 5d33ccc266383be06bd4455406f6032b42926f6f | refs/heads/master_2.x | 2023-08-25T10:14:13.419820 | 2023-08-19T16:13:55 | 2023-08-19T17:15:32 | 176,287,522 | 107 | 49 | MIT | 2023-08-15T17:45:36 | 2019-03-18T13:05:23 | Java | UTF-8 | Java | false | false | 2,198 | java | /** Generated by the default template from graphql-java-generator */
package ${packageUtilName};
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
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.web.socket.config.annotation.EnableWebSocket;
import org.springframework.web.socket.config.annotation.WebSocketConfigurer;
import org.springframework.web.socket.config.annotation.WebSocketHandlerRegistry;
import org.springframework.web.socket.server.standard.ServletServerContainerFactoryBean;
import com.graphql_java_generator.server.util.GraphQlWebSocketHandler;
import graphql.schema.GraphQLSchema;
@Configuration
@EnableWebSocket
@SuppressWarnings("unused")
public class WebSocketConfig implements WebSocketConfigurer {
protected Logger logger = LoggerFactory.getLogger(WebSocketConfig.class);
private final GraphQLSchema graphQLSchema;
private final GraphQLWiring graphQLWiring;
// This will search to the graphql.url property, in the application.properties or application.yml file.
// IT defaults to "graphql"
@Value("/${dollar}{graphql.url:graphql}")
private String url;
@Autowired
public WebSocketConfig(GraphQLWiring graphQLWiring, GraphQLSchema graphQLSchema) {
this.graphQLWiring = graphQLWiring;
this.graphQLSchema = graphQLSchema;
}
@Bean
public ServletServerContainerFactoryBean createWebSocketContainer() {
logger.trace("Creating ServletServerContainerFactoryBean");
ServletServerContainerFactoryBean container = new ServletServerContainerFactoryBean();
// container.setMaxTextMessageBufferSize(8192);
// container.setMaxBinaryMessageBufferSize(8192);
return container;
}
@Override
public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {
logger.debug("Registering WebSocketHandler for URL {}", url);
// registry.addHandler(new WebSocketHandler(graphQLWiring, graphQLSchema), url).setAllowedOrigins("*");
registry.addHandler(new GraphQlWebSocketHandler(graphQLSchema), url).setAllowedOrigins("*");
}
}
| [
"[email protected]"
] | |
6a3ca40579671551cb8374ffa3fb3792c26995ce | 24681f84a5dcf08b2391b3cd9100f57d6c2656e5 | /admin-dashboard/src/main/java/it/valeriovaudi/admindashboard/AdminDashboardApplication.java | ca9591260fec2a1790283d314db6ea20a54a9cc1 | [] | no_license | mrFlick72/cloud-native-infrastructure | 0a26c01a7b49e38e2275e07ea4212b2c9d0f018f | e8ec6433f548a77b2ee8f15b0e92bfb66d621cb0 | refs/heads/master | 2021-07-04T23:08:35.328526 | 2020-11-12T19:34:39 | 2020-11-12T19:34:39 | 196,722,459 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,225 | java | package it.valeriovaudi.admindashboard;
import de.codecentric.boot.admin.server.config.EnableAdminServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.annotation.Order;
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;
@EnableAdminServer
@SpringBootApplication
public class AdminDashboardApplication {
public static void main(String[] args) {
SpringApplication.run(AdminDashboardApplication.class, args);
}
}
@EnableWebSecurity
class SecurityConfig extends WebSecurityConfigurerAdapter {
protected void configure(HttpSecurity http) throws Exception {
http.csrf().disable()
.authorizeRequests().antMatchers("/actuator/**").permitAll()
.and()
.authorizeRequests().anyRequest().authenticated()
.and().oauth2Login().and().logout();
}
} | [
"[email protected]"
] | |
6f27817a844cbc79d1ca4358658a123538d5f109 | 9db3b3baec2fdc7b93bd268595d127996b28e44b | /src/main/java/org/web3j/protocol/http/HttpService.java | a48d3186d4697556003366140e9d8b849de1768f | [
"Apache-2.0"
] | permissive | h2mch/web3j | 9f2831f15ca0f499e9401976619036e1ffd38efd | 3c6f609c7ce43c3c8655fac436ed487aa787e5b5 | refs/heads/master | 2023-08-06T21:19:38.756059 | 2017-05-14T22:30:43 | 2017-05-14T22:30:43 | 75,410,621 | 0 | 0 | NOASSERTION | 2023-08-01T22:44:27 | 2016-12-02T16:08:05 | Java | UTF-8 | Java | false | false | 2,900 | java | package org.web3j.protocol.http;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.ByteArrayEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.message.BasicHeader;
import org.web3j.protocol.Service;
import org.web3j.protocol.core.Request;
import org.web3j.protocol.core.Response;
/**
* HTTP implementation of our services API.
*/
public class HttpService extends Service {
public static final String DEFAULT_URL = "http://localhost:8545/";
private CloseableHttpClient httpClient;
private final String url;
public HttpService(String url, CloseableHttpClient httpClient) {
this.url = url;
this.httpClient = httpClient;
}
public HttpService(String url) {
this(url, HttpClients.custom().setConnectionManagerShared(true).build());
}
public HttpService() {
this(DEFAULT_URL);
}
protected void setHttpClient(CloseableHttpClient httpClient) {
this.httpClient = httpClient;
}
@Override
public <T extends Response> T send(
Request request, Class<T> responseType) throws IOException {
byte[] payload = objectMapper.writeValueAsBytes(request);
HttpPost httpPost = new HttpPost(this.url);
httpPost.setEntity(new ByteArrayEntity(payload));
Header[] headers = buildHeaders();
httpPost.setHeaders(headers);
ResponseHandler<T> responseHandler = getResponseHandler(responseType);
try {
return httpClient.execute(httpPost, responseHandler);
} finally {
httpClient.close();
}
}
private Header[] buildHeaders() {
List<Header> headers = new ArrayList<>();
headers.add(new BasicHeader("Content-Type", "application/json; charset=UTF-8"));
addHeaders(headers);
return headers.toArray(new Header[0]);
}
protected void addHeaders(List<Header> headers) { }
public <T extends Response> ResponseHandler<T> getResponseHandler(Class<T> type) {
return response -> {
int status = response.getStatusLine().getStatusCode();
if (status >= 200 && status < 300) {
HttpEntity entity = response.getEntity();
if (entity != null) {
return objectMapper.readValue(response.getEntity().getContent(), type);
} else {
return null;
}
} else {
throw new ClientProtocolException("Unexpected response status: " + status);
}
};
}
}
| [
"[email protected]"
] | |
66b47a666b37b98243ce920fcb3edf738baa11b5 | b2096124ef6f5bee511b1410e14acf3477baad33 | /src/main/java/com/mansep/agenda/service/MedicalBuildingService.java | e836159efffe903cfcd19576a72e81bb1e08eebc | [] | no_license | mansep/agenda-medica-api | be25bfc3b0f0cfda9fe811f26006729c8bee8fee | e0a8a636f78c724057755eb1b1ad00b65f058ae9 | refs/heads/master | 2022-07-10T01:59:14.467413 | 2020-05-18T07:09:12 | 2020-05-18T07:09:12 | 255,127,550 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 809 | java | package com.mansep.agenda.service;
import java.util.List;
import com.mansep.agenda.dto.MedicalBuildingDto;
import com.mansep.agenda.entity.MedicalBuilding;
import com.mansep.agenda.exception.BadRequestException;
import com.mansep.agenda.exception.NotFoundException;
public interface MedicalBuildingService {
MedicalBuilding create(MedicalBuildingDto mBuilding) throws BadRequestException, Exception;
MedicalBuilding update(Long id, MedicalBuildingDto mBuilding) throws NotFoundException;
List<MedicalBuilding> findAll();
void delete(Long id) throws NotFoundException;
MedicalBuilding findOne(String code) throws NotFoundException;
List<MedicalBuilding> findByIdMedicalCenter(Long id) throws NotFoundException;
MedicalBuilding findById(Long id) throws NotFoundException;
} | [
"[email protected]"
] | |
0281d38c3c45ee2abe3de76de20ae0c315e98cba | 5d0abf65eb71158e8a3fdbacffde60deb06fc3c5 | /main/src/main/java/org/mobilitydata/gtfsvalidator/validator/StopTimeArrivalAndDepartureTimeValidator.java | 0059ec9c66983b5097116091114e68aa26ad650b | [
"Apache-2.0"
] | permissive | talbilotfi1983/gtfs-validator | 96c6c38c8e78fb9476b651333fc141052707aff1 | 836d94c32edc75a592b0b0550aadfc9a2452fe22 | refs/heads/master | 2023-06-29T20:33:56.812776 | 2021-07-29T18:01:13 | 2021-07-29T18:01:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,994 | java | /*
* Copyright 2020 Google LLC
*
* 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.mobilitydata.gtfsvalidator.validator;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Multimaps;
import java.util.List;
import javax.inject.Inject;
import org.mobilitydata.gtfsvalidator.annotation.GtfsValidator;
import org.mobilitydata.gtfsvalidator.annotation.SchemaExport;
import org.mobilitydata.gtfsvalidator.notice.NoticeContainer;
import org.mobilitydata.gtfsvalidator.notice.SeverityLevel;
import org.mobilitydata.gtfsvalidator.notice.ValidationNotice;
import org.mobilitydata.gtfsvalidator.table.GtfsStopTime;
import org.mobilitydata.gtfsvalidator.table.GtfsStopTimeTableContainer;
import org.mobilitydata.gtfsvalidator.table.GtfsStopTimeTableLoader;
import org.mobilitydata.gtfsvalidator.type.GtfsTime;
/**
* Validates departure_time and arrival_time fields in "stop_times.txt".
*
* <p>Generated notices:
*
* <ul>
* <li>{@link StopTimeWithOnlyArrivalOrDepartureTimeNotice} - a single departure_time or
* arrival_time is defined for a row (both or none are expected)
* <li>{@link StopTimeWithArrivalBeforePreviousDepartureTimeNotice} - prev(arrival_time) <
* curr(departure_time)
* </ul>
*/
@GtfsValidator
public class StopTimeArrivalAndDepartureTimeValidator extends FileValidator {
private final GtfsStopTimeTableContainer table;
@Inject
StopTimeArrivalAndDepartureTimeValidator(GtfsStopTimeTableContainer table) {
this.table = table;
}
@Override
public void validate(NoticeContainer noticeContainer) {
for (List<GtfsStopTime> stopTimeList : Multimaps.asMap(table.byTripIdMap()).values()) {
int previousDepartureRow = -1;
for (int i = 0; i < stopTimeList.size(); ++i) {
GtfsStopTime stopTime = stopTimeList.get(i);
final boolean hasDeparture = stopTime.hasDepartureTime();
final boolean hasArrival = stopTime.hasArrivalTime();
if (hasArrival != hasDeparture) {
noticeContainer.addValidationNotice(
new StopTimeWithOnlyArrivalOrDepartureTimeNotice(
stopTime.csvRowNumber(),
stopTime.tripId(),
stopTime.stopSequence(),
hasArrival
? GtfsStopTimeTableLoader.ARRIVAL_TIME_FIELD_NAME
: GtfsStopTimeTableLoader.DEPARTURE_TIME_FIELD_NAME));
}
if (hasArrival
&& previousDepartureRow != -1
&& stopTime
.arrivalTime()
.isBefore(stopTimeList.get(previousDepartureRow).departureTime())) {
noticeContainer.addValidationNotice(
new StopTimeWithArrivalBeforePreviousDepartureTimeNotice(
stopTime.csvRowNumber(),
stopTimeList.get(previousDepartureRow).csvRowNumber(),
stopTime.tripId(),
stopTime.arrivalTime(),
stopTimeList.get(previousDepartureRow).departureTime()));
}
if (hasDeparture) {
previousDepartureRow = i;
}
}
}
}
/**
* Two {@code GtfsTime} are out of order
*
* <p>Severity: {@code SeverityLevel.ERROR}
*/
static class StopTimeWithArrivalBeforePreviousDepartureTimeNotice extends ValidationNotice {
@SchemaExport
StopTimeWithArrivalBeforePreviousDepartureTimeNotice(
long csvRowNumber,
long prevCsvRowNumber,
String tripId,
GtfsTime arrivalTime,
GtfsTime departureTime) {
super(
ImmutableMap.of(
"csvRowNumber", csvRowNumber,
"prevCsvRowNumber", prevCsvRowNumber,
"tripId", tripId,
"departureTime", departureTime.toHHMMSS(),
"arrivalTime", arrivalTime.toHHMMSS()),
SeverityLevel.ERROR);
}
}
/**
* Missing `stop_times.arrival_time` or `stop_times.departure_time`
*
* <p>Severity: {@code SeverityLevel.ERROR}
*/
static class StopTimeWithOnlyArrivalOrDepartureTimeNotice extends ValidationNotice {
@SchemaExport
StopTimeWithOnlyArrivalOrDepartureTimeNotice(
long csvRowNumber, String tripId, int stopSequence, String specifiedField) {
super(
ImmutableMap.of(
"csvRowNumber", csvRowNumber,
"tripId", tripId,
"stopSequence", stopSequence,
"specifiedField", specifiedField),
SeverityLevel.ERROR);
}
}
}
| [
"[email protected]"
] | |
1dcf84d4c9446224d7381f0fe6348ee2932d0197 | a2b7580d42ed29123ca3e9c7231d4adc5c6d57e1 | /Orientação a Objetos/Polimorfismo/Instrumento/Baixo.java | 6f2353f2440ee8021dcd5f2b79297681cf179d61 | [] | no_license | cristiancechinel/ExerciciosResolvidosJava | 713e0fe245fef5696f2ae6503aed6962620e9d27 | 3b1c21604771f2623e59773fb2472729ee83af70 | refs/heads/master | 2020-07-17T04:33:35.929434 | 2019-09-12T20:08:55 | 2019-09-12T20:08:55 | 205,943,947 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 293 | java |
public class Baixo extends InstrumentoCorda {
public Baixo() {
this.setNumeroCorda(4);
}
public Baixo(int numeroDeCordas) {
this.setNumeroCorda(numeroDeCordas);
}
@Override
public void tocar() {
System.out.println("Tocando baixo");
}
}
| [
"[email protected]"
] | |
0c192cdd3b61f9bd325a76b7359e841f69758b69 | bf8a94a326039bff8f0ea283aeab437953151cde | /miniproject_swing_parkking/carParkingRef/src/FileManeger/FileSystem.java | 81d96d82b4894071d0bd397bb5fe485ec07f5b9d | [] | no_license | tilsong/mini_project_Swing | ed4756437f581633b3c3d033a9acfbb008531580 | 9985a64131c66acbf80f5115073184515ddf60bd | refs/heads/main | 2023-03-14T00:32:14.260053 | 2021-03-11T16:37:12 | 2021-03-11T16:37:12 | 344,102,110 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,586 | java | package FileManeger;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import Information.ParkCarInfo;
public class FileSystem {
public void connection(ParkCarInfo ref){
Connection conn = null;
PreparedStatement pstmt = null;
try {
Class.forName("oracle.jdbc.driver.OracleDriver");
String URL = "jdbc:oracle:thin:@localhost:1521:xe";
conn = DriverManager.getConnection(URL, "MINI", "1234");
String sql = "INSERT INTO PARKING(PARKINGCODE, CARINTIME, PARKINGNUMBER, CARNUM)"
+ " VALUES (? ,?, ? ,? )";
pstmt = conn.prepareStatement(sql);
pstmt.setInt(1, ref.getParkingCode());
pstmt.setString(2, ref.getCarInTime());
pstmt.setInt(3, ref.getparkPlaceNum());
pstmt.setString(4, ref.getcarNum());
if (pstmt.executeUpdate() == 1)
System.out.println("올바르게 입력됬다");
else
System.out.println("제대로 입력되지 않았음");
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
if (pstmt!= null && !pstmt.isClosed()) {
pstmt.close();
}else {
}
if (conn != null && !conn.isClosed()) {
conn.close();
} else {
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
} | [
"[email protected]"
] | |
2a5d2911e4ce7b4c27d5295bba2d99d8f3e26a6b | 26310295b7311d42f1345f41edb569b86fecd54f | /rewrite-java-repairer/src/main/java/org/openrewrite/java/search/FindAnnotations.java | cc913e3bf497f441b6178e0c45b434ce3f27439a | [
"Apache-2.0"
] | permissive | shadowxiehao/repairer-gradle-plugin | 387dfb0532d706a78e047943207bba0642c5542c | 4a7ffdd9c9d91e46fbd69be4b3c88a1e909f4bf3 | refs/heads/master | 2023-04-15T21:27:33.425004 | 2021-04-22T19:52:52 | 2021-04-22T19:52:52 | 360,272,356 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,221 | java | /*
* Copyright 2020 the original author or authors.
* <p>
* 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
* <p>
* https://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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.openrewrite.java.search;
import lombok.EqualsAndHashCode;
import lombok.Value;
import org.openrewrite.ExecutionContext;
import org.openrewrite.Option;
import org.openrewrite.Recipe;
import org.openrewrite.TreeVisitor;
import org.openrewrite.java.AnnotationMatcher;
import org.openrewrite.java.JavaIsoVisitor;
import org.openrewrite.java.marker.JavaSearchResult;
import org.openrewrite.java.tree.J;
import java.util.HashSet;
import java.util.Set;
import java.util.UUID;
import static org.openrewrite.Tree.randomId;
@EqualsAndHashCode(callSuper = true)
@Value
public class FindAnnotations extends Recipe {
/**
* An annotation pattern, expressed as a pointcut expression.
* See {@link AnnotationMatcher} for syntax.
*/
@Option(displayName = "Annotation pattern",
description = "An annotation pattern, expressed as a pointcut expression.",
example = "@java.lang.SuppressWarnings(\"deprecation\")")
String annotationPattern;
UUID id = randomId();
@Override
public String getDisplayName() {
return "Find annotations";
}
@Override
public String getDescription() {
return "Find all annotations matching the annotation pattern.";
}
@Override
protected TreeVisitor<?, ExecutionContext> getVisitor() {
AnnotationMatcher annotationMatcher = new AnnotationMatcher(annotationPattern);
return new JavaIsoVisitor<ExecutionContext>() {
@Override
public J.Annotation visitAnnotation(J.Annotation annotation, ExecutionContext ctx) {
J.Annotation a = super.visitAnnotation(annotation, ctx);
if (annotationMatcher.matches(annotation)) {
a = a.withMarkers(a.getMarkers().addOrUpdate(new JavaSearchResult(id, FindAnnotations.this)));
}
return a;
}
};
}
public static Set<J.Annotation> find(J j, String annotationPattern) {
AnnotationMatcher annotationMatcher = new AnnotationMatcher(annotationPattern);
JavaIsoVisitor<Set<J.Annotation>> findVisitor = new JavaIsoVisitor<Set<J.Annotation>>() {
@Override
public J.Annotation visitAnnotation(J.Annotation annotation, Set<J.Annotation> as) {
if (annotationMatcher.matches(annotation)) {
as.add(annotation);
}
return super.visitAnnotation(annotation, as);
}
};
Set<J.Annotation> as = new HashSet<>();
findVisitor.visit(j, as);
return as;
}
}
| [
"[email protected]"
] | |
526aa8b657310d74f9b2482325deebad20086649 | 7ba951e9dfc18ac5fa6c39d8436216e535c84582 | /Simulator/src/pagereplacement.java | dde7daeed84a71f880b15b8a494ba918329d8be5 | [] | no_license | umeshsandeep/Os_Simulator | 7970beabe61f10f47a14a67e5da451de3cb45753 | 929f0b43abb2a4e5ce439248ecd8e251f7b1af41 | refs/heads/master | 2021-01-10T02:07:32.695962 | 2015-12-22T09:40:26 | 2015-12-22T09:40:26 | 48,423,349 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,509 | java | //package page;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JTextField;
import java.awt.Color;
public class pagereplacement {
private JFrame frame;
private JTextField text;
private JTextField text2;
private JTextField text3;
/**
* Launch the application.
*/
public static void DS() {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
pagereplacement window = new pagereplacement();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public pagereplacement() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.getContentPane().setBackground(Color.WHITE);
frame.setBounds(100, 100, 764, 501);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
JLabel lblNewLabel = new JLabel("Page Replacement Algorithms");
lblNewLabel.setFont(new Font("Tahoma", Font.BOLD, 20));
lblNewLabel.setBounds(227, 11, 313, 50);
frame.getContentPane().add(lblNewLabel);
text = new JTextField();
text.setBounds(290, 278, 201, 44);
frame.getContentPane().add(text);
text.setColumns(10);
JLabel lblInput = new JLabel(" INPUT :");
lblInput.setFont(new Font("Tahoma", Font.BOLD, 13));
lblInput.setBounds(160, 288, 68, 23);
frame.getContentPane().add(lblInput);
text2 = new JTextField();
text2.setBounds(290, 346, 204, 44);
frame.getContentPane().add(text2);
text2.setColumns(10);
JLabel lblOutput = new JLabel("OUTPUT :");
lblOutput.setFont(new Font("Tahoma", Font.BOLD, 13));
lblOutput.setBounds(160, 360, 68, 14);
frame.getContentPane().add(lblOutput);
text3 = new JTextField();
text3.setBounds(293, 210, 100, 38);
frame.getContentPane().add(text3);
text3.setColumns(10);
JLabel lblFrame = new JLabel("Frame Size:");
lblFrame.setFont(new Font("Tahoma", Font.BOLD, 15));
lblFrame.setBounds(135, 204, 123, 46);
frame.getContentPane().add(lblFrame);
JButton button = new JButton("FIFO");
button.setFont(new Font("Tahoma", Font.BOLD, 15));
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String Val,v="";
Val = text.getText();
convert z = new convert(Val);
int[] L= z.method1();
int h = Integer.parseInt(text3.getText());
FIFO a1= new FIFO(h,L);
int r = a1.method();
v=v+""+r;
//a1.Get(L,L.length);
text2.setText(v);
}
});
button.setBounds(61, 98, 119, 50);
frame.getContentPane().add(button);
JButton button_1 = new JButton("LRU");
button_1.setFont(new Font("Tahoma", Font.BOLD, 15));
button_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String Val,v="";
Val = text.getText();
convert z = new convert(Val);
int[] L= z.method1();
int h = Integer.parseInt(text3.getText());
LRU a1= new LRU(h,L);
int r = a1.method();
v=v+""+r;
//a1.Get(L,L.length);
text2.setText(v);
}
});
button_1.setBounds(238, 98, 100, 50);
frame.getContentPane().add(button_1);
JButton button_2 = new JButton("Optimal");
button_2.setFont(new Font("Tahoma", Font.BOLD, 15));
button_2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String Val,v="";
Val = text.getText();
convert z = new convert(Val);
int[] L= z.method1();
int h = Integer.parseInt(text3.getText());
OPT a1= new OPT(h,L);
int r = a1.method();
v=v+""+r;
//a1.Get(L,L.length);
text2.setText(v);
}
});
button_2.setBounds(401, 98, 100, 50);
frame.getContentPane().add(button_2);
Icon I23 = new ImageIcon("back.jpg");
JButton btnBack = new JButton(I23);
btnBack.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
Home x=new Home();
x.Method();
frame.setVisible(false);
}
});
btnBack.setBounds(32, 35, 101, 50);
frame.getContentPane().add(btnBack);
}
}
| [
"[email protected]"
] | |
5c2bc0736dac8c9daa78ac1ff01f3e5fcb6bd532 | 287dbb340765a05fac6047e4fa9e7d6277696596 | /src/main/java/me/twister915/punishments/model/storage/mongodb/MongoConnection.java | d4237e5bd532c2bf4bd1c6e2c1794d7b24ef64b8 | [
"Apache-2.0"
] | permissive | Twister915/TwistedPunishments | d807329eb0213f433257266f44b1c3d31464e041 | 048757098c75d44c6da48fc51d5bd38ee87d7121 | refs/heads/master | 2021-01-20T09:12:51.766304 | 2014-07-25T22:04:44 | 2014-07-25T22:04:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,989 | java | /******************************************************************************
Copyright 2014 Joey Sacchini *
*
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.twister915.punishments.model.storage.mongodb;
import com.mongodb.DB;
import lombok.Data;
import me.twister915.punishments.model.PunishException;
import me.twister915.punishments.model.Punishment;
import me.twister915.punishments.model.PunishmentFactory;
import me.twister915.punishments.model.manager.BaseStorage;
import me.twister915.punishments.model.storage.DBConnection;
@Data
public final class MongoConnection implements DBConnection {
final String prefix;
final DB database;
@Override
public <P extends Punishment> BaseStorage<P> getStorageFor(Class<P> punishmentType, PunishmentFactory<P> factory) throws PunishException {
return new MongoStorage<>(punishmentType, factory, this);
}
@Override
public void onDisable() {
}
}
| [
"[email protected]"
] | |
e9c0c8c259aa878e202b4087f3bffd3e8c84fea6 | a4e456c0d748a4a6717b18be3ed1bbea511e35a4 | /src/main/java/com/yusei/dao/FieldExtendRuleDetailDao.java | 4dfba628842d5fd99344b5a48dc2ce8291fd4481 | [] | no_license | lutwwp/my-custom-flow | cf1da13e9e9c3c92fd4b8f0870797180df5af783 | 5eb4a0e8f9ae85e1bb3fe8208e04f2e6d5f5b889 | refs/heads/master | 2023-06-02T10:26:35.533546 | 2021-06-24T04:21:38 | 2021-06-24T04:21:38 | 379,801,731 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 682 | java |
package com.yusei.dao;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import com.yusei.model.entity.FieldExtendRuleDetail;
/**
* 扩展规则详情表Dao
*
* @author generated by liuqiang
* @date 2020-09-02 13:58:18
*/
@Mapper
public interface FieldExtendRuleDetailDao {
/**
* 批量插入记录,返回插入成功的行数(不插入主键)
*/
int insertBatch(@Param("list") List<FieldExtendRuleDetail> list);
List<FieldExtendRuleDetail> selectListByRuleIdList(@Param("list") List<Long> extendRuleIdList);
int deleteByExtendRuleIdList(@Param("list") List<Long> ruleIdList);
}
| [
"[email protected]"
] | |
be14fdbdf23f3353d8c08878cbcb5ac26ea32b3f | 91fd5d79da06f0315ab4c57c5ab105fccb5e5584 | /src/main/java/check/data/db/domain/Comment.java | 321d258fee605745bfad881f30f0a5b1d731306d | [] | no_license | kakutot/course-work | 2ebe42a57e1b270da6c98e9657a58ab0217b054e | 3154a5cda95ef8ff485f6facdcfc024e5c62b508 | refs/heads/email | 2023-06-08T18:43:48.378199 | 2018-12-15T14:12:10 | 2018-12-15T14:12:10 | 208,457,486 | 0 | 0 | null | 2023-05-23T20:10:51 | 2019-09-14T15:09:59 | JavaScript | UTF-8 | Java | false | false | 2,011 | java | package check.data.db.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.hibernate.validator.constraints.NotEmpty;
import javax.persistence.*;
@Entity
public class Comment {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY )
@Column(name = "id",nullable = false)
public int commentId;
@JsonIgnoreProperties("comments")
@ManyToOne()
@JoinColumn(name="teacher_id", nullable=false)
public Teacher teacher;
@JsonIgnoreProperties("comments")
@ManyToOne()
@JoinColumn(name="user_id", nullable=false)
public User user;
@Column(name = "message",nullable=false)
public String message;
@Column(name = "comment_date",nullable = false)
public String commentDate;
public Comment() {
}
public Comment(Teacher teacher, User user, String message,String commentDate) {
this.teacher = teacher;
this.user = user;
this.message = message;
this.commentDate = commentDate;
}
public int getCommentId() {
return commentId;
}
public void setCommentId(int commentId) {
this.commentId = commentId;
}
public Teacher getTeacher() {
return teacher;
}
public void setTeacher(Teacher teacher) {
this.teacher = teacher;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCommentDate() {
return commentDate;
}
public void setCommentDate(String commentDate) {
this.commentDate = commentDate;
}
@Override
public String toString() {
return "Comment{" +
"commentId=" + commentId +
", message='" + message + '\'' +
", commentDate='" + commentDate + '\'' +
'}';
}
}
| [
"[email protected]"
] | |
d588d57b2b41a9ac5afbe1ece88843bbeb173be9 | 83e81c25b1f74f88ed0f723afc5d3f83e7d05da8 | /core/java/android/text/style/StrikethroughSpan.java | 94560065c3bbfafc42a0f39591d618a11c2ede3b | [
"Apache-2.0",
"LicenseRef-scancode-unicode"
] | permissive | Ankits-lab/frameworks_base | 8a63f39a79965c87a84e80550926327dcafb40b7 | 150a9240e5a11cd5ebc9bb0832ce30e9c23f376a | refs/heads/main | 2023-02-06T03:57:44.893590 | 2020-11-14T09:13:40 | 2020-11-14T09:13:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,310 | java | /*
* Copyright (C) 2006 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 android.text.style;
import android.annotation.NonNull;
import android.os.Parcel;
import android.text.ParcelableSpan;
import android.text.TextPaint;
import android.text.TextUtils;
/**
* A span that strikes through the text it's attached to.
* <p>
* The span can be used like this:
* <pre>{@code
* SpannableString string = new SpannableString("Text with strikethrough span");
*string.setSpan(new StrikethroughSpan(), 10, 23, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);}</pre>
* <img src="{@docRoot}reference/android/images/text/style/strikethroughspan.png" />
* <figcaption>Strikethrough text.</figcaption>
*/
public class StrikethroughSpan extends CharacterStyle
implements UpdateAppearance, ParcelableSpan {
/**
* Creates a {@link StrikethroughSpan}.
*/
public StrikethroughSpan() {
}
/**
* Creates a {@link StrikethroughSpan} from a parcel.
*/
public StrikethroughSpan(@NonNull Parcel src) {
}
@Override
public int getSpanTypeId() {
return getSpanTypeIdInternal();
}
/** @hide */
@Override
public int getSpanTypeIdInternal() {
return TextUtils.STRIKETHROUGH_SPAN;
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(@NonNull Parcel dest, int flags) {
writeToParcelInternal(dest, flags);
}
/** @hide */
@Override
public void writeToParcelInternal(@NonNull Parcel dest, int flags) {
}
@Override
public void updateDrawState(@NonNull TextPaint ds) {
ds.setStrikeThruText(true);
}
}
| [
"[email protected]"
] | |
7bc20e76e0fd114ad5323453a0300fafd2bdd9e8 | ed3cb95dcc590e98d09117ea0b4768df18e8f99e | /project_1_2/src/g/j/Calc_1_2_694.java | 951c10e9ea2c249252eed51f19cd42d91037e0e0 | [] | no_license | chalstrick/bigRepo1 | ac7fd5785d475b3c38f1328e370ba9a85a751cff | dad1852eef66fcec200df10083959c674fdcc55d | refs/heads/master | 2016-08-11T17:59:16.079541 | 2015-12-18T14:26:49 | 2015-12-18T14:26:49 | 48,244,030 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 128 | java | package g.j;
public class Calc_1_2_694 {
/** @return the sum of a and b */
public int add(int a, int b) {
return a+b;
}
}
| [
"[email protected]"
] | |
676cf32d42b143cd50501ae2d43affaf67443e02 | d78dabbe0ccd5b759540d252c6ddf91f4bcd84ec | /imsdk/src/main/java/com/focustech/android/components/mt/sdk/android/service/processor/rsp/RspLoginProcessor.java | 8e14eca7f4c55e0e03de3745b31bf5e1c53271f1 | [] | no_license | fangyangdegezi88/Android_MVVM-MVP | 817c6b045f9be4fbf228f8d0f1de6e7e18b33c4c | a7339e21763e9cd525d42c1da6f56d69ca234c48 | refs/heads/master | 2021-01-21T12:46:27.305035 | 2017-09-01T09:56:44 | 2017-09-01T09:56:44 | 102,095,569 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,310 | java | package com.focustech.android.components.mt.sdk.android.service.processor.rsp;
import com.focustech.android.commonlibs.capability.log.LogFormat;
import com.focustech.android.components.mt.sdk.android.ContextHolder;
import com.focustech.android.components.mt.sdk.android.service.SessionManager;
import com.focustech.android.components.mt.sdk.android.service.processor.AbstractMessageProcessor;
import com.focustech.android.components.mt.sdk.android.service.processor.req.ReqLoginProcessor;
import com.focustech.android.components.mt.sdk.support.cache.SharedPrefLoginInfo;
import com.focustech.android.components.mt.sdk.util.AsyncLoginControlContent;
import com.focustech.tm.open.sdk.messages.TMMessage;
import com.focustech.tm.open.sdk.messages.protobuf.Messages;
/**
* 登陆rsp响应
*
* @author zhangxu
*/
public class RspLoginProcessor extends AbstractMessageProcessor {
public void onMessage(TMMessage message) throws Throwable {
Messages.LoginRsp rsp = Messages.LoginRsp.parseFrom(message.getBody());
if (logger.isInfoEnabled()) {
logger.info(LogFormat.format(LogFormat.LogModule.SERVICE, LogFormat.Operation.PROCESS, "{}"), rsp);
}
// 这里只关心失败,成功后由 UserInfoRsp返回再通知业务方
if (rsp.getCode() != 0) {
operationComplete(message);
SharedPrefLoginInfo sharedPrefLoginInfo = new SharedPrefLoginInfo(ContextHolder.getAndroidContext(), SharedPrefLoginInfo.LOGIN_INFO_FILE);
sharedPrefLoginInfo.saveString("loginInfo", "");
if (rsp.getCode() == 10001) {
SessionManager.getInstance().setIsUserOrPsdError(true);
}
if (getBizInvokeCallback() != null) {
AsyncLoginControlContent.cleanContent(ReqLoginProcessor.LOGIN_KEY);
logger.info("ReqLoginProcessor clean login control context");
getBizInvokeCallback().privateLoginFailed(rsp.getCode());
} else {
AsyncLoginControlContent.cleanContent(ReqLoginProcessor.LOGIN_KEY);
logger.info("clean login control context");
}
} else {
SessionManager.getInstance().newSession(rsp.getUserId(), rsp.getToken(), rsp.getPlantData(), message.getHead());
}
}
}
| [
"[email protected]"
] | |
7c6ffbaf463df797b6f6dabaf1d79dcf27cc2978 | 2755f18ecfd66368cfdae440b0cb023657b8eaab | /JavaApplication9/src/javaapplication9/Sensor.java | 539c90e0f861b3fb430ad4ae50e4cbc5c08681b0 | [] | no_license | dottore1/Bygningscontroller | 34e5e29bae1b0fb2ae894c77a7eabd95a391a6ba | 17b4f1a9b1b60176135fd1050a3cccad78474851 | refs/heads/master | 2020-09-12T14:02:30.276674 | 2019-11-19T08:51:47 | 2019-11-19T08:51:47 | 222,447,190 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 418 | 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 javaapplication9;
public abstract class Sensor extends Unit {
private boolean isOutside;
public Sensor(boolean isOutside, String name, int id) {
super(name, id);
this.isOutside = isOutside;
}
}
| [
"[email protected]"
] | |
71a63087ead793a48a740a9f512303418d71f1e8 | b2b5185631ddf3f582f78065247caa8ff85919c9 | /tags/release-2.1/src/DVN-EJB/src/java/edu/harvard/iq/dvn/core/study/StudyServiceLocal.java | 2338f6023fa34e10cfe120384c90e0b70900b1b4 | [] | no_license | dvn/dvn-svn-import-test5 | bd606b663c8a061278b4164b9b21078667c1675e | 09ef67d666fbd8860b8c233bedf2529f39c59bbd | refs/heads/master | 2016-09-06T14:43:08.202121 | 2013-01-04T20:00:13 | 2013-01-04T20:00:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,792 | java | /*
* Dataverse Network - A web application to distribute, share and analyze quantitative data.
* Copyright (C) 2007
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program; if not, see http://www.gnu.org/licenses
* or write to the Free Software Foundation,Inc., 51 Franklin Street,
* Fifth Floor, Boston, MA 02110-1301 USA
*/
package edu.harvard.iq.dvn.core.study;
import edu.harvard.iq.dvn.core.admin.VDCUser;
import edu.harvard.iq.dvn.core.vdc.VDC;
import java.io.File;
import java.io.IOException;
import java.sql.Timestamp;
import java.util.Date;
import java.util.List;
import java.util.Map;
import javax.ejb.Local;
import javax.xml.bind.JAXBException;
/**
* This is the business interface for NewSession enterprise bean.
*/
@Local
public interface StudyServiceLocal extends java.io.Serializable {
/**
* Add given Study to persistent storage.
*/
// Comments for breaking this into multiple classes
//
// 1= Retrieval
// 2= Update
// 3= Import/Export
// 4= File related
// ?= not sure if this is needed
// x= no longer needed
//?
public void exportStudyFilesToLegacySystem(String lastUpdateTime, String authority) throws IOException, JAXBException;
// comment out - not used public void addStudy(Study study);
// 1
public Study getStudy(Long studyId);
// 1
public Study getStudyByGlobalId(String globalId);
// 1 (new to this version)
public StudyVersion getStudyVersion(String globalId, Long versionNumber);
public StudyVersion getStudyVersion(Long studyId, Long versionNumber);
public StudyVersion getStudyVersionById(Long versionId);
//1
public Study getStudyByHarvestInfo(VDC vdc, String harvestIdentifier);
//1
public Study getStudyForSearch(Long studyId, Map studyFields);
//2
public void updateStudy(Study study);
public void updateStudyVersion(StudyVersion studyVersion);
//2
public void deleteStudy(Long studyId);
//2
public void deleteStudyInNewTransaction(Long studyId, boolean deleteFromIndex);
//2
public void deleteStudyList(List<Long> studyIds);
//?
public List getStudies();
//1
public List<Long> getAllNonHarvestedStudyIds();
//1
java.util.List getOrderedStudies(List studyIdList, String orderBy);
//?
java.util.List getRecentStudies(Long vdcId, int numResults);
//?1
public List getDvOrderedStudyIds(Long vdcId, String orderBy, boolean ascending );
//?1
public List getDvOrderedStudyIdsByCreator(Long vdcId, Long creatorId, String orderBy, boolean ascending );
//4
public void incrementNumberOfDownloads(Long studyFileId, Long currentVDCId);
//4
public void incrementNumberOfDownloads(Long studyFileId, Long currentVDCId, Date lastDownloadTime);
//4
public RemoteAccessAuth lookupRemoteAuthByHost(String remoteHost);
//4
public List<DataFileFormatType> getDataFileFormatTypes();
//2
String generateStudyIdSequence(String protocol, String authority);
//2
boolean isUniqueStudyId(String userStudyId,String protocol,String authority);
//4
java.lang.String generateFileSystemNameSequence();
//4
boolean isUniqueFileSystemName(String fileSystemName);
//2
List<StudyLock> getStudyLocks();
//2
void removeStudyLock(Long studyId);
//2
void addStudyLock(Long studyId, Long userId, String detail);
//2
void deleteDataVariables(Long dataTableId);
//2
edu.harvard.iq.dvn.core.study.Study saveStudyVersion(StudyVersion studyVersion, Long userId);
//3
edu.harvard.iq.dvn.core.study.Study importHarvestStudy(File xmlFile, Long vdcId, Long userId, String harvestIdentifier);
//3
edu.harvard.iq.dvn.core.study.Study importStudy(File xmlFile, Long harvestFormatTypeId, Long vdcId, Long userId);
//3
edu.harvard.iq.dvn.core.study.Study importStudy(File xmlFile, Long harvestFormatTypeId, Long vdcId, Long userId, List<StudyFileEditBean> filesToUpload);
//3
edu.harvard.iq.dvn.core.study.Study importStudy(File xmlFile, Long harvestFormatTypeId, Long vdcId, Long userId, String harvestIdentifier, List<StudyFileEditBean> filesToUpload);
//1
List getVisibleStudies(List studyIds, Long vdcId);
//1
List getViewableStudies(List<Long> studyIds);
//1
List getViewableStudies(List<Long> studyIds, Long userId, Long ipUserGroupId, Long vdcId);
//3
List getStudyIdsForExport();
//?
public List<Long> getAllStudyIds();
//3
public void exportStudy(Long studyId);
public void exportStudy(Study study);
public void exportStudyToFormat(Long studyId, String exportFormat);
public void exportStudyToFormat(Study study, String exportFormat);
public void exportUpdatedStudies();
public void exportStudies(List<Long> studyIds);
public void exportStudies(List<Long> studyIds, String exportFormat);
//2
public boolean isValidStudyIdString(String studyId);
public void setIndexTime(Long studyId, Date indexTime);
public Timestamp getLastUpdatedTime(Long vdcId);
//1
public long getStudyDownloadCount(Long studyId);
public Long getActivityCount(Long vdcId);
public Long getTotalActivityCount();
//2
public void setReadyForReview(Long studyId);
public void setReadyForReview(Long studyId, String versionNote);
public void setReadyForReview(StudyVersion sv);
public void saveVersionNote(Long studyId, Long versionNumber, String newVersionNote);
public void saveVersionNote(Long studyVersionId, String newVersionNote);
public void setReleased(Long studyId);
public void setReleased(Long studyId, String versionNote);
public void destroyWorkingCopyVersion(Long studyVersionId);
public void deaccessionStudy(StudyVersion studyVersion);
public List getDvOrderedStudyVersionIds(Long vdcId, String orderBy, boolean ascending);
public List getDvOrderedStudyVersionIdsByContributor(Long vdcId, Long contributorId, String orderBy, boolean ascending);
public List getAllStudyVersionIdsByContributor(Long contributorId, String orderBy, boolean ascending);
}
| [
"[email protected]"
] | |
aad13afc53e72d847cf1038150655a176bf621bd | d5f09c7b0e954cd20dd613af600afd91b039c48a | /sources/com/amap/api/mapcore2d/bx.java | d1061737c6c230ebda0d382630863ffd784f2659 | [] | no_license | t0HiiBwn/CoolapkRelease | af5e00c701bf82c4e90b1033f5c5f9dc8526f4b3 | a6a2b03e32cde0e5163016e0078391271a8d33ab | refs/heads/main | 2022-07-29T23:28:35.867734 | 2021-03-26T11:41:18 | 2021-03-26T11:41:18 | 345,290,891 | 5 | 2 | null | null | null | null | UTF-8 | Java | false | false | 339 | java | package com.amap.api.mapcore2d;
import android.graphics.PointF;
import java.util.ArrayList;
import java.util.List;
/* compiled from: TrafSegment */
class bx {
private int a;
private List<PointF> b = new ArrayList();
public List<PointF> a() {
return this.b;
}
public int b() {
return this.a;
}
}
| [
"[email protected]"
] | |
70bd951bbcf8321ff818abc33bab4ab577f07eb9 | 633381a32e915457d9c7f583a45ca377f3b4b3f5 | /src/main/java/com/nguyenhathanhdat/filter/AuthorizationFilter.java | 63c6d9f1c80b65e2de1c6a98bebfd8193d8c11bb | [] | no_license | nguyenhathanhdat260898/ServletJDBCJSP | a6eacf76b3c2fe935a642dee2d4e56607f4196b0 | 8b8157f265670592451a2557f185b2789a674e2d | refs/heads/main | 2023-04-01T22:06:21.086618 | 2021-04-17T04:48:52 | 2021-04-17T04:48:52 | 358,782,953 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,965 | java | package com.nguyenhathanhdat.filter;
import java.io.IOException;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.nguyenhathanhdat.constant.SystemConstant;
import com.nguyenhathanhdat.model.NewModel;
import com.nguyenhathanhdat.model.UserModel;
import com.nguyenhathanhdat.utils.SectionUtil;
public class AuthorizationFilter implements javax.servlet.Filter {
private ServletContext context;
@Override
public void init(FilterConfig filterConfig) throws ServletException {
// TODO Auto-generated method stub
this.context = filterConfig.getServletContext();
}
@Override
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain chain)
throws IOException, ServletException {
// TODO Auto-generated method stub
HttpServletRequest request = (HttpServletRequest) servletRequest;
HttpServletResponse response = (HttpServletResponse) servletResponse;
String url = request.getRequestURI();
if (url.startsWith("/admin")) {
UserModel userModel = (UserModel) SectionUtil.getIntance().getValue(request, "USERMODEL");
if (userModel != null) {
if (userModel.getRole().equals(SystemConstant.ADMIN)) {
chain.doFilter(servletRequest, servletResponse);
}else if(userModel.getRole().equals(SystemConstant.USER)) {
response.sendRedirect(request.getContextPath()+"/dang-nhap?action=login&message=not_permission&alert=danger");
}
} else {
response.sendRedirect(
request.getContextPath() + "/dang-nhap?action=login&message=not_login&alert=danger");
}
} else {
chain.doFilter(servletRequest, servletResponse);
}
}
@Override
public void destroy() {
// TODO Auto-generated method stub
}
}
| [
"[email protected]"
] | |
8974fcd508c6c528fba02913273f8faeddbcc5f2 | a86fd523d6c1dc67501989bcf4dc90218bb48c1f | /GreenPOS/src-erp/com/openbravo/ws/externalsales/ProductPlus.java | 4f347d66a4109504ae9f41fe7f585e61130770b6 | [] | no_license | raccarab/openbravocustom | 173302a4d448dda43d47f89ff092020b2cac57a3 | 2973aefa50331ba082cc8f0c54cd7fde1b273df4 | refs/heads/master | 2021-01-25T10:29:47.334527 | 2012-03-13T17:44:13 | 2012-03-13T17:44:13 | 32,250,738 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,203 | java | /**
* ProductPlus.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
*/
package com.openbravo.ws.externalsales;
import com.openbravo.ws.externalsales.ProductPlus;
public class ProductPlus extends com.openbravo.ws.externalsales.Product implements java.io.Serializable {
private static final long serialVersionUID = 9203746223092L;
private double qtyonhand;
public ProductPlus() {
}
public ProductPlus(
com.openbravo.ws.externalsales.Category category,
java.lang.String description,
java.lang.String ean,
java.lang.String id,
java.lang.String imageUrl,
double listPrice,
java.lang.String name,
java.lang.String number,
double purchasePrice,
com.openbravo.ws.externalsales.Tax tax,
double qtyonhand) {
super(
category,
description,
ean,
id,
imageUrl,
listPrice,
name,
number,
purchasePrice,
tax);
this.qtyonhand = qtyonhand;
}
/**
* Gets the qtyonhand value for this ProductPlus.
*
* @return qtyonhand
*/
public double getQtyonhand() {
return qtyonhand;
}
/**
* Sets the qtyonhand value for this ProductPlus.
*
* @param qtyonhand
*/
public void setQtyonhand(double qtyonhand) {
this.qtyonhand = qtyonhand;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof ProductPlus)) {
return false;
}
ProductPlus other = (ProductPlus) obj;
if (obj == null) {
return false;
}
if (this == obj) {
return true;
}
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = super.equals(obj) &&
this.qtyonhand == other.getQtyonhand();
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = super.hashCode();
_hashCode += new Double(getQtyonhand()).hashCode();
__hashCodeCalc = false;
return _hashCode;
} // Type metadata
private static org.apache.axis.description.TypeDesc typeDesc =
new org.apache.axis.description.TypeDesc(ProductPlus.class, true);
static {
typeDesc.setXmlType(new javax.xml.namespace.QName("/services/ExternalSales", "ProductPlus"));
org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc();
elemField.setFieldName("qtyonhand");
elemField.setXmlName(new javax.xml.namespace.QName("", "qtyonhand"));
elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "double"));
elemField.setNillable(false);
typeDesc.addFieldDesc(elemField);
}
/**
* Return type metadata object
*/
public static org.apache.axis.description.TypeDesc getTypeDesc() {
return typeDesc;
}
/**
* Get Custom Serializer
*/
public static org.apache.axis.encoding.Serializer getSerializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return new org.apache.axis.encoding.ser.BeanSerializer(
_javaType, _xmlType, typeDesc);
}
/**
* Get Custom Deserializer
*/
public static org.apache.axis.encoding.Deserializer getDeserializer(
java.lang.String mechType,
java.lang.Class _javaType,
javax.xml.namespace.QName _xmlType) {
return new org.apache.axis.encoding.ser.BeanDeserializer(
_javaType, _xmlType, typeDesc);
}
}
| [
"[email protected]@59e4095a-f9fc-11de-8cdf-e97ad7d0f28a"
] | [email protected]@59e4095a-f9fc-11de-8cdf-e97ad7d0f28a |
df036a16f7c7f721a5d72fcb0e571e8c2edc47f1 | 8181a16eb3fc76515711b54da523012ce98aaedf | /app/src/main/java/com/hultron/lifehelper/entity/NewsData.java | 6e7a69efa2e74ff9fc34b3579c67bd0c2c41d365 | [
"Apache-2.0"
] | permissive | Hultron/LifeHelper | 9dabb7554803dc6abee3acc0163dca80f3a8ff80 | 94dbcc428aa123fc91fc3cc60041e5851be18a82 | refs/heads/master | 2021-01-18T20:30:20.235016 | 2017-04-14T14:52:23 | 2017-04-14T14:52:23 | 86,973,727 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 627 | java | package com.hultron.lifehelper.entity;
/**
* 时事新闻数据类
*/
public class NewsData {
//标题
private String title;
public String getCtime() {
return ctime;
}
public void setCtime(String ctime) {
this.ctime = ctime;
}
//新闻时间
private String ctime;
//新闻地址
private String url;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}
| [
"[email protected]"
] | |
37a53c484726102473a5697d44625de8557da2c4 | 3ff2c98393cd5bbd0a11844d8c77ec06d385b6ab | /presto-sics-jdbc/src/main/java/com/facebook/presto/plugin/jdbc/BaseJdbcClient.java | 3a26a7a18b6506ffdc31dae2447e16c7bd603ffc | [] | no_license | mrzhangxuliang/presto-0.233-hana-connector | 17e73137bbe464af08e40f83939309a6e0946bc9 | 213db2cc5a2e68bfd0c57ab4006593ea597c9dc4 | refs/heads/master | 2022-11-22T02:04:51.049240 | 2020-07-05T02:40:06 | 2020-07-05T02:40:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 34,647 | 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 com.facebook.presto.plugin.jdbc;
import com.facebook.airlift.log.Logger;
import com.facebook.presto.spi.ColumnHandle;
import com.facebook.presto.spi.ColumnMetadata;
import com.facebook.presto.spi.ConnectorSession;
import com.facebook.presto.spi.ConnectorSplitSource;
import com.facebook.presto.spi.ConnectorTableMetadata;
import com.facebook.presto.spi.FixedSplitSource;
import com.facebook.presto.spi.PrestoException;
import com.facebook.presto.spi.SchemaTableName;
import com.facebook.presto.spi.TableNotFoundException;
import com.facebook.presto.spi.predicate.TupleDomain;
import com.facebook.presto.spi.statistics.TableStatistics;
import com.facebook.presto.spi.type.CharType;
import com.facebook.presto.spi.type.DecimalType;
import com.facebook.presto.spi.type.Type;
import com.facebook.presto.spi.type.VarcharType;
import com.google.common.base.CharMatcher;
import com.google.common.base.Joiner;
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import javax.annotation.Nullable;
import javax.annotation.PreDestroy;
import java.sql.Connection;
import java.sql.DatabaseMetaData;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import java.util.UUID;
import static com.facebook.presto.plugin.jdbc.JdbcErrorCode.JDBC_ERROR;
import static com.facebook.presto.plugin.jdbc.StandardReadMappings.jdbcTypeToPrestoType;
import static com.facebook.presto.spi.StandardErrorCode.NOT_FOUND;
import static com.facebook.presto.spi.StandardErrorCode.NOT_SUPPORTED;
import static com.facebook.presto.spi.type.BigintType.BIGINT;
import static com.facebook.presto.spi.type.BooleanType.BOOLEAN;
import static com.facebook.presto.spi.type.DateType.DATE;
import static com.facebook.presto.spi.type.DoubleType.DOUBLE;
import static com.facebook.presto.spi.type.IntegerType.INTEGER;
import static com.facebook.presto.spi.type.RealType.REAL;
import static com.facebook.presto.spi.type.SmallintType.SMALLINT;
import static com.facebook.presto.spi.type.TimeType.TIME;
import static com.facebook.presto.spi.type.TimeWithTimeZoneType.TIME_WITH_TIME_ZONE;
import static com.facebook.presto.spi.type.TimestampType.TIMESTAMP;
import static com.facebook.presto.spi.type.TimestampWithTimeZoneType.TIMESTAMP_WITH_TIME_ZONE;
import static com.facebook.presto.spi.type.TinyintType.TINYINT;
import static com.facebook.presto.spi.type.VarbinaryType.VARBINARY;
import static com.facebook.presto.spi.type.Varchars.isVarcharType;
import static com.google.common.base.MoreObjects.firstNonNull;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Strings.isNullOrEmpty;
import static com.google.common.base.Verify.verify;
import static com.google.common.collect.ImmutableMap.toImmutableMap;
import static com.google.common.collect.ImmutableSet.toImmutableSet;
import static com.google.common.collect.Iterables.getOnlyElement;
import static java.lang.String.format;
import static java.lang.String.join;
import static java.sql.ResultSetMetaData.columnNullable;
import static java.util.Collections.nCopies;
import static java.util.Locale.ENGLISH;
import static java.util.Objects.requireNonNull;
import static java.util.concurrent.TimeUnit.MILLISECONDS;
public class BaseJdbcClient
implements JdbcClient
{
private static final Logger log = Logger.get(BaseJdbcClient.class);
private static final Map<Type, String> SQL_TYPES = ImmutableMap.<Type, String>builder()
.put(BOOLEAN, "boolean")
.put(BIGINT, "bigint")
.put(INTEGER, "integer")
.put(SMALLINT, "smallint")
.put(TINYINT, "tinyint")
.put(DOUBLE, "double precision")
.put(REAL, "real")
.put(VARBINARY, "varbinary")
.put(DATE, "date")
.put(TIME, "time")
.put(TIME_WITH_TIME_ZONE, "time with timezone")
.put(TIMESTAMP, "timestamp")
.put(TIMESTAMP_WITH_TIME_ZONE, "timestamp with timezone")
.build();
protected final String connectorId;
protected final ConnectionFactory connectionFactory;
protected final String identifierQuote;
protected final boolean caseInsensitiveNameMatching;
protected final Cache<JdbcIdentity, Map<String, String>> remoteSchemaNames;
protected final Cache<RemoteTableNameCacheKey, Map<String, String>> remoteTableNames;
public BaseJdbcClient(JdbcConnectorId connectorId, BaseJdbcConfig config, String identifierQuote, ConnectionFactory connectionFactory)
{
log.info("BaseJdbcClient");
this.connectorId = requireNonNull(connectorId, "connectorId is null").toString();
requireNonNull(config, "config is null"); // currently unused, retained as parameter for future extensions
this.identifierQuote = requireNonNull(identifierQuote, "identifierQuote is null");
this.connectionFactory = requireNonNull(connectionFactory, "connectionFactory is null");
this.caseInsensitiveNameMatching = config.isCaseInsensitiveNameMatching();
CacheBuilder<Object, Object> remoteNamesCacheBuilder = CacheBuilder.newBuilder()
.expireAfterWrite(config.getCaseInsensitiveNameMatchingCacheTtl().toMillis(), MILLISECONDS);
this.remoteSchemaNames = remoteNamesCacheBuilder.build();
this.remoteTableNames = remoteNamesCacheBuilder.build();
}
@PreDestroy
public void destroy()
throws Exception
{
connectionFactory.close();
}
@Override
public String getIdentifierQuote()
{
return identifierQuote;
}
@Override
public final Set<String> getSchemaNames(JdbcIdentity identity)
{
log.info("getSchemaNames");
try (Connection connection = connectionFactory.openConnection(identity)) {
return listSchemas(connection).stream()
.map(schemaName -> schemaName.toLowerCase(ENGLISH))
.collect(toImmutableSet());
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
protected Collection<String> listSchemas(Connection connection)
{
log.info("listSchemas");
try (ResultSet resultSet = connection.getMetaData().getSchemas()) {
ImmutableSet.Builder<String> schemaNames = ImmutableSet.builder();
while (resultSet.next()) {
String schemaName = resultSet.getString("TABLE_SCHEM");
// skip internal schemas
if (!schemaName.equalsIgnoreCase("information_schema")) {
schemaNames.add(schemaName);
}
}
return schemaNames.build();
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public List<SchemaTableName> getTableNames(JdbcIdentity identity, Optional<String> schema)
{
log.info("getTableNames");
try (Connection connection = connectionFactory.openConnection(identity)) {
Optional<String> remoteSchema = schema.map(schemaName -> toRemoteSchemaName(identity, connection, schemaName));
try (ResultSet resultSet = getTables(connection, remoteSchema, Optional.empty())) {
ImmutableList.Builder<SchemaTableName> list = ImmutableList.builder();
while (resultSet.next()) {
String tableSchema = getTableSchemaName(resultSet);
String tableName = resultSet.getString("TABLE_NAME");
list.add(new SchemaTableName(tableSchema.toLowerCase(ENGLISH), tableName.toLowerCase(ENGLISH)));
}
return list.build();
}
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Nullable
@Override
public JdbcTableHandle getTableHandle(JdbcIdentity identity, SchemaTableName schemaTableName)
{
log.info("getTableHandle");
try (Connection connection = connectionFactory.openConnection(identity)) {
String remoteSchema = toRemoteSchemaName(identity, connection, schemaTableName.getSchemaName());
String remoteTable = toRemoteTableName(identity, connection, remoteSchema, schemaTableName.getTableName());
try (ResultSet resultSet = getTables(connection, Optional.of(remoteSchema), Optional.of(remoteTable))) {
List<JdbcTableHandle> tableHandles = new ArrayList<>();
while (resultSet.next()) {
tableHandles.add(new JdbcTableHandle(
connectorId,
schemaTableName,
resultSet.getString("TABLE_CAT"),
resultSet.getString("TABLE_SCHEM"),
resultSet.getString("TABLE_NAME")));
}
if (tableHandles.isEmpty()) {
return null;
}
if (tableHandles.size() > 1) {
throw new PrestoException(NOT_SUPPORTED, "Multiple tables matched: " + schemaTableName);
}
return getOnlyElement(tableHandles);
}
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public List<JdbcColumnHandle> getColumns(ConnectorSession session, JdbcTableHandle tableHandle)
{
log.info("getColumns");
try (Connection connection = connectionFactory.openConnection(JdbcIdentity.from(session))) {
try (ResultSet resultSet = getColumns(tableHandle, connection.getMetaData())) {
List<JdbcColumnHandle> columns = new ArrayList<>();
while (resultSet.next()) {
JdbcTypeHandle typeHandle = new JdbcTypeHandle(
resultSet.getInt("DATA_TYPE"),
resultSet.getInt("COLUMN_SIZE"),
resultSet.getInt("DECIMAL_DIGITS"));
Optional<ReadMapping> columnMapping = toPrestoType(session, typeHandle);
String columnName = resultSet.getString("COLUMN_NAME");
log.info("columnName:" + columnName + ",jdbcType:" + typeHandle.getJdbcType());
// skip unsupported column types
if (columnMapping.isPresent()) {
boolean nullable = columnNullable == resultSet.getInt("NULLABLE");
columns.add(new JdbcColumnHandle(connectorId, columnName, typeHandle, columnMapping.get().getType(), nullable));
}
}
if (columns.isEmpty()) {
// In rare cases (e.g. PostgreSQL) a table might have no columns.
throw new TableNotFoundException(tableHandle.getSchemaTableName());
}
return ImmutableList.copyOf(columns);
}
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public Optional<ReadMapping> toPrestoType(ConnectorSession session, JdbcTypeHandle typeHandle)
{
log.info("toPrestoType");
return jdbcTypeToPrestoType(typeHandle);
}
@Override
public ConnectorSplitSource getSplits(JdbcIdentity identity, JdbcTableLayoutHandle layoutHandle)
{
log.info("getSplits");
JdbcTableHandle tableHandle = layoutHandle.getTable();
JdbcSplit jdbcSplit = new JdbcSplit(
connectorId,
tableHandle.getCatalogName(),
tableHandle.getSchemaName(),
tableHandle.getTableName(),
layoutHandle.getTupleDomain(),
layoutHandle.getAdditionalPredicate());
return new FixedSplitSource(ImmutableList.of(jdbcSplit));
}
@Override
public Connection getConnection(JdbcIdentity identity, JdbcSplit split)
throws SQLException
{
log.info("getConnection");
Connection connection = connectionFactory.openConnection(identity);
try {
connection.setReadOnly(true);
}
catch (SQLException e) {
connection.close();
throw e;
}
return connection;
}
@Override
public PreparedStatement buildSql(Connection connection, JdbcSplit split, List<JdbcColumnHandle> columnHandles)
throws SQLException
{
log.info("buildSql");
return new QueryBuilder(identifierQuote).buildSql(
this,
connection,
split.getCatalogName(),
split.getSchemaName(),
split.getTableName(),
columnHandles,
split.getTupleDomain(),
split.getAdditionalPredicate());
}
@Override
public void createTable(ConnectorSession session, ConnectorTableMetadata tableMetadata)
{
log.info("createTable");
try {
createTable(tableMetadata, session, tableMetadata.getTable().getTableName());
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public JdbcOutputTableHandle beginCreateTable(ConnectorSession session, ConnectorTableMetadata tableMetadata)
{
log.info("beginCreateTable");
return beginWriteTable(session, tableMetadata);
}
@Override
public JdbcOutputTableHandle beginInsertTable(ConnectorSession session, ConnectorTableMetadata tableMetadata)
{
log.info("beginInsertTable");
return beginWriteTable(session, tableMetadata);
}
private JdbcOutputTableHandle beginWriteTable(ConnectorSession session, ConnectorTableMetadata tableMetadata)
{
log.info("beginWriteTable");
try {
return createTable(tableMetadata, session, generateTemporaryTableName());
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
protected JdbcOutputTableHandle createTable(ConnectorTableMetadata tableMetadata, ConnectorSession session, String tableName)
throws SQLException
{
log.info("createTable");
SchemaTableName schemaTableName = tableMetadata.getTable();
JdbcIdentity identity = JdbcIdentity.from(session);
if (!getSchemaNames(identity).contains(schemaTableName.getSchemaName())) {
throw new PrestoException(NOT_FOUND, "Schema not found: " + schemaTableName.getSchemaName());
}
try (Connection connection = connectionFactory.openConnection(identity)) {
boolean uppercase = connection.getMetaData().storesUpperCaseIdentifiers();
String remoteSchema = toRemoteSchemaName(identity, connection, schemaTableName.getSchemaName());
String remoteTable = toRemoteTableName(identity, connection, remoteSchema, schemaTableName.getTableName());
if (uppercase) {
tableName = tableName.toUpperCase(ENGLISH);
}
String catalog = connection.getCatalog();
ImmutableList.Builder<String> columnNames = ImmutableList.builder();
ImmutableList.Builder<Type> columnTypes = ImmutableList.builder();
ImmutableList.Builder<String> columnList = ImmutableList.builder();
for (ColumnMetadata column : tableMetadata.getColumns()) {
String columnName = column.getName();
if (uppercase) {
columnName = columnName.toUpperCase(ENGLISH);
}
columnNames.add(columnName);
columnTypes.add(column.getType());
columnList.add(getColumnString(column, columnName));
}
String sql = format(
"CREATE TABLE %s (%s)",
quoted(catalog, remoteSchema, tableName),
join(", ", columnList.build()));
execute(connection, sql);
return new JdbcOutputTableHandle(
connectorId,
catalog,
remoteSchema,
remoteTable,
columnNames.build(),
columnTypes.build(),
tableName);
}
}
private String getColumnString(ColumnMetadata column, String columnName)
{
log.info("getColumnString");
StringBuilder sb = new StringBuilder()
.append(quoted(columnName))
.append(" ")
.append(toSqlType(column.getType()));
if (!column.isNullable()) {
sb.append(" NOT NULL");
}
return sb.toString();
}
protected String generateTemporaryTableName()
{
log.info("generateTemporaryTableName");
return "tmp_presto_" + UUID.randomUUID().toString().replace("-", "");
}
//todo
@Override
public void commitCreateTable(JdbcIdentity identity, JdbcOutputTableHandle handle)
{
log.info("commitCreateTable");
renameTable(
identity,
handle.getCatalogName(),
new SchemaTableName(handle.getSchemaName(), handle.getTemporaryTableName()),
new SchemaTableName(handle.getSchemaName(), handle.getTableName()));
}
@Override
public void renameTable(JdbcIdentity identity, JdbcTableHandle handle, SchemaTableName newTable)
{
log.info("renameTable1");
renameTable(identity, handle.getCatalogName(), handle.getSchemaTableName(), newTable);
}
protected void renameTable(JdbcIdentity identity, String catalogName, SchemaTableName oldTable, SchemaTableName newTable)
{
log.info("renameTable2");
try (Connection connection = connectionFactory.openConnection(identity)) {
DatabaseMetaData metadata = connection.getMetaData();
String schemaName = oldTable.getSchemaName();
String tableName = oldTable.getTableName();
String newSchemaName = newTable.getSchemaName();
String newTableName = newTable.getTableName();
if (metadata.storesUpperCaseIdentifiers()) {
schemaName = schemaName.toUpperCase(ENGLISH);
tableName = tableName.toUpperCase(ENGLISH);
newSchemaName = newSchemaName.toUpperCase(ENGLISH);
newTableName = newTableName.toUpperCase(ENGLISH);
}
String sql = format(
"ALTER TABLE %s RENAME TO %s",
quoted(catalogName, schemaName, tableName),
quoted(catalogName, newSchemaName, newTableName));
execute(connection, sql);
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public void finishInsertTable(JdbcIdentity identity, JdbcOutputTableHandle handle)
{
log.info("finishInsertTable");
String temporaryTable = quoted(handle.getCatalogName(), handle.getSchemaName(), handle.getTemporaryTableName());
String targetTable = quoted(handle.getCatalogName(), handle.getSchemaName(), handle.getTableName());
String insertSql = format("INSERT INTO %s SELECT * FROM %s", targetTable, temporaryTable);
String cleanupSql = "DROP TABLE " + temporaryTable;
try (Connection connection = getConnection(identity, handle)) {
execute(connection, insertSql);
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
try (Connection connection = getConnection(identity, handle)) {
execute(connection, cleanupSql);
}
catch (SQLException e) {
log.warn(e, "Failed to cleanup temporary table: %s", temporaryTable);
}
}
@Override
public void addColumn(JdbcIdentity identity, JdbcTableHandle handle, ColumnMetadata column)
{
log.info("addColumn");
try (Connection connection = connectionFactory.openConnection(identity)) {
String schema = handle.getSchemaName();
String table = handle.getTableName();
String columnName = column.getName();
DatabaseMetaData metadata = connection.getMetaData();
if (metadata.storesUpperCaseIdentifiers()) {
schema = schema != null ? schema.toUpperCase(ENGLISH) : null;
table = table.toUpperCase(ENGLISH);
columnName = columnName.toUpperCase(ENGLISH);
}
String sql = format(
"ALTER TABLE %s ADD %s",
quoted(handle.getCatalogName(), schema, table),
getColumnString(column, columnName));
execute(connection, sql);
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public void renameColumn(JdbcIdentity identity, JdbcTableHandle handle, JdbcColumnHandle jdbcColumn, String newColumnName)
{
log.info("renameColumn");
try (Connection connection = connectionFactory.openConnection(identity)) {
DatabaseMetaData metadata = connection.getMetaData();
if (metadata.storesUpperCaseIdentifiers()) {
newColumnName = newColumnName.toUpperCase(ENGLISH);
}
String sql = format(
"ALTER TABLE %s RENAME COLUMN %s TO %s",
quoted(handle.getCatalogName(), handle.getSchemaName(), handle.getTableName()),
jdbcColumn.getColumnName(),
newColumnName);
execute(connection, sql);
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public void dropColumn(JdbcIdentity identity, JdbcTableHandle handle, JdbcColumnHandle column)
{
log.info("dropColumn");
try (Connection connection = connectionFactory.openConnection(identity)) {
String sql = format(
"ALTER TABLE %s DROP COLUMN %s",
quoted(handle.getCatalogName(), handle.getSchemaName(), handle.getTableName()),
column.getColumnName());
execute(connection, sql);
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public void dropTable(JdbcIdentity identity, JdbcTableHandle handle)
{
log.info("dropTable");
StringBuilder sql = new StringBuilder()
.append("DROP TABLE ")
.append(quoted(handle.getCatalogName(), handle.getSchemaName(), handle.getTableName()));
try (Connection connection = connectionFactory.openConnection(identity)) {
execute(connection, sql.toString());
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public void rollbackCreateTable(JdbcIdentity identity, JdbcOutputTableHandle handle)
{
log.info("rollbackCreateTable");
dropTable(identity, new JdbcTableHandle(
handle.getConnectorId(),
new SchemaTableName(handle.getSchemaName(), handle.getTemporaryTableName()),
handle.getCatalogName(),
handle.getSchemaName(),
handle.getTemporaryTableName()));
}
@Override
public String buildInsertSql(JdbcOutputTableHandle handle)
{
log.info("buildInsertSql");
String vars = Joiner.on(',').join(nCopies(handle.getColumnNames().size(), "?"));
return new StringBuilder()
.append("INSERT INTO ")
.append(quoted(handle.getCatalogName(), handle.getSchemaName(), handle.getTemporaryTableName()))
.append(" VALUES (").append(vars).append(")")
.toString();
}
@Override
public Connection getConnection(JdbcIdentity identity, JdbcOutputTableHandle handle)
throws SQLException
{
log.info("getConnection");
return connectionFactory.openConnection(identity);
}
@Override
public PreparedStatement getPreparedStatement(Connection connection, String sql)
throws SQLException
{
log.info("getPreparedStatement");
return connection.prepareStatement(sql);
}
protected ResultSet getTables(Connection connection, Optional<String> schemaName, Optional<String> tableName)
throws SQLException
{
log.info("getTables");
DatabaseMetaData metadata = connection.getMetaData();
Optional<String> escape = Optional.ofNullable(metadata.getSearchStringEscape());
return metadata.getTables(
connection.getCatalog(),
escapeNamePattern(schemaName, escape).orElse(null),
escapeNamePattern(tableName, escape).orElse(null),
new String[] {"TABLE", "VIEW"});
}
protected String getTableSchemaName(ResultSet resultSet)
throws SQLException
{
log.info("getTableSchemaName");
return resultSet.getString("TABLE_SCHEM");
}
protected String toRemoteSchemaName(JdbcIdentity identity, Connection connection, String schemaName)
{
log.info("toRemoteSchemaName");
requireNonNull(schemaName, "schemaName is null");
verify(CharMatcher.forPredicate(Character::isUpperCase).matchesNoneOf(schemaName), "Expected schema name from internal metadata to be lowercase: %s", schemaName);
if (caseInsensitiveNameMatching) {
try {
Map<String, String> mapping = remoteSchemaNames.getIfPresent(identity);
if (mapping != null && !mapping.containsKey(schemaName)) {
// This might be a schema that has just been created. Force reload.
mapping = null;
}
if (mapping == null) {
mapping = listSchemasByLowerCase(connection);
remoteSchemaNames.put(identity, mapping);
}
String remoteSchema = mapping.get(schemaName);
if (remoteSchema != null) {
return remoteSchema;
}
}
catch (RuntimeException e) {
throw new PrestoException(JDBC_ERROR, "Failed to find remote schema name: " + firstNonNull(e.getMessage(), e), e);
}
}
try {
DatabaseMetaData metadata = connection.getMetaData();
if (metadata.storesUpperCaseIdentifiers()) {
return schemaName.toUpperCase(ENGLISH);
}
return schemaName;
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
protected Map<String, String> listSchemasByLowerCase(Connection connection)
{
log.info("listSchemasByLowerCase");
return listSchemas(connection).stream()
.collect(toImmutableMap(schemaName -> schemaName.toLowerCase(ENGLISH), schemaName -> schemaName));
}
protected String toRemoteTableName(JdbcIdentity identity, Connection connection, String remoteSchema, String tableName)
{
log.info("toRemoteTableName");
requireNonNull(remoteSchema, "remoteSchema is null");
requireNonNull(tableName, "tableName is null");
verify(CharMatcher.forPredicate(Character::isUpperCase).matchesNoneOf(tableName), "Expected table name from internal metadata to be lowercase: %s", tableName);
if (caseInsensitiveNameMatching) {
try {
RemoteTableNameCacheKey cacheKey = new RemoteTableNameCacheKey(identity, remoteSchema);
Map<String, String> mapping = remoteTableNames.getIfPresent(cacheKey);
if (mapping != null && !mapping.containsKey(tableName)) {
// This might be a table that has just been created. Force reload.
mapping = null;
}
if (mapping == null) {
mapping = listTablesByLowerCase(connection, remoteSchema);
remoteTableNames.put(cacheKey, mapping);
}
String remoteTable = mapping.get(tableName);
if (remoteTable != null) {
return remoteTable;
}
}
catch (RuntimeException e) {
throw new PrestoException(JDBC_ERROR, "Failed to find remote table name: " + firstNonNull(e.getMessage(), e), e);
}
}
try {
DatabaseMetaData metadata = connection.getMetaData();
if (metadata.storesUpperCaseIdentifiers()) {
return tableName.toUpperCase(ENGLISH);
}
return tableName;
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
protected Map<String, String> listTablesByLowerCase(Connection connection, String remoteSchema)
{
log.info("listTablesByLowerCase");
try (ResultSet resultSet = getTables(connection, Optional.of(remoteSchema), Optional.empty())) {
ImmutableMap.Builder<String, String> map = ImmutableMap.builder();
while (resultSet.next()) {
String tableName = resultSet.getString("TABLE_NAME");
map.put(tableName.toLowerCase(ENGLISH), tableName);
}
return map.build();
}
catch (SQLException e) {
throw new PrestoException(JDBC_ERROR, e);
}
}
@Override
public TableStatistics getTableStatistics(ConnectorSession session, JdbcTableHandle handle, List<JdbcColumnHandle> columnHandles, TupleDomain<ColumnHandle> tupleDomain)
{
log.info("getTableStatistics");
return TableStatistics.empty();
}
protected void execute(Connection connection, String query)
throws SQLException
{
log.info("execute");
try (Statement statement = connection.createStatement()) {
log.debug("Execute: %s", query);
statement.execute(query);
}
}
protected String toSqlType(Type type)
{
log.info("toSqlType.displayName:" + type.getDisplayName() + ",simpleName:" + type.getJavaType().getSimpleName());
String sql = this.doToSqlType(type);
log.info("sql:" + sql);
return sql;
}
private String doToSqlType(Type type){
if (isVarcharType(type)) {
VarcharType varcharType = (VarcharType) type;
if (varcharType.isUnbounded()) {
return "varchar";
}
return "varchar(" + varcharType.getLengthSafe() + ")";
}
if (type instanceof CharType) {
if (((CharType) type).getLength() == CharType.MAX_LENGTH) {
return "char";
}
return "char(" + ((CharType) type).getLength() + ")";
}
if (type instanceof DecimalType) {
return format("decimal(%s, %s)", ((DecimalType) type).getPrecision(), ((DecimalType) type).getScale());
}
String sqlType = SQL_TYPES.get(type);
if (sqlType != null) {
return sqlType;
}
throw new PrestoException(NOT_SUPPORTED, "Unsupported column type: " + type.getDisplayName());
}
protected String quoted(String name)
{
log.info("quoted:" + name);
name = name.replace(identifierQuote, identifierQuote + identifierQuote);
return identifierQuote + name + identifierQuote;
}
protected String quoted(String catalog, String schema, String table)
{
log.info("quoted:" + catalog + "," + schema + "," + table);
StringBuilder sb = new StringBuilder();
if (!isNullOrEmpty(catalog)) {
sb.append(quoted(catalog)).append(".");
}
if (!isNullOrEmpty(schema)) {
sb.append(quoted(schema)).append(".");
}
sb.append(quoted(table));
return sb.toString();
}
protected static Optional<String> escapeNamePattern(Optional<String> name, Optional<String> escape)
{
log.info("escapeNamePattern");
if (!name.isPresent() || !escape.isPresent()) {
return name;
}
return Optional.of(escapeNamePattern(name.get(), escape.get()));
}
private static String escapeNamePattern(String name, String escape)
{
log.info("escapeNamePattern");
requireNonNull(name, "name is null");
requireNonNull(escape, "escape is null");
checkArgument(!escape.equals("_"), "Escape string must not be '_'");
checkArgument(!escape.equals("%"), "Escape string must not be '%'");
name = name.replace(escape, escape + escape);
name = name.replace("_", escape + "_");
name = name.replace("%", escape + "%");
return name;
}
private static ResultSet getColumns(JdbcTableHandle tableHandle, DatabaseMetaData metadata)
throws SQLException
{
log.info("getColumns");
Optional<String> escape = Optional.ofNullable(metadata.getSearchStringEscape());
return metadata.getColumns(
tableHandle.getCatalogName(),
escapeNamePattern(Optional.ofNullable(tableHandle.getSchemaName()), escape).orElse(null),
escapeNamePattern(Optional.ofNullable(tableHandle.getTableName()), escape).orElse(null),
null);
}
}
| [
"[email protected]"
] | |
22a941c1e3fb76a882eea2273c059a751353c249 | e4f340aeac661f9439a513537e0f51c49bcb0493 | /adminApi/wcaa-wxapp-api/src/main/java/wcaa/api/controller/UserController.java | 0405e8bf18be66be7ca0fc486177c235c78abfba | [] | no_license | douruifeng/admin | 6d7d13b6b06dea22a3662011f0399663e0639427 | 0833bad619130c832dd4a490edf18927c978e661 | refs/heads/master | 2022-06-25T17:04:22.219277 | 2020-03-07T14:17:06 | 2020-03-07T14:17:06 | 242,519,855 | 0 | 0 | null | 2022-06-21T02:51:26 | 2020-02-23T13:14:37 | Vue | UTF-8 | Java | false | false | 3,943 | java | package wcaa.api.controller;
import io.swagger.annotations.*;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Value;
import wcaa.Vo.PageResult;
import wcaa.pojo.User;
import wcaa.service.userService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import wcaa.utils.JSONResult;
import java.io.*;
import java.util.List;
@CrossOrigin
@RestController
@Api(value = "用户相关业务的接口",tags = "用户相关业务的接口")
@RequestMapping("/user")
public class UserController extends BasicController{
@Autowired
private userService userService;
@ApiOperation(value = "用户上传头像", notes = "用户上传接口")
@ApiImplicitParam(name="userId",value="用户ID",dataType="string",required = true)
@PostMapping("/uploadFace")
public JSONResult logout(String userId,
@RequestParam("file") MultipartFile[] files) {
//文件保存的空间
String SaveFilesSpace ="C:/DRF/touxiang";
//保存到数据库中的相对路径
String SaveFilesDB = "/"+userId+"/face";
FileOutputStream fileOutputStream = null;
InputStream inputStream = null;
if(StringUtils.isBlank(userId))
{
return JSONResult.errorMsg("用户ID不能为空");
}
try {
//操作文件流
if(files != null && files.length > 0)
{
String filename = files[0].getOriginalFilename();
if(StringUtils.isNotBlank(filename))
{
//文件上传的最终保存路径
String fileFacePace = SaveFilesSpace + SaveFilesDB + "/" + filename;
//设置数据库保存路径
SaveFilesDB += ("/" + filename);
File outFile = new File(fileFacePace);
if(outFile.getParentFile() != null || outFile.getParentFile().isDirectory())
{
//创建父文件夹
outFile.getParentFile().mkdirs();
}
fileOutputStream = new FileOutputStream(outFile);
inputStream = files[0].getInputStream();
IOUtils.copy(inputStream,fileOutputStream);
}else {
return JSONResult.errorMsg("上传访问出错!");
}
}
} catch (Exception e) {
e.printStackTrace();
return JSONResult.errorMsg("上传访问出错!");
}finally {
if(fileOutputStream != null)
{
try {
fileOutputStream.flush();
fileOutputStream.close();
} catch (Exception e){
e.printStackTrace();
return JSONResult.errorMsg("上传访问出错!");
}
}
}
//User user = new User();
//user.setId(userId);
//user.setPicture(SaveFilesDB);
//userService.updateUser(user);
return JSONResult.ok(SaveFilesDB);
}
@ApiOperation(value = "管理员信息", notes = "管理员信息查询接口")
@GetMapping("/list")
public JSONResult QueryUser(@ApiParam @RequestParam (value="page",required = false,defaultValue = "1") String page,
@ApiParam @RequestParam (value="limit",required = false,defaultValue = "20") String limit,
@ApiParam @RequestParam (value="sort",required = false,defaultValue = "%2Bid") String sort) {
PageResult pageResult = userService.selePage(page,limit);
return JSONResult.ok(pageResult);
}
}
| [
"[email protected]"
] | |
f95a65f4b1e099119cb17f9e3d3c3d7c992fe089 | 620c75f522d8650e87bf64b878ca0a7367623dda | /org.jebtk.modern/src/main/java/org/jebtk/modern/dialog/ModernDialogWindow.java | a180eea7df83e0ab51bd36d89d0d8393a4fa8435 | [] | no_license | antonybholmes/jebtk-modern | 539750965fcd0bcc9ee5ec3c371271c4dd2d4c08 | 04dcf905082052dd57890a056e647548e1222dff | refs/heads/master | 2021-08-02T18:05:05.895223 | 2021-07-24T21:59:26 | 2021-07-24T21:59:26 | 100,538,521 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 14,093 | java | /**
* Copyright (C) 2016, Antony Holmes
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package org.jebtk.modern.dialog;
import java.awt.AWTEvent;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.awt.event.AWTEventListener;
import java.awt.event.MouseEvent;
import javax.swing.JComponent;
import javax.swing.JDialog;
import javax.swing.JLayeredPane;
import javax.swing.SwingUtilities;
import javax.swing.border.Border;
import org.jebtk.modern.BorderService;
import org.jebtk.modern.ModernComponent;
import org.jebtk.modern.ModernWidget;
import org.jebtk.modern.UI;
import org.jebtk.modern.button.ButtonsBox;
import org.jebtk.modern.help.GuiAppInfo;
import org.jebtk.modern.panel.BorderlessCardPanel;
import org.jebtk.modern.panel.CardPanel;
import org.jebtk.modern.panel.ModernPanel;
import org.jebtk.modern.theme.ThemeService;
import org.jebtk.modern.tooltip.ModernToolTipEvent;
import org.jebtk.modern.tooltip.ModernToolTipListener;
import org.jebtk.modern.tooltip.ToolTipService;
import org.jebtk.modern.window.ModernWindow;
/**
* Standardized modern dialog window.
*
* @author Antony Holmes
*
*/
public class ModernDialogWindow extends JDialog implements ModernToolTipListener {
/**
* The constant serialVersionUID.
*/
private static final long serialVersionUID = 1L;
private class AllMouseEvents implements AWTEventListener {
@Override
public void eventDispatched(AWTEvent e) {
if (e.getID() == MouseEvent.MOUSE_PRESSED) {
doHideTooltips();
}
}
}
/**
* The constant STANDARD_LABEL_SIZE.
*/
public static final Dimension STANDARD_LABEL_SIZE = new Dimension(200, ModernWidget.getWidgetHeight());
/**
* The constant STANDARD_INPUT_SIZE.
*/
public static final Dimension STANDARD_INPUT_SIZE = new Dimension(80, ModernWidget.getWidgetHeight());
/** The Constant DIALOG_BACKGROUND_1. */
public static final Color DIALOG_BACKGROUND = ThemeService.getInstance().getColors().getGray32(1);
public static final Border FLAT_BORDER = BorderService.getInstance().createBottomBorder(ModernWidget.DOUBLE_PADDING);
/**
* The member status.
*/
protected ModernDialogStatus mStatus = ModernDialogStatus.CANCEL;
/**
* The member content panel.
*/
private ModernComponent mContentPanel = new ModernPanel(ModernDialogWindow.DIALOG_BACKGROUND); // new
// ModernDialogWindowContentPanel();
/**
* The member product details.
*/
protected GuiAppInfo mAppInfo;
/**
* The member parent.
*/
protected ModernWindow mParent;
/** The m center. */
private Component mCenter;
/** The m auto dispose. */
private boolean mAutoDispose = true;
/**
* Instantiates a new modern dialog window.
*
* @param parent the parent
*/
public ModernDialogWindow(ModernWindow parent) {
this(parent, true);
}
/**
* Instantiates a new modern dialog window.
*
* @param parent the parent
* @param modal the modal
*/
public ModernDialogWindow(ModernWindow parent, boolean modal) {
super(parent, modal);
mParent = parent;
mAppInfo = parent.getAppInfo();
setup();
}
/**
* Instantiates a new modern dialog window.
*
* @param productDetails the product details
*/
public ModernDialogWindow(GuiAppInfo productDetails) {
mAppInfo = productDetails;
setup();
}
/**
* Instantiates a new modern dialog window.
*
* @param parent the parent
* @param productDetails the product details
*/
public ModernDialogWindow(ModernWindow parent, GuiAppInfo productDetails) {
this(parent);
mAppInfo = productDetails;
setup();
}
/**
* Gets the app info.
*
* @return the app info
*/
public GuiAppInfo getAppInfo() {
return mAppInfo;
}
/**
* Gets the parent window.
*
* @return the parent window
*/
public ModernWindow getParentWindow() {
return mParent;
}
// @Override
// public void setBackground(Color color) {
// // Set the background color of the dialog
//
// Container c = getContentPane();
//
// if (c != null) {
// System.err.println("g" + " " + color + " " + getTitle());
// c.setBackground(Color.ORANGE); //color);
// }
// }
/**
* Set the border around the content pane
*
* @param border
*/
public void setBorder(Border border) {
((ModernComponent) getContentPane()).setBorder(border);
}
/**
* Set the window title but include the main app title.
*
* @param subTitle the new sub title
*/
public void setSubTitle(String subTitle) {
setTitle(subTitle + " - " + getAppInfo().getName());
}
/**
* Setup.
*/
private void setup() {
// setModalityType(ModalityType.APPLICATION_MODAL);
// setUndecorated(true);
// getRootPane ().setOpaque (false);
// getWindowContentPanel().setBackground (new Color(0, 0, 0, 0));
// setBackground (new Color(0, 0, 0, 0));
setDarkBackground();
setIconImage(getAppInfo().getIcon().getImage(32));
super.getContentPane().add(mContentPanel, BorderLayout.CENTER);
setResizable(false);
setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
UI.centerWindowToScreen(this);
// Receive tooltips
ToolTipService.getInstance().addToolTipListener(this);
//
// Listen for clicking anywhere on the window to get rid of the tool tip
//
Toolkit.getDefaultToolkit().addAWTEventListener(new AllMouseEvents(), AWTEvent.MOUSE_EVENT_MASK);
}
/**
* Sets the title.
*
* @param title the title
* @param subTitle the sub title
*/
public void setTitle(String title, String subTitle) {
setTitle(subTitle + " - " + title);
}
/**
* Controls whether the dialog will dispose of itself once closed (free
* resources) or be allowed to persist in memory. By default dialogs auto
* dispose.
*
* @param autoDispose the new auto dispose
*/
public void setAutoDispose(boolean autoDispose) {
mAutoDispose = autoDispose;
}
/**
* Sets the header.
*
* @param c the new header
*/
protected void setHeader(Component c) {
getContentPane().add(c, BorderLayout.PAGE_START);
}
/**
* Sets the body.
*
* @param c the new body
*/
public void setBody(Component c) {
if (mCenter != null) {
getContentPane().remove(mCenter);
}
mCenter = c;
getContentPane().add(c, BorderLayout.CENTER);
getContentPane().validate();
getContentPane().repaint();
}
/**
* Sets the left.
*
* @param c the new left
*/
public void setLeft(Component c) {
getContentPane().add(c, BorderLayout.LINE_START);
}
/**
* Sets the footer.
*
* @param c the new footer
*/
public void setFooter(Component c) {
getContentPane().add(c, BorderLayout.PAGE_END);
}
/**
* Dialogs default to a white background. This changes it to the gray
* background.
*/
public void setDarkBackground() {
getContentPane().setBackground(DIALOG_BACKGROUND);
}
/**
* Set the background to the default white color.
*/
public void setLightBackground() {
getContentPane().setBackground(Color.WHITE);
}
public void setCard(JComponent c) {
setBody(new CardPanel(new ModernComponent(c, ModernWidget.DOUBLE_BORDER), ModernWidget.DOUBLE_BORDER));
// Auto set the background to dark so that the card contrasts.
// setDarkBackground();
}
public void setBorderlessCardContent(JComponent c) {
setBody(new BorderlessCardPanel(c));
// Auto set the background to dark so that the card contrasts.
// setDarkBackground();
}
/**
* Set the content of the the dia
*
* @param c
*/
public void setFlatCardContent(JComponent c) {
setBody(new ModernComponent(new ModernPanel(c, ModernWidget.QUAD_BORDER), FLAT_BORDER));
// Auto set the background to dark so that the card contrasts.
// setDarkBackground();
}
/**
* Adds the component as the central content of the dialog inside a bordered box
* with appropriate spacing.
*
* @param c the new content
*/
public void setContent(JComponent c) {
setBody(new ModernComponent(c, ModernWidget.QUAD_BORDER)); // c);
// //new
// ModernDialogContentPanel(c));
}
/**
* Sets the buttons.
*
* @param c the new buttons
*/
public void setButtons(ButtonsBox c) {
setFooter(c);
}
/**
* Sets the buttons.
*
* @param c the new buttons
*/
public void setButtons(JComponent c) {
setFooter(c); // new ModernDialogButtonBox(c));
}
/**
* Gets the content panel.
*
* @return the content panel
*/
// public ModernComponent getContentPanel() {
// return mContentPanel;
// }
@Override
public ModernComponent getContentPane() {
return mContentPanel;
}
/*
* (non-Javadoc)
*
* @see
* org.abh.lib.ui.modern.tooltip.ModernToolTipModel#showToolTip(org.abh.lib. ui.
* modern.ModernComponent, org.abh.lib.ui.modern.tooltip.ModernToolTipPanel)
*/
private void showToolTip(Component source, Component tooltip) {
showToolTip(source, tooltip, toolTipP(source, tooltip));
}
private void addToolTip(Component source, Component tooltip) {
addToolTip(source, tooltip, toolTipP(source, tooltip));
}
private Point toolTipP(Component source, Component tooltip) {
Point p = source.getLocationOnScreen();
Rectangle wb = getBounds();
if (p.x + tooltip.getPreferredSize().width > wb.x + wb.width) {
p.x += source.getWidth() - tooltip.getPreferredSize().width;
}
p.y += source.getHeight();
if (p.y + tooltip.getPreferredSize().height > wb.y + wb.height) {
p.y -= source.getHeight() + tooltip.getPreferredSize().height;
}
return p;
}
/*
* (non-Javadoc)
*
* @see
* org.abh.lib.ui.modern.tooltip.ModernToolTipModel#showToolTip(org.abh.lib. ui.
* modern.ModernComponent, org.abh.lib.ui.modern.tooltip.ModernToolTipPanel,
* java.awt.Point)
*/
private synchronized void showToolTip(Component source, Component tooltip, Point p) {
// Hide any current ones
hideToolTips();
addToolTip(source, tooltip, p);
}
private synchronized void addToolTip(Component source, Component tooltip, Point p) {
JLayeredPane layeredPane = getLayeredPane();
if (layeredPane == null) {
return;
}
SwingUtilities.convertPointFromScreen(p, layeredPane);
tooltip.setBounds(p.x, p.y, tooltip.getPreferredSize().width, tooltip.getPreferredSize().height);
layeredPane.add(tooltip, JLayeredPane.POPUP_LAYER);
validate();
repaint();
}
private synchronized void hideToolTips() {
// System.err.println("hide");
JLayeredPane layeredPane = getLayeredPane();
for (Component c : layeredPane.getComponentsInLayer(JLayeredPane.POPUP_LAYER)) {
layeredPane.remove(c);
}
}
protected void doHideTooltips() {
ToolTipService.getInstance().hideToolTips(new ModernToolTipEvent(this, this));
}
@Override
public void tooltipShown(ModernToolTipEvent e) {
if (e.getP() != null) {
showToolTip(e.getSource(), e.getTooltip(), e.getP());
} else {
showToolTip(e.getSource(), e.getTooltip());
}
}
@Override
public void tooltipAdded(ModernToolTipEvent e) {
if (e.getP() != null) {
addToolTip(e.getSource(), e.getTooltip(), e.getP());
} else {
addToolTip(e.getSource(), e.getTooltip());
}
}
@Override
public void tooltipHidden(ModernToolTipEvent e) {
getLayeredPane().remove(e.getTooltip());
validate();
repaint();
}
/**
* Hide tool tips.
*/
@Override
public synchronized void tooltipsHidden(ModernToolTipEvent e) {
for (Component c : getLayeredPane().getComponentsInLayer(JLayeredPane.POPUP_LAYER)) {
getLayeredPane().remove(c);
}
validate();
repaint();
}
/**
* Sets the status.
*
* @param status the new status
*/
public final void setStatus(ModernDialogStatus status) {
mStatus = status;
}
/**
* Gets the status.
*
* @return the status
*/
public final ModernDialogStatus getStatus() {
return mStatus;
}
/**
* Returns true if the dialog was cancelled.
*
* @return true, if is cancelled
*/
public boolean isCancelled() {
return mStatus == ModernDialogStatus.CANCEL;
}
/**
* Close.
*/
protected void close() {
setVisible(false);
if (mAutoDispose) {
dispose();
}
}
}
| [
"[email protected]"
] | |
934c6a95959eaa8a1a0b3ee3db627512abfdd9f1 | b4b1990cd06f3f0cd618fa6308e0036043cd5744 | /vege-admin/src/main/java/com/vcooline/crm/admin/service/CrmCustomerService.java | 8654276337b352edb1a4898b8f0e21bcc90921ed | [] | no_license | yp1989/vege | c1ea8e9cfcf4429d60c7e9f2fdfde42695860f18 | 5794b7f18d4af08600aa47533971769d6ef9dd5e | refs/heads/master | 2021-04-26T04:47:55.345884 | 2017-10-15T08:16:15 | 2017-10-15T08:16:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 841 | java | package com.vcooline.crm.admin.service;
import com.vcooline.crm.common.model.CrmCustomer;
import java.util.List;
/**
* Created by xinbaojian on 15/7/17.
*/
public interface CrmCustomerService {
int deleteByPrimaryKey(Long id);
int insert(CrmCustomer record);
int insertSelective(CrmCustomer record);
CrmCustomer selectByPrimaryKey(Long id);
int updateByPrimaryKeySelective(CrmCustomer record);
int updateByPrimaryKey(CrmCustomer record);
/**
* 根据线索ID查询该线索的联系人
*
* @param clueId
* @param releType
* @return
*/
List<CrmCustomer> getCustlistByClueId(Long clueId, Byte releType);
/**
* 根据手机号模糊查询客户信息
*
* @param phone
* @return
*/
List<CrmCustomer> getCustListByPhone(String phone);
}
| [
"[email protected]"
] | |
e50303e2590eb1c9547e5847a30fae5281f21307 | 7129ca7b404f87ffa593dc861a70053c58a15d76 | /refrigeratorSemi/src/com/refrigerator/common/controller/AjaxTodayRecipeController.java | 3342d0e5ccb95fb4eaec04c3234503b14dafdb92 | [] | no_license | seongit/refrigerator_workspace | e37dad4d80b155fe50978d33f4d55e3fbebf7dd4 | 38e2832defe254ffc114dc66bf61dc49023188b7 | refs/heads/main | 2023-07-24T00:09:02.009808 | 2021-09-12T08:09:25 | 2021-09-12T08:09:25 | 378,642,113 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,570 | java | package com.refrigerator.common.controller;
import java.io.IOException;
import java.util.ArrayList;
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 com.google.gson.Gson;
import com.refrigerator.recipe.model.service.RecipeService;
import com.refrigerator.recipe.model.vo.Recipe;
/**
* Servlet implementation class AjaxTodayRecipeController
*/
@WebServlet("/today.recipe")
public class AjaxTodayRecipeController extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public AjaxTodayRecipeController() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
ArrayList<Recipe> list = new RecipeService().selectTodayRecipe();
response.setContentType("application/json; charset=utf-8");
request.setAttribute("list",list);
new Gson().toJson(list, response.getWriter());
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
doGet(request, response);
}
}
| [
"[email protected]"
] | |
bbbf43e5e528ae7f882ad5be2a2cfd4abd5200dd | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/26/26_560ec3b9c3985ca3ce5536b74b21e5c6a781b692/UIBean/26_560ec3b9c3985ca3ce5536b74b21e5c6a781b692_UIBean_t.java | fb4f53740ce65d6d17c2ef7d00fb0d04c41dc48d | [] | 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,648 | java | /* Copyright c 2005-2012.
* Licensed under GNU LESSER General Public License, Version 3.
* http://www.gnu.org/licenses
*/
package org.beangle.struts2.view.component;
import java.io.Writer;
import java.text.MessageFormat;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts2.ServletActionContext;
import org.beangle.commons.lang.Chars;
import org.beangle.commons.lang.Strings;
import org.beangle.struts2.util.TextResourceHelper;
import org.beangle.struts2.view.UIIdGenerator;
import org.beangle.struts2.view.template.TemplateEngine;
import org.beangle.struts2.view.template.Theme;
import org.beangle.struts2.view.template.ThemeStack;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.inject.Container;
import com.opensymphony.xwork2.util.ValueStack;
/**
* @author chaostone
*/
public abstract class UIBean extends Component {
protected String id;
protected Theme theme;
public UIBean(ValueStack stack) {
super(stack);
}
protected void evaluateParams() {
}
@Override
public boolean end(Writer writer, String body) {
evaluateParams();
try {
mergeTemplate(writer);
} catch (Exception e) {
throw new RuntimeException(e);
}
popComponentStack();
return false;
}
protected void mergeTemplate(Writer writer) throws Exception {
TemplateEngine engine = getContainer().getInstance(TemplateEngine.class);
engine.render(getTheme().getTemplatePath(getClass(), engine.getSuffix()), stack, writer, this);
}
/**
* 将所有额外参数链接起来
*
* @return 空格开始 空格相隔的参数字符串
*/
public String getParameterString() {
StringBuilder sb = new StringBuilder(parameters.size() * 10);
for (Map.Entry<String, Object> entry : parameters.entrySet()) {
String key = entry.getKey();
if ("cssClass".equals(key)) key = "class";
sb.append(" ").append(key).append("=\"").append(entry.getValue().toString()).append("\"");
}
return sb.toString();
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
protected Theme getTheme() {
if (null == theme) {
ThemeStack themestack = (ThemeStack) stack.getContext().get(Theme.THEME_STACK);
if (null != themestack) theme = themestack.peek();
if (null == theme) theme = (Theme) stack.getContext().get(Theme.THEME);
return theme;
} else {
return theme;
}
}
public void setTheme(String theme) {
this.theme = Theme.getTheme(theme);
}
/**
* 获得对应的国际化信息
*
* @param text
* @return 当第一个字符不是字母或者不包含.或者包含空格的均返回原有字符串
*/
protected String getText(String text) {
return getText(text, text);
}
protected String getText(String text, String defaultText) {
if (Strings.isEmpty(text)) return defaultText;
if (!Chars.isAsciiAlpha(text.charAt(0))) return defaultText;
if (-1 == text.indexOf('.') || -1 < text.indexOf(' ')) {
return defaultText;
} else {
// long start = System.currentTimeMillis();
String msg = TextResourceHelper.getText(text, defaultText, stack);
// System.out.println("I18n:" + text + "->" + msg + " use :" + (System.currentTimeMillis() -
// start));
return msg;
}
}
protected HttpServletRequest getRequest() {
return (HttpServletRequest) stack.getContext().get(ServletActionContext.HTTP_REQUEST);
}
protected String getRequestURI() {
return getRequest().getRequestURI();
}
protected String getRequestParameter(String name) {
return getRequest().getParameter(name);
}
private static final String Number_Fmt = "{0,number,#.##}";
protected Object getValue(Object obj, String property) {
stack.push(obj);
try {
Object value = stack.findValue(property);
if (value instanceof Number) { return MessageFormat.format(Number_Fmt, value); }
return value;
} finally {
stack.pop();
}
}
protected Container getContainer() {
return (Container) stack.getContext().get(ActionContext.CONTAINER);
}
protected String render(String uri) {
return getContainer().getInstance(ActionUrlRender.class).render(getRequestURI(), uri);
}
protected void generateIdIfEmpty() {
if (Strings.isEmpty(id)) {
id = ((UIIdGenerator) stack.getContext().get(UIIdGenerator.GENERATOR)).generate(getClass());
}
}
}
| [
"[email protected]"
] | |
76c11c83851f7953498de7c424df17d01307856b | 0a6336496abdb49a8fbcbbbcad581c850356f018 | /src/main/java/org/openapitools/client/model/GetWalletTransactionDetailsByTransactionIDRIBS.java | a1aa5092010ca785e13a4b255618c546f412afec | [] | no_license | Crypto-APIs/Crypto_APIs_2.0_SDK_Java | 8afba51f53a7a617d66ef6596010cc034a48c17d | 29bac849e4590c4decfa80458fce94a914801019 | refs/heads/main | 2022-09-24T04:43:37.066099 | 2022-09-12T17:38:13 | 2022-09-12T17:38:13 | 360,245,136 | 5 | 1 | null | null | null | null | UTF-8 | Java | false | false | 49,098 | java | /*
* CryptoAPIs
* Crypto APIs is a complex and innovative infrastructure layer that radically simplifies the development of any Blockchain and Crypto related applications. Organized around REST, Crypto APIs can assist both novice Bitcoin/Ethereum enthusiasts and crypto experts with the development of their blockchain applications. Crypto APIs provides unified endpoints and data, raw data, automatic tokens and coins forwardings, callback functionalities, and much more.
*
* The version of the OpenAPI document: 2021-03-20
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.openapitools.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.openapitools.client.model.GetTransactionDetailsByTransactionIDRIBSZVJoinSplitInner;
import org.openapitools.client.model.GetTransactionDetailsByTransactionIDRIBSZVShieldedOutputInner;
import org.openapitools.client.model.GetTransactionDetailsByTransactionIDRIBSZVShieldedSpendInner;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSB;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSBC;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSBSC;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSD;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSD2;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSE;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSEC;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSL;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSP;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSPGasPrice;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBST;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSZ;
import org.openapitools.client.model.GetWalletTransactionDetailsByTransactionIDRIBSZVinInner;
import org.openapitools.client.model.ListTransactionsByBlockHeightRIBSZVoutInner;
import javax.ws.rs.core.GenericType;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.HashMap;
import java.util.Map;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapter;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import com.google.gson.JsonPrimitive;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import io.cryptoapis.sdk.JSON;
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2022-09-12T15:09:18.638874Z[Etc/UTC]")
public class GetWalletTransactionDetailsByTransactionIDRIBS extends AbstractOpenApiSchema {
private static final Logger log = Logger.getLogger(GetWalletTransactionDetailsByTransactionIDRIBS.class.getName());
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public <T> TypeAdapter<T> create(Gson gson, TypeToken<T> type) {
if (!GetWalletTransactionDetailsByTransactionIDRIBS.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'GetWalletTransactionDetailsByTransactionIDRIBS' and its subtypes
}
final TypeAdapter<JsonElement> elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBSB> adapterGetWalletTransactionDetailsByTransactionIDRIBSB = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBSB.class));
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBSBC> adapterGetWalletTransactionDetailsByTransactionIDRIBSBC = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBSBC.class));
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBSBSC> adapterGetWalletTransactionDetailsByTransactionIDRIBSBSC = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBSBSC.class));
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBSD> adapterGetWalletTransactionDetailsByTransactionIDRIBSD = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBSD.class));
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBSD2> adapterGetWalletTransactionDetailsByTransactionIDRIBSD2 = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBSD2.class));
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBSE> adapterGetWalletTransactionDetailsByTransactionIDRIBSE = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBSE.class));
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBSEC> adapterGetWalletTransactionDetailsByTransactionIDRIBSEC = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBSEC.class));
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBSL> adapterGetWalletTransactionDetailsByTransactionIDRIBSL = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBSL.class));
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBSP> adapterGetWalletTransactionDetailsByTransactionIDRIBSP = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBSP.class));
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBST> adapterGetWalletTransactionDetailsByTransactionIDRIBST = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBST.class));
final TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBSZ> adapterGetWalletTransactionDetailsByTransactionIDRIBSZ = gson.getDelegateAdapter(this, TypeToken.get(GetWalletTransactionDetailsByTransactionIDRIBSZ.class));
return (TypeAdapter<T>) new TypeAdapter<GetWalletTransactionDetailsByTransactionIDRIBS>() {
@Override
public void write(JsonWriter out, GetWalletTransactionDetailsByTransactionIDRIBS value) throws IOException {
if (value == null || value.getActualInstance() == null) {
elementAdapter.write(out, null);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBSB`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBSB) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBSB.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBSB)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBSBC`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBSBC) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBSBC.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBSBC)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBSBSC`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBSBSC) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBSBSC.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBSBSC)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBSD`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBSD) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBSD.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBSD)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBSD2`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBSD2) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBSD2.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBSD2)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBSE`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBSE) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBSE.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBSE)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBSEC`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBSEC) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBSEC.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBSEC)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBSL`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBSL) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBSL.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBSL)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBSP`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBSP) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBSP.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBSP)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBST`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBST) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBST.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBST)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
// check if the actual instance is of the type `GetWalletTransactionDetailsByTransactionIDRIBSZ`
if (value.getActualInstance() instanceof GetWalletTransactionDetailsByTransactionIDRIBSZ) {
JsonObject obj = adapterGetWalletTransactionDetailsByTransactionIDRIBSZ.toJsonTree((GetWalletTransactionDetailsByTransactionIDRIBSZ)value.getActualInstance()).getAsJsonObject();
elementAdapter.write(out, obj);
return;
}
throw new IOException("Failed to serialize as the type doesn't match oneOf schemas: GetWalletTransactionDetailsByTransactionIDRIBSB, GetWalletTransactionDetailsByTransactionIDRIBSBC, GetWalletTransactionDetailsByTransactionIDRIBSBSC, GetWalletTransactionDetailsByTransactionIDRIBSD, GetWalletTransactionDetailsByTransactionIDRIBSD2, GetWalletTransactionDetailsByTransactionIDRIBSE, GetWalletTransactionDetailsByTransactionIDRIBSEC, GetWalletTransactionDetailsByTransactionIDRIBSL, GetWalletTransactionDetailsByTransactionIDRIBSP, GetWalletTransactionDetailsByTransactionIDRIBST, GetWalletTransactionDetailsByTransactionIDRIBSZ");
}
@Override
public GetWalletTransactionDetailsByTransactionIDRIBS read(JsonReader in) throws IOException {
Object deserialized = null;
JsonObject jsonObject = elementAdapter.read(in).getAsJsonObject();
int match = 0;
ArrayList<String> errorMessages = new ArrayList<>();
TypeAdapter actualAdapter = elementAdapter;
// deserialize GetWalletTransactionDetailsByTransactionIDRIBSB
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBSB.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBSB;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBSB'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSB failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBSB'", e);
}
// deserialize GetWalletTransactionDetailsByTransactionIDRIBSBC
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBSBC.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBSBC;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBSBC'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSBC failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBSBC'", e);
}
// deserialize GetWalletTransactionDetailsByTransactionIDRIBSBSC
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBSBSC.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBSBSC;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBSBSC'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSBSC failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBSBSC'", e);
}
// deserialize GetWalletTransactionDetailsByTransactionIDRIBSD
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBSD.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBSD;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBSD'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSD failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBSD'", e);
}
// deserialize GetWalletTransactionDetailsByTransactionIDRIBSD2
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBSD2.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBSD2;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBSD2'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSD2 failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBSD2'", e);
}
// deserialize GetWalletTransactionDetailsByTransactionIDRIBSE
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBSE.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBSE;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBSE'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSE failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBSE'", e);
}
// deserialize GetWalletTransactionDetailsByTransactionIDRIBSEC
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBSEC.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBSEC;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBSEC'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSEC failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBSEC'", e);
}
// deserialize GetWalletTransactionDetailsByTransactionIDRIBSL
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBSL.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBSL;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBSL'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSL failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBSL'", e);
}
// deserialize GetWalletTransactionDetailsByTransactionIDRIBSP
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBSP.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBSP;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBSP'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSP failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBSP'", e);
}
// deserialize GetWalletTransactionDetailsByTransactionIDRIBST
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBST.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBST;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBST'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBST failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBST'", e);
}
// deserialize GetWalletTransactionDetailsByTransactionIDRIBSZ
try {
// validate the JSON object to see if any exception is thrown
GetWalletTransactionDetailsByTransactionIDRIBSZ.validateJsonObject(jsonObject);
actualAdapter = adapterGetWalletTransactionDetailsByTransactionIDRIBSZ;
match++;
log.log(Level.FINER, "Input data matches schema 'GetWalletTransactionDetailsByTransactionIDRIBSZ'");
} catch (Exception e) {
// deserialization failed, continue
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSZ failed with `%s`.", e.getMessage()));
log.log(Level.FINER, "Input data does not match schema 'GetWalletTransactionDetailsByTransactionIDRIBSZ'", e);
}
if (match == 1) {
GetWalletTransactionDetailsByTransactionIDRIBS ret = new GetWalletTransactionDetailsByTransactionIDRIBS();
ret.setActualInstance(actualAdapter.fromJsonTree(jsonObject));
return ret;
}
throw new IOException(String.format("Failed deserialization for GetWalletTransactionDetailsByTransactionIDRIBS: %d classes match result, expected 1. Detailed failure message for oneOf schemas: %s. JSON: %s", match, errorMessages, jsonObject.toString()));
}
}.nullSafe();
}
}
// store a list of schema names defined in oneOf
public static final Map<String, GenericType> schemas = new HashMap<String, GenericType>();
public GetWalletTransactionDetailsByTransactionIDRIBS() {
super("oneOf", Boolean.FALSE);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBSB o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBSBC o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBSBSC o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBSD o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBSD2 o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBSE o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBSEC o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBSL o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBSP o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBST o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
public GetWalletTransactionDetailsByTransactionIDRIBS(GetWalletTransactionDetailsByTransactionIDRIBSZ o) {
super("oneOf", Boolean.FALSE);
setActualInstance(o);
}
static {
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBSB", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBSB>() {
});
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBSBC", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBSBC>() {
});
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBSBSC", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBSBSC>() {
});
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBSD", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBSD>() {
});
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBSD2", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBSD2>() {
});
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBSE", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBSE>() {
});
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBSEC", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBSEC>() {
});
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBSL", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBSL>() {
});
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBSP", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBSP>() {
});
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBST", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBST>() {
});
schemas.put("GetWalletTransactionDetailsByTransactionIDRIBSZ", new GenericType<GetWalletTransactionDetailsByTransactionIDRIBSZ>() {
});
}
@Override
public Map<String, GenericType> getSchemas() {
return GetWalletTransactionDetailsByTransactionIDRIBS.schemas;
}
/**
* Set the instance that matches the oneOf child schema, check
* the instance parameter is valid against the oneOf child schemas:
* GetWalletTransactionDetailsByTransactionIDRIBSB, GetWalletTransactionDetailsByTransactionIDRIBSBC, GetWalletTransactionDetailsByTransactionIDRIBSBSC, GetWalletTransactionDetailsByTransactionIDRIBSD, GetWalletTransactionDetailsByTransactionIDRIBSD2, GetWalletTransactionDetailsByTransactionIDRIBSE, GetWalletTransactionDetailsByTransactionIDRIBSEC, GetWalletTransactionDetailsByTransactionIDRIBSL, GetWalletTransactionDetailsByTransactionIDRIBSP, GetWalletTransactionDetailsByTransactionIDRIBST, GetWalletTransactionDetailsByTransactionIDRIBSZ
*
* It could be an instance of the 'oneOf' schemas.
* The oneOf child schemas may themselves be a composed schema (allOf, anyOf, oneOf).
*/
@Override
public void setActualInstance(Object instance) {
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBSB) {
super.setActualInstance(instance);
return;
}
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBSBC) {
super.setActualInstance(instance);
return;
}
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBSBSC) {
super.setActualInstance(instance);
return;
}
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBSD) {
super.setActualInstance(instance);
return;
}
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBSD2) {
super.setActualInstance(instance);
return;
}
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBSE) {
super.setActualInstance(instance);
return;
}
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBSEC) {
super.setActualInstance(instance);
return;
}
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBSL) {
super.setActualInstance(instance);
return;
}
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBSP) {
super.setActualInstance(instance);
return;
}
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBST) {
super.setActualInstance(instance);
return;
}
if (instance instanceof GetWalletTransactionDetailsByTransactionIDRIBSZ) {
super.setActualInstance(instance);
return;
}
throw new RuntimeException("Invalid instance type. Must be GetWalletTransactionDetailsByTransactionIDRIBSB, GetWalletTransactionDetailsByTransactionIDRIBSBC, GetWalletTransactionDetailsByTransactionIDRIBSBSC, GetWalletTransactionDetailsByTransactionIDRIBSD, GetWalletTransactionDetailsByTransactionIDRIBSD2, GetWalletTransactionDetailsByTransactionIDRIBSE, GetWalletTransactionDetailsByTransactionIDRIBSEC, GetWalletTransactionDetailsByTransactionIDRIBSL, GetWalletTransactionDetailsByTransactionIDRIBSP, GetWalletTransactionDetailsByTransactionIDRIBST, GetWalletTransactionDetailsByTransactionIDRIBSZ");
}
/**
* Get the actual instance, which can be the following:
* GetWalletTransactionDetailsByTransactionIDRIBSB, GetWalletTransactionDetailsByTransactionIDRIBSBC, GetWalletTransactionDetailsByTransactionIDRIBSBSC, GetWalletTransactionDetailsByTransactionIDRIBSD, GetWalletTransactionDetailsByTransactionIDRIBSD2, GetWalletTransactionDetailsByTransactionIDRIBSE, GetWalletTransactionDetailsByTransactionIDRIBSEC, GetWalletTransactionDetailsByTransactionIDRIBSL, GetWalletTransactionDetailsByTransactionIDRIBSP, GetWalletTransactionDetailsByTransactionIDRIBST, GetWalletTransactionDetailsByTransactionIDRIBSZ
*
* @return The actual instance (GetWalletTransactionDetailsByTransactionIDRIBSB, GetWalletTransactionDetailsByTransactionIDRIBSBC, GetWalletTransactionDetailsByTransactionIDRIBSBSC, GetWalletTransactionDetailsByTransactionIDRIBSD, GetWalletTransactionDetailsByTransactionIDRIBSD2, GetWalletTransactionDetailsByTransactionIDRIBSE, GetWalletTransactionDetailsByTransactionIDRIBSEC, GetWalletTransactionDetailsByTransactionIDRIBSL, GetWalletTransactionDetailsByTransactionIDRIBSP, GetWalletTransactionDetailsByTransactionIDRIBST, GetWalletTransactionDetailsByTransactionIDRIBSZ)
*/
@Override
public Object getActualInstance() {
return super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSB`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBSB`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSB`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBSB`
*/
public GetWalletTransactionDetailsByTransactionIDRIBSB getGetWalletTransactionDetailsByTransactionIDRIBSB() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBSB)super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSBC`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBSBC`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSBC`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBSBC`
*/
public GetWalletTransactionDetailsByTransactionIDRIBSBC getGetWalletTransactionDetailsByTransactionIDRIBSBC() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBSBC)super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSBSC`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBSBSC`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSBSC`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBSBSC`
*/
public GetWalletTransactionDetailsByTransactionIDRIBSBSC getGetWalletTransactionDetailsByTransactionIDRIBSBSC() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBSBSC)super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSD`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBSD`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSD`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBSD`
*/
public GetWalletTransactionDetailsByTransactionIDRIBSD getGetWalletTransactionDetailsByTransactionIDRIBSD() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBSD)super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSD2`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBSD2`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSD2`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBSD2`
*/
public GetWalletTransactionDetailsByTransactionIDRIBSD2 getGetWalletTransactionDetailsByTransactionIDRIBSD2() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBSD2)super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSE`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBSE`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSE`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBSE`
*/
public GetWalletTransactionDetailsByTransactionIDRIBSE getGetWalletTransactionDetailsByTransactionIDRIBSE() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBSE)super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSEC`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBSEC`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSEC`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBSEC`
*/
public GetWalletTransactionDetailsByTransactionIDRIBSEC getGetWalletTransactionDetailsByTransactionIDRIBSEC() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBSEC)super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSL`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBSL`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSL`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBSL`
*/
public GetWalletTransactionDetailsByTransactionIDRIBSL getGetWalletTransactionDetailsByTransactionIDRIBSL() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBSL)super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSP`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBSP`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSP`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBSP`
*/
public GetWalletTransactionDetailsByTransactionIDRIBSP getGetWalletTransactionDetailsByTransactionIDRIBSP() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBSP)super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBST`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBST`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBST`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBST`
*/
public GetWalletTransactionDetailsByTransactionIDRIBST getGetWalletTransactionDetailsByTransactionIDRIBST() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBST)super.getActualInstance();
}
/**
* Get the actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSZ`. If the actual instance is not `GetWalletTransactionDetailsByTransactionIDRIBSZ`,
* the ClassCastException will be thrown.
*
* @return The actual instance of `GetWalletTransactionDetailsByTransactionIDRIBSZ`
* @throws ClassCastException if the instance is not `GetWalletTransactionDetailsByTransactionIDRIBSZ`
*/
public GetWalletTransactionDetailsByTransactionIDRIBSZ getGetWalletTransactionDetailsByTransactionIDRIBSZ() throws ClassCastException {
return (GetWalletTransactionDetailsByTransactionIDRIBSZ)super.getActualInstance();
}
/**
* Validates the JSON Object and throws an exception if issues found
*
* @param jsonObj JSON Object
* @throws IOException if the JSON Object is invalid with respect to GetWalletTransactionDetailsByTransactionIDRIBS
*/
public static void validateJsonObject(JsonObject jsonObj) throws IOException {
// validate oneOf schemas one by one
int validCount = 0;
ArrayList<String> errorMessages = new ArrayList<>();
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBSB
try {
GetWalletTransactionDetailsByTransactionIDRIBSB.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSB failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBSBC
try {
GetWalletTransactionDetailsByTransactionIDRIBSBC.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSBC failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBSBSC
try {
GetWalletTransactionDetailsByTransactionIDRIBSBSC.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSBSC failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBSD
try {
GetWalletTransactionDetailsByTransactionIDRIBSD.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSD failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBSD2
try {
GetWalletTransactionDetailsByTransactionIDRIBSD2.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSD2 failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBSE
try {
GetWalletTransactionDetailsByTransactionIDRIBSE.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSE failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBSEC
try {
GetWalletTransactionDetailsByTransactionIDRIBSEC.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSEC failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBSL
try {
GetWalletTransactionDetailsByTransactionIDRIBSL.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSL failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBSP
try {
GetWalletTransactionDetailsByTransactionIDRIBSP.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSP failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBST
try {
GetWalletTransactionDetailsByTransactionIDRIBST.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBST failed with `%s`.", e.getMessage()));
// continue to the next one
}
// validate the json string with GetWalletTransactionDetailsByTransactionIDRIBSZ
try {
GetWalletTransactionDetailsByTransactionIDRIBSZ.validateJsonObject(jsonObj);
validCount++;
} catch (Exception e) {
errorMessages.add(String.format("Deserialization for GetWalletTransactionDetailsByTransactionIDRIBSZ failed with `%s`.", e.getMessage()));
// continue to the next one
}
if (validCount != 1) {
throw new IOException(String.format("The JSON string is invalid for GetWalletTransactionDetailsByTransactionIDRIBS with oneOf schemas: GetWalletTransactionDetailsByTransactionIDRIBSB, GetWalletTransactionDetailsByTransactionIDRIBSBC, GetWalletTransactionDetailsByTransactionIDRIBSBSC, GetWalletTransactionDetailsByTransactionIDRIBSD, GetWalletTransactionDetailsByTransactionIDRIBSD2, GetWalletTransactionDetailsByTransactionIDRIBSE, GetWalletTransactionDetailsByTransactionIDRIBSEC, GetWalletTransactionDetailsByTransactionIDRIBSL, GetWalletTransactionDetailsByTransactionIDRIBSP, GetWalletTransactionDetailsByTransactionIDRIBST, GetWalletTransactionDetailsByTransactionIDRIBSZ. %d class(es) match the result, expected 1. Detailed failure message for oneOf schemas: %s. JSON: %s", validCount, errorMessages, jsonObj.toString()));
}
}
/**
* Create an instance of GetWalletTransactionDetailsByTransactionIDRIBS given an JSON string
*
* @param jsonString JSON string
* @return An instance of GetWalletTransactionDetailsByTransactionIDRIBS
* @throws IOException if the JSON string is invalid with respect to GetWalletTransactionDetailsByTransactionIDRIBS
*/
public static GetWalletTransactionDetailsByTransactionIDRIBS fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, GetWalletTransactionDetailsByTransactionIDRIBS.class);
}
/**
* Convert an instance of GetWalletTransactionDetailsByTransactionIDRIBS to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}
| [
"[email protected]"
] | |
67f0460903e7521aacb2be8cca03636b25d998aa | 9b5934a0d0a918ceecf441978302b6a03c997bd0 | /src/Pharmachy_Management_Final/Madecine_Sells.java | a75df105a997361dea0a1131e3e631b9e144ebbc | [] | no_license | jasminakter01/Pharmacy-System-With-JAva | a3cdb231d15b296aa94fabfbfe31a5f969b217c1 | 2d6cb02aac63b64f200cb313074ffb1862479970 | refs/heads/main | 2023-02-03T12:34:53.873108 | 2020-12-23T09:58:58 | 2020-12-23T09:58:58 | 323,865,240 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 40,213 | 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 Pharmachy_Management_Final;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.KeyEvent;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import java.awt.print.PrinterException;
import java.awt.print.PrinterJob;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
import javax.swing.table.DefaultTableModel;
/**
*
* @author jasmi
*/
public class Madecine_Sells extends javax.swing.JFrame {
Connection ct=null;
PreparedStatement ps=null;
ResultSet rs=null;
Statement st=null;
int i=0;
public Madecine_Sells(String status) {
initComponents();
show_madecine();
statusl.setText(status);
if(status.equals("Admin")){
}
else{ Sample_Button.setVisible(false);
Sample_Button1.setVisible(false);
Sample_Button2.setVisible(false);
Sample_Button3.setVisible(false);
Sample_Button4.setVisible(false);
jButton4.setVisible(false);}
}
private Madecine_Sells() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
jLabel12 = new javax.swing.JLabel();
jLabel105 = new javax.swing.JLabel();
jLabel13 = new javax.swing.JLabel();
jButton3 = new javax.swing.JButton();
jPanel6 = new javax.swing.JPanel();
jComboBox1 = new javax.swing.JComboBox<>();
jLabel3 = new javax.swing.JLabel();
jTextField2 = new javax.swing.JTextField();
jLabel1 = new javax.swing.JLabel();
jTextField4 = new javax.swing.JTextField();
jLabel4 = new javax.swing.JLabel();
jTextField3 = new javax.swing.JTextField();
jLabel5 = new javax.swing.JLabel();
jTextField5 = new javax.swing.JTextField();
jLabel6 = new javax.swing.JLabel();
jButton2 = new javax.swing.JButton();
jButton9 = new javax.swing.JButton();
jPanel4 = new javax.swing.JPanel();
dat = new javax.swing.JLabel();
jLabel9 = new javax.swing.JLabel();
jLabel10 = new javax.swing.JLabel();
jLabel11 = new javax.swing.JLabel();
paid = new javax.swing.JTextField();
total = new javax.swing.JTextField();
deu = new javax.swing.JTextField();
jLabel14 = new javax.swing.JLabel();
jLabel15 = new javax.swing.JLabel();
jLabel16 = new javax.swing.JLabel();
jLabel17 = new javax.swing.JLabel();
jScrollPane1 = new javax.swing.JScrollPane();
jTable1 = new javax.swing.JTable();
total1 = new javax.swing.JLabel();
jButton10 = new javax.swing.JButton();
jPanel5 = new javax.swing.JPanel();
jButton4 = new javax.swing.JButton();
jButton5 = new javax.swing.JButton();
jButton6 = new javax.swing.JButton();
jButton7 = new javax.swing.JButton();
jButton8 = new javax.swing.JButton();
Sample_Button = new javax.swing.JButton();
Sample_Button1 = new javax.swing.JButton();
Sample_Button2 = new javax.swing.JButton();
sample_Bill_Button1 = new javax.swing.JButton();
Sample_Button3 = new javax.swing.JButton();
Sample_Button4 = new javax.swing.JButton();
jPanel3 = new javax.swing.JPanel();
statusl = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setUndecorated(true);
getContentPane().setLayout(null);
jPanel1.setBackground(new java.awt.Color(204, 0, 0));
jPanel1.setLayout(null);
jLabel12.setFont(new java.awt.Font("Tahoma", 1, 36)); // NOI18N
jLabel12.setForeground(new java.awt.Color(255, 255, 255));
jLabel12.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel12.setText("Sales");
jPanel1.add(jLabel12);
jLabel12.setBounds(80, 0, 730, 40);
jLabel105.setFont(new java.awt.Font("Tahoma", 1, 48)); // NOI18N
jLabel105.setForeground(new java.awt.Color(255, 255, 255));
jLabel105.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel105.setText("-");
jLabel105.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
jLabel105MouseClicked(evt);
}
});
jPanel1.add(jLabel105);
jLabel105.setBounds(910, 0, 40, 40);
jLabel13.setFont(new java.awt.Font("Tahoma", 1, 36)); // NOI18N
jLabel13.setForeground(new java.awt.Color(255, 255, 255));
jLabel13.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel13.setText("X");
jLabel13.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
jLabel13MouseClicked(evt);
}
});
jPanel1.add(jLabel13);
jLabel13.setBounds(950, 0, 50, 40);
jButton3.setBackground(new java.awt.Color(204, 0, 51));
jButton3.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
jButton3.setForeground(new java.awt.Color(255, 255, 255));
jButton3.setText("Medecine info");
jButton3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton3ActionPerformed(evt);
}
});
jPanel1.add(jButton3);
jButton3.setBounds(840, 50, 160, 23);
jPanel6.setBackground(new java.awt.Color(153, 0, 51));
javax.swing.GroupLayout jPanel6Layout = new javax.swing.GroupLayout(jPanel6);
jPanel6.setLayout(jPanel6Layout);
jPanel6Layout.setHorizontalGroup(
jPanel6Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 1010, Short.MAX_VALUE)
);
jPanel6Layout.setVerticalGroup(
jPanel6Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 10, Short.MAX_VALUE)
);
jPanel1.add(jPanel6);
jPanel6.setBounds(0, 40, 1010, 10);
jComboBox1.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jComboBox1.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "Medicine" }));
jComboBox1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jComboBox1ActionPerformed(evt);
}
});
jComboBox1.addKeyListener(new java.awt.event.KeyAdapter() {
public void keyPressed(java.awt.event.KeyEvent evt) {
jComboBox1KeyPressed(evt);
}
});
jPanel1.add(jComboBox1);
jComboBox1.setBounds(80, 140, 140, 30);
jLabel3.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jLabel3.setForeground(new java.awt.Color(255, 255, 255));
jLabel3.setText("Medicine");
jPanel1.add(jLabel3);
jLabel3.setBounds(80, 120, 80, 20);
jTextField2.setEditable(false);
jTextField2.setBackground(new java.awt.Color(255, 255, 255));
jTextField2.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jPanel1.add(jTextField2);
jTextField2.setBounds(240, 140, 120, 30);
jLabel1.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jLabel1.setForeground(new java.awt.Color(255, 255, 255));
jLabel1.setText("Stock Quantity");
jPanel1.add(jLabel1);
jLabel1.setBounds(240, 120, 100, 20);
jTextField4.setEditable(false);
jTextField4.setBackground(new java.awt.Color(255, 255, 255));
jTextField4.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jPanel1.add(jTextField4);
jTextField4.setBounds(380, 140, 110, 30);
jLabel4.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jLabel4.setForeground(new java.awt.Color(255, 255, 255));
jLabel4.setText("price");
jPanel1.add(jLabel4);
jLabel4.setBounds(380, 120, 80, 20);
jTextField3.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jTextField3.addKeyListener(new java.awt.event.KeyAdapter() {
public void keyPressed(java.awt.event.KeyEvent evt) {
jTextField3KeyPressed(evt);
}
public void keyTyped(java.awt.event.KeyEvent evt) {
jTextField3KeyTyped(evt);
}
});
jPanel1.add(jTextField3);
jTextField3.setBounds(80, 200, 210, 30);
jLabel5.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jLabel5.setForeground(new java.awt.Color(255, 255, 255));
jLabel5.setText("Sales Quantity");
jPanel1.add(jLabel5);
jLabel5.setBounds(80, 180, 130, 20);
jTextField5.setEditable(false);
jTextField5.setBackground(new java.awt.Color(255, 255, 255));
jTextField5.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jPanel1.add(jTextField5);
jTextField5.setBounds(300, 200, 200, 30);
jLabel6.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jLabel6.setForeground(new java.awt.Color(255, 255, 255));
jLabel6.setText("Total Price");
jPanel1.add(jLabel6);
jLabel6.setBounds(300, 180, 100, 20);
jButton2.setBackground(new java.awt.Color(204, 0, 0));
jButton2.setFont(new java.awt.Font("Tahoma", 1, 24)); // NOI18N
jButton2.setForeground(new java.awt.Color(255, 255, 255));
jButton2.setText("Clear");
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
jPanel1.add(jButton2);
jButton2.setBounds(760, 220, 110, 40);
jButton9.setBackground(new java.awt.Color(204, 0, 0));
jButton9.setFont(new java.awt.Font("Tahoma", 1, 24)); // NOI18N
jButton9.setForeground(new java.awt.Color(255, 255, 255));
jButton9.setText("Save");
jButton9.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton9ActionPerformed(evt);
}
});
jPanel1.add(jButton9);
jButton9.setBounds(650, 220, 110, 40);
jPanel4.setBackground(new java.awt.Color(204, 0, 0));
jPanel4.setLayout(null);
dat.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
dat.setForeground(new java.awt.Color(255, 255, 255));
jPanel4.add(dat);
dat.setBounds(470, 50, 120, 30);
jLabel9.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
jLabel9.setForeground(new java.awt.Color(255, 255, 255));
jLabel9.setText("Paid");
jPanel4.add(jLabel9);
jLabel9.setBounds(270, 520, 160, 20);
jLabel10.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
jLabel10.setForeground(new java.awt.Color(255, 255, 255));
jLabel10.setText("Due");
jPanel4.add(jLabel10);
jLabel10.setBounds(430, 520, 170, 20);
jLabel11.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
jLabel11.setForeground(new java.awt.Color(255, 255, 255));
jLabel11.setText("Total Ammount");
jPanel4.add(jLabel11);
jLabel11.setBounds(130, 520, 130, 20);
paid.setEditable(false);
paid.setBackground(new java.awt.Color(255, 255, 255));
paid.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
jPanel4.add(paid);
paid.setBounds(270, 540, 160, 30);
total.setEditable(false);
total.setBackground(new java.awt.Color(255, 255, 255));
total.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
total.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
totalActionPerformed(evt);
}
});
jPanel4.add(total);
total.setBounds(130, 540, 140, 30);
deu.setEditable(false);
deu.setBackground(new java.awt.Color(255, 255, 255));
deu.setFont(new java.awt.Font("Tahoma", 1, 14)); // NOI18N
jPanel4.add(deu);
deu.setBounds(430, 540, 170, 30);
jLabel14.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jLabel14.setForeground(new java.awt.Color(255, 255, 255));
jLabel14.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel14.setText("..................................................................");
jPanel4.add(jLabel14);
jLabel14.setBounds(60, 600, 200, 20);
jLabel15.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jLabel15.setForeground(new java.awt.Color(255, 255, 255));
jLabel15.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel15.setText("Client Signature");
jPanel4.add(jLabel15);
jLabel15.setBounds(60, 620, 200, 20);
jLabel16.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jLabel16.setForeground(new java.awt.Color(255, 255, 255));
jLabel16.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel16.setText("Authorized Signature");
jPanel4.add(jLabel16);
jLabel16.setBounds(400, 620, 200, 20);
jLabel17.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jLabel17.setForeground(new java.awt.Color(255, 255, 255));
jLabel17.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel17.setText("..................................................................");
jPanel4.add(jLabel17);
jLabel17.setBounds(400, 600, 200, 20);
jTable1.setModel(new javax.swing.table.DefaultTableModel(
new Object [][] {
},
new String [] {
"Madicine", "Sales Price", "Quantity", "Total Price"
}
));
jScrollPane1.setViewportView(jTable1);
jPanel4.add(jScrollPane1);
jScrollPane1.setBounds(30, 20, 570, 350);
total1.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
total1.setForeground(new java.awt.Color(255, 255, 255));
total1.setHorizontalAlignment(javax.swing.SwingConstants.RIGHT);
jPanel4.add(total1);
total1.setBounds(370, 370, 230, 40);
jPanel1.add(jPanel4);
jPanel4.setBounds(50, 270, 630, 430);
jButton10.setBackground(new java.awt.Color(204, 0, 0));
jButton10.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
jButton10.setForeground(new java.awt.Color(255, 255, 255));
jButton10.setText("Print");
jButton10.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton10ActionPerformed(evt);
}
});
jPanel1.add(jButton10);
jButton10.setBounds(700, 280, 150, 40);
getContentPane().add(jPanel1);
jPanel1.setBounds(360, 0, 1010, 730);
jPanel5.setBackground(new java.awt.Color(153, 0, 0));
jPanel5.setLayout(null);
jButton4.setBackground(new java.awt.Color(204, 0, 0));
jButton4.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
jButton4.setForeground(new java.awt.Color(255, 255, 255));
jButton4.setText("Stock");
jButton4.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton4ActionPerformed(evt);
}
});
jPanel5.add(jButton4);
jButton4.setBounds(30, 280, 290, 40);
jButton5.setBackground(new java.awt.Color(204, 0, 0));
jButton5.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
jButton5.setForeground(new java.awt.Color(255, 255, 255));
jButton5.setText("Home");
jButton5.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton5ActionPerformed(evt);
}
});
jPanel5.add(jButton5);
jButton5.setBounds(30, 80, 290, 40);
jButton6.setBackground(new java.awt.Color(204, 0, 0));
jButton6.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
jButton6.setForeground(new java.awt.Color(255, 255, 255));
jButton6.setText("Purchase");
jButton6.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton6ActionPerformed(evt);
}
});
jPanel5.add(jButton6);
jButton6.setBounds(30, 120, 290, 40);
jButton7.setBackground(new java.awt.Color(204, 0, 0));
jButton7.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
jButton7.setForeground(new java.awt.Color(255, 255, 255));
jButton7.setText("Sales");
jButton7.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton7ActionPerformed(evt);
}
});
jPanel5.add(jButton7);
jButton7.setBounds(30, 160, 290, 40);
jButton8.setBackground(new java.awt.Color(204, 0, 0));
jButton8.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
jButton8.setForeground(new java.awt.Color(255, 255, 255));
jButton8.setText("Madechine Info");
jButton8.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton8ActionPerformed(evt);
}
});
jPanel5.add(jButton8);
jButton8.setBounds(30, 200, 290, 40);
Sample_Button.setBackground(new java.awt.Color(204, 0, 0));
Sample_Button.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
Sample_Button.setForeground(new java.awt.Color(255, 255, 255));
Sample_Button.setText("Sample Purchase");
Sample_Button.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
Sample_ButtonActionPerformed(evt);
}
});
jPanel5.add(Sample_Button);
Sample_Button.setBounds(30, 320, 290, 40);
Sample_Button1.setBackground(new java.awt.Color(204, 0, 0));
Sample_Button1.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
Sample_Button1.setForeground(new java.awt.Color(255, 255, 255));
Sample_Button1.setText(" Purchase Show");
Sample_Button1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
Sample_Button1ActionPerformed(evt);
}
});
jPanel5.add(Sample_Button1);
Sample_Button1.setBounds(30, 360, 290, 40);
Sample_Button2.setBackground(new java.awt.Color(204, 0, 0));
Sample_Button2.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
Sample_Button2.setForeground(new java.awt.Color(255, 255, 255));
Sample_Button2.setText("Accounts");
Sample_Button2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
Sample_Button2ActionPerformed(evt);
}
});
jPanel5.add(Sample_Button2);
Sample_Button2.setBounds(30, 440, 290, 40);
sample_Bill_Button1.setBackground(new java.awt.Color(204, 0, 0));
sample_Bill_Button1.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
sample_Bill_Button1.setForeground(new java.awt.Color(255, 255, 255));
sample_Bill_Button1.setText(" Bill");
sample_Bill_Button1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
sample_Bill_Button1ActionPerformed(evt);
}
});
jPanel5.add(sample_Bill_Button1);
sample_Bill_Button1.setBounds(30, 240, 290, 40);
Sample_Button3.setBackground(new java.awt.Color(204, 0, 0));
Sample_Button3.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
Sample_Button3.setForeground(new java.awt.Color(255, 255, 255));
Sample_Button3.setText("Pin");
Sample_Button3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
Sample_Button3ActionPerformed(evt);
}
});
jPanel5.add(Sample_Button3);
Sample_Button3.setBounds(30, 480, 290, 40);
Sample_Button4.setBackground(new java.awt.Color(204, 0, 0));
Sample_Button4.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
Sample_Button4.setForeground(new java.awt.Color(255, 255, 255));
Sample_Button4.setText("Sales Show");
Sample_Button4.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
Sample_Button4ActionPerformed(evt);
}
});
jPanel5.add(Sample_Button4);
Sample_Button4.setBounds(30, 400, 290, 40);
getContentPane().add(jPanel5);
jPanel5.setBounds(0, 80, 370, 650);
jPanel3.setBackground(new java.awt.Color(153, 0, 0));
jPanel3.setLayout(null);
statusl.setFont(new java.awt.Font("Tahoma", 1, 36)); // NOI18N
statusl.setForeground(new java.awt.Color(153, 0, 0));
statusl.setText("User");
jPanel3.add(statusl);
statusl.setBounds(0, 0, 140, 40);
getContentPane().add(jPanel3);
jPanel3.setBounds(0, 0, 370, 80);
setSize(new java.awt.Dimension(1368, 724));
setLocationRelativeTo(null);
}// </editor-fold>//GEN-END:initComponents
private void jComboBox1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jComboBox1ActionPerformed
// TODO add your handling code here:
show_quantity();
}//GEN-LAST:event_jComboBox1ActionPerformed
void shows(){
Date dt = new Date();
DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
DefaultTableModel dtt=(DefaultTableModel) jTable1.getModel();
contest();
i=Integer.parseInt(jTextField5.getText())+i;
dtt.addRow(new Object[]{jComboBox1.getSelectedItem(),jTextField4.getText(),jTextField3.getText(),jTextField5.getText()});
total1.setText(""+i);
}
private void jTextField3KeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jTextField3KeyPressed
// TODO add your handling code here:
if (evt.getKeyCode() == KeyEvent.VK_ENTER) {
if(jTextField4.getText().isEmpty()){
JOptionPane.showMessageDialog(rootPane, "Madecine Price is Empty");
}else if(jTextField3.getText().isEmpty()){
JOptionPane.showMessageDialog(rootPane, "Madecine Quantity is Empty");
}else{
int price=0,quan=0,stock=0;
price=Integer.parseInt(jTextField4.getText());
quan=Integer.parseInt(jTextField3.getText());
stock=Integer.parseInt(jTextField2.getText());
if(stock<quan){
JOptionPane.showMessageDialog(rootPane, "Out Of Stock...");
}else{ jTextField5.setText(""+price*quan);
}
}
}
}//GEN-LAST:event_jTextField3KeyPressed
private void jLabel105MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jLabel105MouseClicked
// TODO add your handling code here:
this.setState(this.ICONIFIED);
}//GEN-LAST:event_jLabel105MouseClicked
private void jLabel13MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jLabel13MouseClicked
LogingPage l=new LogingPage();
l.setVisible(true);
dispose();
}//GEN-LAST:event_jLabel13MouseClicked
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton3ActionPerformed
// TODO add your handling code here:
Medicine_Info pr=new Medicine_Info(statusl.getText());
pr.setVisible(true);
}//GEN-LAST:event_jButton3ActionPerformed
private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton4ActionPerformed
// TODO add your handling code here:
Madecine_Stock s=new Madecine_Stock(statusl.getText());
s.setVisible(true);
dispose();
}//GEN-LAST:event_jButton4ActionPerformed
private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton5ActionPerformed
// TODO add your handling code here:
Home_PAge hp=new Home_PAge(statusl.getText());
hp.setVisible(true);
dispose();
}//GEN-LAST:event_jButton5ActionPerformed
private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton6ActionPerformed
Madechine_Purchase ms=new Madechine_Purchase(statusl.getText());
ms.setVisible(true);
dispose();
}//GEN-LAST:event_jButton6ActionPerformed
private void jButton7ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton7ActionPerformed
Madecine_Sells ms=new Madecine_Sells(statusl.getText());
ms.setVisible(true);
dispose();
}//GEN-LAST:event_jButton7ActionPerformed
private void jButton8ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton8ActionPerformed
// TODO add your handling code here:
Medicine_Info mi=new Medicine_Info(statusl.getText());
mi.setVisible(true);
dispose();
}//GEN-LAST:event_jButton8ActionPerformed
private void jTextField3KeyTyped(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jTextField3KeyTyped
char c = evt.getKeyChar();
if (!(Character.isDigit(c) || c == KeyEvent.VK_BACK_SPACE || c == KeyEvent.VK_DELETE|| c==KeyEvent.VK_SPACE)) {
evt.consume();
}
}//GEN-LAST:event_jTextField3KeyTyped
private void jComboBox1KeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_jComboBox1KeyPressed
if (evt.getKeyCode() == KeyEvent.VK_ENTER) {
if(jComboBox1.getSelectedIndex()<=0){
JOptionPane.showMessageDialog(rootPane, "Medicine Name Is Empty...");
}else{
jTextField3.requestFocus();
}}
}//GEN-LAST:event_jComboBox1KeyPressed
private void Sample_ButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Sample_ButtonActionPerformed
Sample_Purchase s=new Sample_Purchase(statusl.getText());
s.setVisible(true);
dispose();
}//GEN-LAST:event_Sample_ButtonActionPerformed
private void jButton9ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton9ActionPerformed
// TODO add your handling code here:
if(jComboBox1.getSelectedIndex()<=0){
JOptionPane.showMessageDialog(rootPane, "Madecine is Empty");
jComboBox1.requestFocus();
}
else if(jTextField3.getText().isEmpty()){
JOptionPane.showMessageDialog(rootPane, "Sales Quantity is Empty");
jTextField3.requestFocus();
}else if(jTextField5.getText().isEmpty()){
JOptionPane.showMessageDialog(rootPane, "T^otal Price is Empty");
jTextField5.requestFocus();
}else{
try {
contest();
Date dt = new Date();
DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
int stockq=Integer.parseInt(jTextField2.getText());
int sellq=Integer.parseInt(jTextField3.getText());
if(stockq<sellq){
JOptionPane.showMessageDialog(rootPane," "+(sellq-stockq)+ " Medicines are out of stock...");
}else{
String s="INSERT INTO `pharmacy_management`.`sells`(`madecine`,`s_price`,`quantity`,`total price`,`date`) VALUES (?,?,?,?,?);";
ps=ct.prepareCall(s);
ps.setString(1,jComboBox1.getSelectedItem().toString());
ps.setString(2,jTextField4.getText());
ps.setString(3,jTextField3.getText());
ps.setString(4,jTextField5.getText());
ps.setString(5,df.format(dt));
int m=ps.executeUpdate();
if(m>0){
shows();
jTextField2.setText("");
jTextField3.setText("");
jTextField4.setText("");
jTextField5.setText("");
jComboBox1.setSelectedIndex(0);
jComboBox1.requestFocus();
}else{
JOptionPane.showMessageDialog(rootPane, "Madecine Sales Failed.....");
}
}
} catch (SQLException ex) {
Logger.getLogger(Medicine_Info.class.getName()).log(Level.SEVERE, null, ex);
}
}
}//GEN-LAST:event_jButton9ActionPerformed
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
jTextField2.setText("");
jTextField3.setText("");
jTextField4.setText("");
jTextField5.setText("");
jComboBox1.setSelectedIndex(0);
DefaultTableModel dt=(DefaultTableModel) jTable1.getModel();
dt.setRowCount(0);
total1.setText("");
}//GEN-LAST:event_jButton2ActionPerformed
private void Sample_Button1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Sample_Button1ActionPerformed
Purchase_Show ps=new Purchase_Show(statusl.getText());
ps.setVisible(true);
dispose();
}//GEN-LAST:event_Sample_Button1ActionPerformed
private void Sample_Button2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Sample_Button2ActionPerformed
Accounts ps=new Accounts(statusl.getText());
ps.setVisible(true);
dispose();
}//GEN-LAST:event_Sample_Button2ActionPerformed
private void sample_Bill_Button1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_sample_Bill_Button1ActionPerformed
Home_PAge h=new Home_PAge(statusl.getText());
h.setVisible(true);
Bill_Paid_1 hp=new Bill_Paid_1(statusl.getText());
hp.setVisible(true);
dispose();
}//GEN-LAST:event_sample_Bill_Button1ActionPerformed
private void Sample_Button3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Sample_Button3ActionPerformed
Create_Login_Pin ps=new Create_Login_Pin();
ps.setVisible(true);
}//GEN-LAST:event_Sample_Button3ActionPerformed
private void Sample_Button4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Sample_Button4ActionPerformed
Sells_Show ps=new Sells_Show(statusl.getText());
ps.setVisible(true);
dispose();
}//GEN-LAST:event_Sample_Button4ActionPerformed
private void totalActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_totalActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_totalActionPerformed
private void jButton10ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton10ActionPerformed
PrinterJob job=PrinterJob.getPrinterJob();
job.setJobName("Print Data");
job.setPrintable(new Printable() {
@Override
public int print(Graphics pg, PageFormat pf, int PageNum){
//To change body of generated methods, choose Tools | Templates.
if(PageNum>0){
return NO_SUCH_PAGE;}
Graphics2D g2=(Graphics2D) pg;
g2.translate(pf.getImageableX(),pf.getImageableX());
g2.scale(1,0.8);
jPanel4.print(g2);
return Printable.PAGE_EXISTS;
}
});
if(job.printDialog()==true){
JOptionPane.showMessageDialog(this,"Print success..");
try{
job.print();
}catch(PrinterException P){
}
dispose();
}else{JOptionPane.showMessageDialog(this,"Failed...");}
}//GEN-LAST:event_jButton10ActionPerformed
public void contest() {
try {
ct = DriverManager.getConnection("jdbc:mysql://localhost:3306/pharmacy_management", "root", "");
} catch (SQLException ex) {
Logger.getLogger(Add_Supplier.class.getName()).log(Level.SEVERE, null, ex);
} }
void show_madecine(){
try {
contest();
String s="SELECT `stock`.`Madicine_Name` FROM `stock`";
st = ct.prepareCall(s);
rs = st.executeQuery(s);
while(rs.next()){
jComboBox1.addItem(rs.getString(1));
}
} catch (SQLException ex) {
Logger.getLogger(Madecine_Sells.class.getName()).log(Level.SEVERE, null, ex);
}
}
void show_quantity(){
try {
contest();
String s="SELECT *FROM `stock` WHERE `Madicine_Name`='"+jComboBox1.getSelectedItem()+"'";
st = ct.prepareCall(s);
rs = st.executeQuery(s);
while(rs.next()){
int p=rs.getInt(2);
int se=rs.getInt(3);
int t=p-se;
jTextField2.setText(""+t);
}
String mp="SELECT `s_price` FROM `purchase` WHERE `medecine`='"+jComboBox1.getSelectedItem()+"'";
st = ct.prepareCall(mp);
rs = st.executeQuery(mp);
while(rs.next()){
jTextField4.setText(""+rs.getInt(1));
}
} catch (SQLException ex) {
Logger.getLogger(Madecine_Sells.class.getName()).log(Level.SEVERE, null, ex);
}
}
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(Madecine_Sells.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Madecine_Sells.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Madecine_Sells.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Madecine_Sells.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Madecine_Sells().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton Sample_Button;
private javax.swing.JButton Sample_Button1;
private javax.swing.JButton Sample_Button2;
private javax.swing.JButton Sample_Button3;
private javax.swing.JButton Sample_Button4;
private javax.swing.JLabel dat;
private javax.swing.JTextField deu;
private javax.swing.JButton jButton10;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton3;
private javax.swing.JButton jButton4;
private javax.swing.JButton jButton5;
private javax.swing.JButton jButton6;
private javax.swing.JButton jButton7;
private javax.swing.JButton jButton8;
private javax.swing.JButton jButton9;
private javax.swing.JComboBox<String> jComboBox1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel10;
private javax.swing.JLabel jLabel105;
private javax.swing.JLabel jLabel11;
private javax.swing.JLabel jLabel12;
private javax.swing.JLabel jLabel13;
private javax.swing.JLabel jLabel14;
private javax.swing.JLabel jLabel15;
private javax.swing.JLabel jLabel16;
private javax.swing.JLabel jLabel17;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JLabel jLabel5;
private javax.swing.JLabel jLabel6;
private javax.swing.JLabel jLabel9;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel3;
private javax.swing.JPanel jPanel4;
private javax.swing.JPanel jPanel5;
private javax.swing.JPanel jPanel6;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JTable jTable1;
private javax.swing.JTextField jTextField2;
private javax.swing.JTextField jTextField3;
private javax.swing.JTextField jTextField4;
private javax.swing.JTextField jTextField5;
private javax.swing.JTextField paid;
private javax.swing.JButton sample_Bill_Button1;
private javax.swing.JLabel statusl;
private javax.swing.JTextField total;
private javax.swing.JLabel total1;
// End of variables declaration//GEN-END:variables
}
| [
"[email protected]"
] | |
faee95940fb37df2cc1602437cf3c47b589abd94 | 425fbbf3612b209b5e46891242c6dd51b8ba5e5f | /jcsecurity/trunk/src/main/java/com/jamcracker/common/security/keymgmt/dao/GenericKeyMgmtDao.java | 363d9ab7daa762163a2315cee2c1155f741fbb90 | [] | no_license | baskaran-radhakrishnan-10/uniqmac | d885695e588e508e232a3ebd59b9ec7cf25021be | a3646f52723987ccc815989dc12aec0be9a84471 | refs/heads/master | 2020-03-16T18:19:36.890119 | 2018-07-19T03:44:50 | 2018-07-19T03:44:50 | 132,868,386 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,747 | java | /*
*
* Class: GenericKeyMgmtDao.java
*
* Comments for Developers Only:
*
* Version History:
*
* Ver Date Who Release What and Why
* --- ---------- ---------- ------- ---------------------------------------
* 1.0 May 15, 2014 tmarum 7.0 Initial version.
* 2.0 Apr 11, 2014 Muthusamy 7.1 changed methods for loading keys from new table jcp_crypto_key_mgmt
* Old key creation methods removed
* 3.0 June 7, 2014 Muthusamy 7.1 added proper error/log stmt and method level comments
* This software is the confidential and proprietary information of Jamcracker, Inc.
* ("Confidential Information"). You shall not disclose such Confidential Information
* and shall use it only in accordance with the terms of the license agreement you
* entered into with Jamcracker, Inc. Copyright (c) 2000 Jamcracker, Inc. All Rights
* Reserved
*
*
*
*****************************************************
*/
package com.jamcracker.common.security.keymgmt.dao;
import java.security.Key;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.apache.log4j.Logger;
import com.jamcracker.common.security.constants.JCSecurityConstants;
import com.jamcracker.common.security.crypto.JCDataLabel;
import com.jamcracker.common.security.crypto.core.JCCryptor;
import com.jamcracker.common.security.crypto.exception.JCCryptoException;
import com.jamcracker.common.security.crypto.exception.JCCryptoFaultCode;
import com.jamcracker.common.security.crypto.metadata.ConfigInfo;
import com.jamcracker.common.security.crypto.metadata.CryptoAttribute;
import com.jamcracker.common.security.keymgmt.dto.DataLabelInfo;
import com.jamcracker.common.security.keymgmt.dto.ProtectorDataLabelInfo;
import com.jamcracker.common.security.keymgmt.exception.KeyMgmtFaultCode;
import com.jamcracker.common.security.keymgmt.service.KmfMgmtCache;
import com.jamcracker.common.sql.dataobject.JCPersistenceInfo;
import com.jamcracker.common.sql.exception.JCJDBCException;
import com.jamcracker.common.sql.rowmapper.IRowMapper;
import com.jamcracker.common.sql.spring.facade.dao.BaseSpringDAO;
/**
* @author tmarum
*
*/
public class GenericKeyMgmtDao extends BaseSpringDAO implements IKeyMgmtDao {
public static final Logger LOGGER = Logger.getLogger(GenericKeyMgmtDao.class);
/**Will give the key for given crypto type and orgnization id
*
* @param cryptoType
* @param actorId
* @return
* @throws JCCryptoException
*/
private JCPersistenceInfo getPersistenceInfo(String queryName, IRowMapper rowMapper) {
JCPersistenceInfo jpi = new JCPersistenceInfo();
jpi.setSqlQueryName(queryName);
jpi.setModuleName(moduleName);
jpi.setRowMapper(rowMapper);
return jpi;
}
/**
* Get all keys from DB and load to cache.
* PII,FII,Normal keys are protected with passphrase,hence decrypt with passphrase
* HMAC salt/key is protected with key HPROTECTOR & encrypted with passphrase ,hence perform 2 level of decryption
*
*/
@Override
public Map<String, Map<JCDataLabel, CryptoAttribute>> getAllCryptoDataLabels() throws JCCryptoException {
LOGGER.debug("Start: getAllCryptoDataLabels");
Map<JCDataLabel, CryptoAttribute> cryptoKeyMap = null;
Map<String, Map<JCDataLabel, CryptoAttribute>> actorCryptoKeys = null;
List<DataLabelInfo> list = null;
JCCryptor jCCryptor = new JCCryptor();
String originalKey = null;
String actualKey = null;
Key key = null;
String passphrase = System.getProperty(JCSecurityConstants.PASSPHRASE);
try {
Object[] objectParamValue = new Object[0];
JCPersistenceInfo jcPersistenceInfo = getPersistenceInfo("GET_ALL_KEYS", new DataLabelRowMapper());
jcPersistenceInfo.setSqlParams(objectParamValue);
list = query(jcPersistenceInfo);
if (list != null && list.size() > 0) {
actorCryptoKeys = new HashMap<String, Map<JCDataLabel, CryptoAttribute>>();
Map<Integer, ProtectorDataLabelInfo> protectorAttribute = getAllProtectorKeys();
Map<JCDataLabel, Integer> versionMap = getLatestVersionForAllDataLabel();
String[] hmackeys = { JCSecurityConstants.HASHALG};
Map<String, String> hmackeyscmxMapMetaData = getConfig(hmackeys);
for (DataLabelInfo datalabelInfo : list) {
CryptoAttribute cryptoAttribute = new CryptoAttribute();
String actorIdandVersion = Integer.toString(datalabelInfo.getActorId()) + JCSecurityConstants.CMX_METADATA_SEPERATOR
+ Integer.toString(datalabelInfo.getKeyVersion());
cryptoKeyMap = actorCryptoKeys.get(actorIdandVersion);
if (cryptoKeyMap == null) {
cryptoKeyMap = new HashMap<JCDataLabel, CryptoAttribute>();
actorCryptoKeys.put(actorIdandVersion, cryptoKeyMap);
}
if (datalabelInfo.getDataLabel() == JCDataLabel.HMAC) {
ProtectorDataLabelInfo protectorDataLabelInfo = protectorAttribute.get(datalabelInfo.getKeyVersion());
key = jCCryptor.constructKey(datalabelInfo.getCryptoKey(), protectorDataLabelInfo.getAlgorithm());
actualKey = jCCryptor.decPassPhraseKey(key, passphrase);
originalKey = jCCryptor.decrypt(protectorDataLabelInfo.getAlgorithm(), protectorDataLabelInfo.getProtectorKey(), actualKey, protectorDataLabelInfo.getProvider());
key = jCCryptor.constructKey(originalKey, JCSecurityConstants.HASHALG);
} else {
key = jCCryptor.constructKey(datalabelInfo.getCryptoKey(), datalabelInfo.getAlgorithm());
cryptoAttribute.setProvider(datalabelInfo.getProvider());
cryptoAttribute.setAlgorithm(datalabelInfo.getAlgorithm());
originalKey = jCCryptor.decPassPhraseKey(key, passphrase);
key = jCCryptor.constructKey(originalKey, datalabelInfo.getAlgorithm());
}
cryptoAttribute.setStatus(datalabelInfo.getStatus());
cryptoAttribute.setKey(key);
cryptoKeyMap.put(datalabelInfo.getDataLabel(), cryptoAttribute);
if (versionMap.containsKey(JCDataLabel.valueOf(datalabelInfo.getDataLabel().getId()))
&& versionMap.get(JCDataLabel.valueOf(datalabelInfo.getDataLabel().getId())).equals(datalabelInfo.getKeyVersion())) {
loadCMXData(versionMap, datalabelInfo, hmackeyscmxMapMetaData);
}
}
} else {
LOGGER.debug("No Active Keys Available....");
throw new JCCryptoException(JCCryptoFaultCode.CRYPTO_NO_ACTIVE_KEYS);
}
} catch (JCCryptoException e) {
LOGGER.error("JCCryptoException"+e.getMessage());
throw new JCCryptoException(e.getFaultCode());
} catch (JCJDBCException e) {
LOGGER.error("JCJDBCException"+e.getMessage());
throw new JCCryptoException(KeyMgmtFaultCode.UNABLE_TO_GET_KEY, e);
}
if(list!=null && list.size()>0)
LOGGER.debug("Total Keys Loaded From DB " + list.size());
LOGGER.debug("End: getAllCryptoDataLabels ");
return actorCryptoKeys;
}
/**
* Load CrypoGraphy CMD Data Information for Latest DataLabels
* @param versionMap
* @param datalabelInfo
* @param hmackeyscmxMapMetaData
* @throws Exception
*/
private void loadCMXData(Map<JCDataLabel, Integer> versionMap, DataLabelInfo datalabelInfo, Map<String, String> hmackeyscmxMapMetaData) throws JCCryptoException
{
KmfMgmtCache.getInstance().putlatestVersion(JCDataLabel.valueOf(datalabelInfo.getDataLabel().getId()),
versionMap.get(JCDataLabel.valueOf(datalabelInfo.getDataLabel().getId())));
List<String> list = new ArrayList<String>();
String cmxData=null;
if (!JCDataLabel.valueOf(datalabelInfo.getDataLabel().getId()).equals(JCDataLabel.HMAC)) {
list.add(datalabelInfo.getKeyType().toUpperCase());
list.add(datalabelInfo.getAlgorithm());
list.add(datalabelInfo.getKeyLength());
list.add(datalabelInfo.getKeyId().toUpperCase());
list.add(String.valueOf(JCDataLabel.valueOf(datalabelInfo.getDataLabel().getId())).toUpperCase());
cmxData=getCMXData(list, datalabelInfo.getKeyVersion(), datalabelInfo.getDataLabel().getId());
KmfMgmtCache.getInstance().putcmxDataMap(JCDataLabel.valueOf(datalabelInfo.getDataLabel().getId()), cmxData);
}
if (JCDataLabel.valueOf(datalabelInfo.getDataLabel().getId()).equals(JCDataLabel.HPROTECTOR)) {
String hashcmxData = Integer.toString(datalabelInfo.getKeyVersion()) + "-" + hmackeyscmxMapMetaData.get(JCSecurityConstants.HASHALG);
KmfMgmtCache.getInstance().putcmxDataMap(JCDataLabel.HMAC, hashcmxData);
}
}
/**
* Method Gets parent actorId.
* @param actorId
* @return
* @throws JCCryptoException
*/
@Override
public Integer getParentToChild(Integer actorId) throws JCCryptoException {
LOGGER.debug("Start: getParent()-->"+actorId);
Integer parentId = null;
try {
Object[] objectParamValue = new Object[1];
objectParamValue[0] = actorId;
JCPersistenceInfo jcPersistenceInfo = getPersistenceInfo("GET_PARENT_TO_CHILD", new ActorIdRowMapper());
jcPersistenceInfo.setSqlParams(objectParamValue);
List<Integer> list = query(jcPersistenceInfo);
if (list == null || list.size() == 0) {
return 0;
} else {
parentId = list.get(0);
}
} catch (Exception e) {
LOGGER.error("actorId: "+actorId);
LOGGER.error(e,e);
throw new JCCryptoException(KeyMgmtFaultCode.ERROR_WHILE_GETTING_MISSING_ACTORS, e);
}
LOGGER.debug("End: getParent()-->"+parentId);
return parentId;
}
/**
* Reteive CMX Key Id mapping fields
* @param configKeys
* @return
* @throws JCCryptoException
*/
private Map<String,String> getConfig(String configKeys[]) throws JCCryptoException{
LOGGER.debug("Start getConfig");
Map<String,String> configMap = new HashMap<String, String>();
ConfigInfo configInfo = null;
List configInfoList = null;
if(configKeys != null){
String sqlQueryName = "GET_CONFIG_FOR_CMX_DATALABELS";
String sqlvalue=getSqlManager().getQueryString(moduleName, sqlQueryName);
Object[] sqlParamSelect = new Object[configKeys.length];
if((configKeys !=null) && (configKeys.length > 0)){
for(int i=0;i<configKeys.length;i++){
sqlvalue=sqlvalue.concat("?");
sqlParamSelect[i]=configKeys[i];
if( (i + 1)< configKeys.length ){
sqlvalue=sqlvalue.concat(",");
}
}
sqlvalue= sqlvalue.concat(")");
JCPersistenceInfo jcPersistenceInfo = new JCPersistenceInfo();
jcPersistenceInfo.setSqlQueryValue(sqlvalue);
jcPersistenceInfo.setSqlParams(sqlParamSelect);
jcPersistenceInfo.setRowMapper(new ConfigRowMapper());
jcPersistenceInfo.setModuleName(moduleName);
try {
configInfoList =query(jcPersistenceInfo);
if (configInfoList!= null && configInfoList.size() > 0) {
Iterator listIterate=configInfoList.iterator();
while(listIterate.hasNext()){
configInfo =(ConfigInfo)listIterate.next();
configMap.put(configInfo.getConfigKey(), configInfo.getConfigValue());
}
}
}catch (JCJDBCException e) {
e.printStackTrace();
LOGGER.error("Error in getting the Audit configuration from database:", e);
throw new JCCryptoException(e.getFaultCode(), e);
}
if(LOGGER.isDebugEnabled()){
LOGGER.debug("getConfigValues() : End");
}
}
}
LOGGER.debug("End getConfig");
return configMap;
}
/**
* This method used to get the cmx data (i.e. data presents before '~' symbol)
* @param list
* @param latestVesion
* @param cryptoType
* @return
* @throws JCCryptoException
*/
private String getCMXData(List<String> list,int latestVesion,int cryptoType) throws JCCryptoException{
String cmxData=null;
String [] keys = list.toArray(new String[list.size()]);
Map<String,String> cmxMapMetaData = getConfig(keys);
cmxData = prepareCMXMetaData(latestVesion, list, cmxMapMetaData);
return cmxData;
}
/**
* Reteive Latest version of each dataLabel info
* @return
* @throws JCCryptoException
*/
private Map<JCDataLabel,Integer> getLatestVersionForAllDataLabel() throws JCCryptoException
{
LOGGER.debug("Start: getLatestVersionForAllDataLabel" );
HashMap<JCDataLabel,Integer> hmap = new HashMap<JCDataLabel,Integer>();
try {
Object[] objectParamValue = new Object[0];
JCPersistenceInfo jcPersistenceInfo = getPersistenceInfo("GET_LATEST_VERSION", new DataLabelVersionRowMapper());
jcPersistenceInfo.setSqlParams(objectParamValue);
List<DataLabelInfo> list = query(jcPersistenceInfo);
for (DataLabelInfo datalabelInfo : list) {
hmap.put(datalabelInfo.getDataLabel(), datalabelInfo.getKeyVersion());
}
} catch (Exception e) {
LOGGER.error("Exception in getLatestVersionForAllDataLabel", e);
throw new JCCryptoException(KeyMgmtFaultCode.UNABLE_TO_GET_KEY, e);
}
LOGGER.debug("End: getLatestVersionForAllDataLabel"+hmap.size() );
return hmap;
}
/**
* Method used to get Hprotector keys
* @return
* @throws JCCryptoException
*/
public Map<Integer,ProtectorDataLabelInfo> getAllProtectorKeys() throws JCCryptoException {
LOGGER.debug("Start getAllProtectorKeys ");
Map<Integer,ProtectorDataLabelInfo> protectorMap = new HashMap<Integer,ProtectorDataLabelInfo>();
JCCryptor jCCryptor = new JCCryptor();
try {
Object[] objectParamValue = new Object[0];
JCPersistenceInfo jcPersistenceInfo = getPersistenceInfo("GET_PROTECTOR_KEY", new ProtectorKeyRowMapper());
jcPersistenceInfo.setSqlParams(objectParamValue);
List<ProtectorDataLabelInfo> list = query(jcPersistenceInfo);
for (ProtectorDataLabelInfo proDataLabelInfo: list)
{
ProtectorDataLabelInfo updatedDataLabelInfo=new ProtectorDataLabelInfo();
updatedDataLabelInfo.setAlgorithm(proDataLabelInfo.getAlgorithm());
updatedDataLabelInfo.setKeyVersion(proDataLabelInfo.getKeyVersion());
updatedDataLabelInfo.setProvider(proDataLabelInfo.getProvider());
Key protectorKey = null;
try {
protectorKey = jCCryptor.constructKey(proDataLabelInfo.getKeyString(), proDataLabelInfo.getAlgorithm());
String key =jCCryptor.decPassPhraseKey(protectorKey, System.getProperty(JCSecurityConstants.PASSPHRASE));
protectorKey = jCCryptor.constructKey(key, proDataLabelInfo.getAlgorithm());
} catch (JCCryptoException e) {
LOGGER.error("Given Passphrase is invalid "+e.getFaultCode());
throw new JCCryptoException(e.getFaultCode());
}
updatedDataLabelInfo.setProtectorKey(protectorKey);
protectorMap.put(proDataLabelInfo.getKeyVersion(), updatedDataLabelInfo);
}
}catch (Exception e) {
LOGGER.error("Exception in getAllProtectorKeys "+e.getMessage());
throw new JCCryptoException(KeyMgmtFaultCode.UNABLE_TO_GET_KEY, e);
}
LOGGER.debug("End getAllProtectorKeys "+protectorMap.size());
return protectorMap;
}
/**
* Method is responsible to construct cmx information
* @param latestVesion
* @param list
* @param cmxMapMetaData
* @return
*/
private String prepareCMXMetaData(int latestVesion,List<String> list,Map<String,String> cmxMapMetaData) {
LOGGER.debug("Start: prepareCMXMetaData starts");
String keyType=(String) cmxMapMetaData.get(list.get(0));
String algorithm =(String) cmxMapMetaData.get(list.get(1));
String keyLength =(String) cmxMapMetaData.get(list.get(2));
String keyId=(String) cmxMapMetaData.get(list.get(3));
String dataLabels=(String) cmxMapMetaData.get(list.get(4));
StringBuilder sb = new StringBuilder();
sb.append(latestVesion);
sb.append("-");
sb.append(keyType);
sb.append("-");
sb.append(algorithm);
sb.append("-");
sb.append(keyLength);
sb.append("-");
sb.append(keyId);
sb.append("-");
sb.append(dataLabels);
LOGGER.debug("End: prepareCMXMetaData");
return sb.toString();
}
/**
* Method used to get the key validity.
*
*/
@Override
public List<DataLabelInfo> getKeyValidityDetails() throws JCCryptoException {
LOGGER.debug("Start: getKeyValidityDetails()-->");
List<DataLabelInfo> list=null;
try {
String sqlQueryName = "GET_KEY_VALIDITY";
String sqlvalue=getSqlManager().getQueryString(moduleName, sqlQueryName);
JCPersistenceInfo jcPersistenceInfo = new JCPersistenceInfo();
jcPersistenceInfo.setSqlQueryValue(sqlvalue);
jcPersistenceInfo.setRowMapper(new KeyValueRowMapper());
jcPersistenceInfo.setModuleName(moduleName);
list= query(jcPersistenceInfo);
} catch (Exception e) {
LOGGER.error("error in getKeyValidityDetails details: "+e.getMessage());
throw new JCCryptoException(KeyMgmtFaultCode.UNABLE_TO_GET_KEY, e);
}
LOGGER.debug("End: getKeyValidityDetails()");
return list;
}
/**
* Method updates key status based on cryptoId
* @param expiredCryptoId
* @throws JCCryptoException
*/
@Override
public void updateDataLabelStatus(List<Integer> expiredCryptoId) throws JCCryptoException {
LOGGER.debug("Start: updateDataLabelStatus() ");
try {
int length=expiredCryptoId.size();
String sqlQueryName = "UPDATE_KEY_EXPIRED_STATUS";
String sqlvalue=getSqlManager().getQueryString(moduleName, sqlQueryName);
Object[] sqlParamSelect = new Object[expiredCryptoId.size()+2];
int i=0;
Date date = Calendar.getInstance().getTime();
sqlParamSelect[i++]=new java.sql.Timestamp(date.getTime());
sqlParamSelect[i++]=1000;
for(Integer expiredId:expiredCryptoId){
sqlvalue=sqlvalue.concat("?");
sqlParamSelect[i++]=expiredId;
if(expiredCryptoId.get(length-1)!=expiredId)
{
sqlvalue=sqlvalue.concat(",");
}
}sqlvalue= sqlvalue.concat(")");
JCPersistenceInfo jcPersistenceInfo = new JCPersistenceInfo();
jcPersistenceInfo.setSqlQueryValue(sqlvalue);
jcPersistenceInfo.setSqlParams(sqlParamSelect);
execute(jcPersistenceInfo);
}catch (Exception e) {
LOGGER.error("updateDataLabelStatus"+e.getMessage());
throw new JCCryptoException(KeyMgmtFaultCode.UNABLE_TO_UPDATE_LABEL_STAUS, e);
}
LOGGER.debug("End: updateDataLabelStatus()");
}
/**
* Method populates Latest CMX xml and Digitally signed xml
* @return Map
* @throws JCCryptoException
*/
@Override
public Map<String, String> getLatestXML() throws JCCryptoException {
Map<String, String> xmlandSignature=null;
try {
Object[] objectParamValue = new Object[0];
JCPersistenceInfo jcPersistenceInfo = getPersistenceInfo("GET_XML_ANDCMXSIGN_DATA", new XmlRowMapper());
jcPersistenceInfo.setSqlParams(objectParamValue);
List<String[]> list = query(jcPersistenceInfo);
xmlandSignature = new HashMap<String, String>();
for (String[] xmls: list) {
xmlandSignature.put(xmls[0], xmls[1]);
}
} catch (Exception e) {
LOGGER.error("Exception in getLatestXML"+e.getMessage());
throw new JCCryptoException(KeyMgmtFaultCode.UNABLE_TO_GET_KEY, e);
}
return xmlandSignature;
}
}
| [
"[email protected]"
] | |
0b8cf24003127b89519b132d62a232474f64dc8d | 0c931af8afd6a15bf77d8fc6bfb5737f36b179f4 | /TrieTest.java | 8ced7e2d3e47dec5acdf9f69bc110de3ba5b274b | [] | no_license | jitension/Search-Engine | 2ae5fabfb733932dd3fa0e50474bbfc7f4b34e57 | 0552b06db216eb473fe6ee15cd14ddcf2ff445cd | refs/heads/master | 2021-01-11T14:52:35.234395 | 2017-01-31T01:00:02 | 2017-01-31T01:00:02 | 80,242,746 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,086 | java | import java.util.LinkedList;
import java.util.Scanner;
import java.util.TreeMap;
/**
* Created by Jitendra on 05/12/16.
*/
class TrieNode
{
char content;
boolean isEnd;
int count;
LinkedList<TrieNode> childList;
/* Constructor */
public TrieNode(char c)
{
childList = new LinkedList<TrieNode>();
isEnd = false;
content = c;
count = 0;
}
public TrieNode subNode(char c)
{
if (childList != null)
for (TrieNode eachChild : childList)
if (eachChild.content == c)
return eachChild;
return null;
}
}
class Trie
{
private TrieNode root;
/* Constructor */
public Trie()
{
root = new TrieNode(' ');
}
/* Function to insert word */
public void insert(String word)
{
if (search(word) == true)
return;
TrieNode current = root;
for (char ch : word.toCharArray() )
{
TrieNode child = current.subNode(ch);
if (child != null)
current = child;
else
{
current.childList.add(new TrieNode(ch));
current = current.subNode(ch);
}
current.count++;
}
current.isEnd = true;
}
/* Function to search for word */
public boolean search(String word)
{
TrieNode current = root;
for (char ch : word.toCharArray() )
{
if (current.subNode(ch) == null)
return false;
else
current = current.subNode(ch);
}
if (current.isEnd == true)
return true;
return false;
}
}
/* Class Trie Test */
public class TrieTest extends searchEngine
{
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
/* Creating object of AATree */
Trie t = new Trie();
TreeMap<String, Integer> frequencyData = new TreeMap<String, Integer>( );
readWordFile(frequencyData);
printAllCounts(frequencyData);
for ( String key : frequencyData.keySet() ) {
//System.out.println( key );
t.insert(key);
}
System.out.println("Enter the words to be searched\n");
char ch;
/* Perform tree operations */
do
{
System.out.println("Enter string element to search");
System.out.println("Search result : "+ t.search( scan.next() ));
System.out.println("\nDo you want to continue (Type y or n) \n");
ch = scan.next().charAt(0);
} while (ch == 'Y'|| ch == 'y');
}
}
| [
"[email protected]"
] | |
a45de9cace1f2270725d19c1be0b51ff001d1bb4 | 8214f05bbbbd65837c197e64bdb6bf31cd95d538 | /src/main/java/cn/baby_p2p/demo/service/UserService.java | 419736e0fdaa524b114d5f7bf84955e67c2a33a6 | [] | no_license | babyp2pT240/baby_p2pxm | 60885ac640167e12980462378891fea76b0fb265 | da519027251a6f3866e7c42b00a4dea0e1b63f99 | refs/heads/master | 2022-07-09T04:34:46.962574 | 2020-03-02T03:26:56 | 2020-03-02T03:26:56 | 242,270,515 | 0 | 0 | null | 2022-06-21T02:50:39 | 2020-02-22T03:03:55 | JavaScript | UTF-8 | Java | false | false | 4,640 | java | package cn.baby_p2p.demo.service;
import cn.baby_p2p.demo.dao.TBankCardRepository;
import cn.baby_p2p.demo.dao.TUserAccountRepository;
import cn.baby_p2p.demo.dao.TUserInfoRepository;
import cn.baby_p2p.demo.dao.TUserWalletRepository;
import cn.baby_p2p.demo.pojo.TBankCard;
import cn.baby_p2p.demo.pojo.TUserAccount;
import cn.baby_p2p.demo.pojo.TUserInfo;
import cn.baby_p2p.demo.pojo.TUserWallet;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
@Service
public class UserService {
@Resource
private TUserAccountRepository tUserAccountRepository;
@Resource
private TUserInfoRepository tUserInfoRepository;
@Resource
private TUserWalletRepository tUserWalletRepository;
@Resource
private TBankCardRepository tBankCardRepository;
public TUserAccount login(String username){
TUserAccount tUserAccount = new TUserAccount();
tUserAccount.setLastLoginTime(new Date());
QueryWrapper<TUserAccount> queryWrapper = new QueryWrapper<TUserAccount>();
queryWrapper.like("username",username);
List<TUserAccount> tUserAccountList = tUserAccountRepository.selectList(queryWrapper);
int result = tUserAccountRepository.update(tUserAccount,queryWrapper);
if (result>0){
return tUserAccountList.get(0);
}
if(tUserAccountList.size()==0){
return null;
}else {
return tUserAccountList.get(0);
}
}
public boolean register(String id,String username,String password){
TUserAccount tUserAccount = new TUserAccount();
TUserInfo tUserInfo = new TUserInfo();
TUserWallet tUserWallet = new TUserWallet();
boolean faly = false;
tUserAccount.setId(id);
tUserAccount.setUsername(username);
tUserAccount.setPassword(password);
tUserAccount.setAccountStatus(1);
tUserAccount.setAccountType(1);
tUserAccount.setCreateTime(new Date());
tUserInfo.setAccountId(id);
tUserInfo.setCreateTime(new Date());
tUserWallet.setAccountId(id);
tUserWallet.setCreateTime(new Date());
tUserInfo.setAvatar("nobody.jpg");
int result1 = tUserAccountRepository.insert(tUserAccount);
int result2 = tUserInfoRepository.insert(tUserInfo);
int result3 = tUserWalletRepository.insert(tUserWallet);
if (result1>0&&result2>0&&result3>0){
faly = true;
}
return faly;
}
public TUserInfo getTUserInfo(String id){
QueryWrapper<TUserInfo> queryWrapper = new QueryWrapper<TUserInfo>();
queryWrapper.like("account_id",id);
List<TUserInfo> tUserInfoList = tUserInfoRepository.selectList(queryWrapper);
return tUserInfoList.get(0);
}
public TUserWallet getTUserWallet(String id){
QueryWrapper<TUserWallet> queryWrapper = new QueryWrapper<TUserWallet>();
queryWrapper.like("account_id",id);
List<TUserWallet> tUserWalletList = tUserWalletRepository.selectList(queryWrapper);
return tUserWalletList.get(0);
}
public TBankCard getTBankCard(String id){
QueryWrapper<TBankCard> queryWrapper = new QueryWrapper<TBankCard>();
queryWrapper.like("user_id",id);
List<TBankCard> tBankCardList = tBankCardRepository.selectList(queryWrapper);
if (tBankCardList.size()==0){
return null;
}else {
return tBankCardList.get(0);
}
}
public boolean addTBankCard(TBankCard tBankCard){
boolean faly = false;
int result = tBankCardRepository.insert(tBankCard);
if (result>0){
faly = true;
}
return faly;
}
public boolean updateUserinfo(TUserInfo tUserInfo){
boolean faly = false;
QueryWrapper<TUserInfo> queryWrapper = new QueryWrapper<TUserInfo>();
queryWrapper.like("account_id",tUserInfo.getAccountId());
int result = tUserInfoRepository.update(tUserInfo,queryWrapper);
if (result>0){
faly = true;
}
return faly;
}
public boolean updateUserAccount(TUserAccount tUserAccount){
boolean faly = false;
QueryWrapper<TUserAccount> queryWrapper = new QueryWrapper<TUserAccount>();
queryWrapper.like("id",tUserAccount.getId());
int result = tUserAccountRepository.update(tUserAccount,queryWrapper);
if (result>0){
faly = true;
}
return faly;
}
}
| [
"[email protected]"
] | |
0dcb99eeb6dede5b37a831771978e591bcd0fd78 | adceea293c35e411803ecd7426aff098def5a8b0 | /Lesson2/Classwork/For1.java | 525a0b4b29cbeabb8198405a739a1d7dd9e6d91a | [] | no_license | polosbl/Java | 0e36314780e006df2c2b75266e0f8165539740ea | 2a8d481f964c0fa15bf5afa2dbaf2076cab898ef | refs/heads/master | 2023-03-31T22:53:35.406994 | 2021-04-08T19:01:10 | 2021-04-08T19:01:10 | 346,018,621 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 263 | java | package Lesson2.Classwork;
public class For1 {
public static void main(String[] args) {
// Выведите на экран все числа от 20 до 1
for (int i = 20; i > 0; i--) {
System.out.println(i);
}
}
}
| [
"[email protected]"
] | |
594bcb57332146800410ad9068bffadb416e5e04 | 91901d20dd99ecbac775a06a355f1d2d1450a407 | /core/discoRT/java/edu/wpi/disco/rt/realizer/PrimitiveRealizer.java | 6d0cdb900feb2d7f51a3b209240be6eb768f8d9d | [] | no_license | always-on/always | f9571441b8ad4b18c024393a94ce4781ffc25174 | 75f7a826feeece1d8fa8658326f00e88208fc832 | refs/heads/develop | 2021-01-01T15:51:04.229895 | 2015-12-12T17:44:44 | 2015-12-12T17:44:44 | 6,750,595 | 5 | 0 | null | 2015-07-02T00:42:25 | 2012-11-18T19:55:28 | C++ | UTF-8 | Java | false | false | 772 | java | package edu.wpi.disco.rt.realizer;
import edu.wpi.disco.rt.behavior.PrimitiveBehavior;
/**
* A PrimitiveRealizer's run() method will be called periodically for it to do
* something (if needed). Do not hold the thread. A PrimitiveRealizer should not
* require preconditions on the state of the Resource, i.e., it should be able
* to do its work from any preexisting condition. Any run of run() may be the
* last run! You cannot count on it being called again in any way.
*
* @author Bahador
* @param <T>
*/
public interface PrimitiveRealizer<T extends PrimitiveBehavior> extends
Runnable {
T getParams ();
void shutdown ();
void addObserver (PrimitiveRealizerObserver observer);
void removeObserver (PrimitiveRealizerObserver observer);
}
| [
"[email protected]"
] | |
ee5b32ffaa27afd07ac4d98aa6b74eee20680a6c | 1680bc3a99e275962dff0f094f83bd987205959b | /CitasMedicas/src/java/pe/com/citasmedicas/dao/MedicoDao.java | 9ca2e4d29b006f6b46210ff62207f2e267411d0a | [] | no_license | richardtrujillo/dewcitamedica | a0e4d482be73bd9c676fe847e5c4eb87c29f8ad4 | 6830c74f2aa85d5a32b9c82c324ad33019acf532 | refs/heads/master | 2021-01-10T05:12:27.129443 | 2010-04-10T20:25:41 | 2010-04-10T20:25:41 | 36,374,320 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,005 | java | package pe.com.citasmedicas.dao;
import java.util.List;
import pe.com.citasmedicas.model.Especialidad;
import pe.com.citasmedicas.model.Medico;
/**
* Esta clase contiene los métodos a ser implementados por las clases de persistencia
* @author dew - Grupo 04
*/
public interface MedicoDao {
/**
* Obtiene un médico por su id
* @param medicoId identificador del medico
* @return Medico datos del medico
*/
Medico getMedicoPorId(Integer medicoId);
/**
* Obtiene todas los médicos de una especialidad específica
* @param especialidad datos de la especialidad
* @return List<Medico> lista de medicos encontrados
*/
List<Medico> getMedicosPorEspecialidad(Especialidad especialidad);
/**
* Obtiene todas los médicos de una especialidad específica
* @param especialidadId identificador de la especialidad
* @return List<Medico> lista de medicos
*/
List<Medico> getMedicosPorEspecialidad(Integer especialidadId);
}
| [
"kielsaenz@82247850-1900-11df-85bb-b9a83fee2cb1"
] | kielsaenz@82247850-1900-11df-85bb-b9a83fee2cb1 |
3e71ce6090c7548de8e24f792dc3fd98f3acb10a | 2b6f5c78a02805fd7684409c31d3dc3f0a00e81e | /src/main/java/com/shedhack/thread/threadlocal/utility/ThreadLocalUtility.java | 6f3fb00a27261b561df7cae30dc6a04231ba4f45 | [] | no_license | imamchishty/threadlocal-string-utility | 7fccd10b4e0c145261a6a250fe4e29fc1af875d8 | 657380085516173ad9fc62c3d46d054735f57de1 | refs/heads/master | 2021-01-10T09:47:30.258404 | 2016-03-31T11:34:40 | 2016-03-31T11:34:40 | 55,134,516 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 531 | java | package com.shedhack.thread.threadlocal.utility;
/**
* Utility class simplifies the manner in which ThreadLocal (of String payload types) are stored, accessed and cleared.
*
* @author imamchishty
*/
public class ThreadLocalUtility {
private static final ThreadLocal<String> local = new ThreadLocal<>();
public static void set(String requestId) {
local.set(requestId);
}
public static String get() {
return local.get();
}
public static void clear(){
local.remove();
}
}
| [
"[email protected]"
] | |
f5a0db0820f5679070bc5cc6e8ab59f87a1c2127 | f8d41d7bab69c60ca335f32e11d7b6fbff24d698 | /java/src/test/java/com/thoughtworks/refactoring/pullUpConstructorBody/ManagerTest.java | 3a43f2598f16abb7f6e3ec9f2f46d2c1d9a832b3 | [
"MIT"
] | permissive | sheltonsuen/refactoring | 872f6bdb972f5283ff5ac0c0a59949c1817d03ee | 48dbe45f031bb490a1104b0e6090e7b1f395188f | refs/heads/master | 2020-04-01T10:30:51.669443 | 2018-10-25T13:58:09 | 2018-10-25T13:58:09 | 153,120,759 | 0 | 0 | MIT | 2018-10-15T13:46:13 | 2018-10-15T13:46:12 | null | UTF-8 | Java | false | false | 372 | java | package com.thoughtworks.refactoring.pullUpConstructorBody;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class ManagerTest {
@Test
public void descriptionOfManager() throws Exception {
Manager manager = new Manager("manager", "b", 1);
assertEquals(manager.description(), "name: manager, id: b, grade: 1");
}
}
| [
"[email protected]"
] | |
4c46bc3027069c88b81f985f44c89f061e9ff2f5 | 16ed72e751dc1393912eb2ef3a830033831862c2 | /msi/src/main/java/dk/dma/enav/services/s124/views/ChartAffected.java | 3964a6ccf4db24ef44799d91291dc229e84c4a69 | [
"Apache-2.0"
] | permissive | maritime-web/Enav-Services | 43126ac447e82a03834cb49b283abf27432b6de0 | e0329646b924d74b7dc45dd2ca21a6ebdde31d9d | refs/heads/master | 2022-12-17T17:39:39.004132 | 2020-04-20T11:36:38 | 2020-04-20T11:36:38 | 50,661,158 | 1 | 1 | Apache-2.0 | 2022-12-05T23:33:40 | 2016-01-29T12:30:32 | Java | UTF-8 | Java | false | false | 939 | java | /* Copyright (c) 2011 Danish Maritime Authority.
*
* 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 dk.dma.enav.services.s124.views;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import java.util.Date;
@Getter
@Setter
@ToString
public class ChartAffected {
private String chartNumber;
private Date editionDate;
private Date lastNoticeDate;
private String publicationAffected;
}
| [
"[email protected]"
] | |
d7d348b15ba46e1eb33dd5df9e96cfd06a852408 | ff0d01db50bf6171fd3dbdcf59d60a519b9c8a0f | /src/main/java/fr/treeptik/centreformation/dao/StagiaireDAO.java | 1518f5754250ded83bbb85b251016760debb7784 | [] | no_license | ericterrade/CentreFormation | 445b7117379479ebef563ac917d3f60f6a78b8a9 | 56da32c0669372ee72052a50c948272c7412cac9 | refs/heads/master | 2016-08-11T07:21:14.212043 | 2015-05-25T16:25:03 | 2015-05-25T16:25:03 | 36,240,623 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 343 | java | package fr.treeptik.centreformation.dao;
import java.util.List;
import fr.treeptik.centreformation.model.Stagiaire;
import fr.treeptik.centreformation.model.StagiaireDTO;
import fr.treeptik.centreformation.dao.GenericDAO;
public interface StagiaireDAO extends GenericDAO<Stagiaire, Integer>{
List<StagiaireDTO> findAllStagiaireDTO();
}
| [
"[email protected]"
] | |
2f0922fe978e4845423db3600d83cc7e39bddb40 | 3bd5a26397d8b1976dbb3d28c9d36aa872779fbb | /level17/lesson10/home10/Solution.java | 10cf0368005ae1102c3da7e557ff5556c582ed85 | [] | no_license | tumaykin/javarush_tasks | f18452cddb5e49bbc0e8b9acb7900e285ff03235 | 9a7c32ee8f50d5dc727c91f564c864090f737ab5 | refs/heads/master | 2020-09-24T00:19:32.266064 | 2016-08-30T16:12:16 | 2016-08-30T16:12:16 | 66,955,572 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,851 | java | package com.javarush.test.level17.lesson10.home10;
/* Посчитаем
1. Сделай так, чтобы результат успел посчитаться для всех элементов массива values НЕ используя Thread.sleep
2. Исправь synchronized блок так, чтобы массив values заполнился значением 1
*/
public class Solution {
public static void main(String[] args) throws InterruptedException {
Counter counter1 = new Counter();
Counter counter2 = new Counter();
Counter counter3 = new Counter();
Counter counter4 = new Counter();
counter1.start();
counter2.start();
counter3.start();
counter4.start();
counter1.join();
counter2.join();
counter3.join();
counter4.join();
for (int i = 1; i <= 100; i++) {
if (values[i] != 1) {
System.out.println("Массив values содержит элементы неравные 1");
break;
}
}
}
public static Integer count = 0;
public static int[] values = new int[105];
static {
for (int i = 0; i < 105; i++) {
values[i] = 0;
}
}
public static void incrementCount() {
count++;
}
public static int getCount() {
return count;
}
public static class Counter extends Thread {
@Override
public void run() {
do {
synchronized (Solution.class) {
incrementCount();
values[getCount()]++;
}
try {
Thread.sleep(1);
} catch (InterruptedException e) {
}
} while (getCount() < 100);
}
}
}
| [
"[email protected]"
] | |
f91ab786f17e0ebe6007acdb4a77f34bfcf2a061 | 5e34c548f8bbf67f0eb1325b6c41d0f96dd02003 | /dataset/smallest_dedc2a7c_000/mutations/106/smallest_dedc2a7c_000.java | a4a56c92a9fb163524b67a9d3d2b881fbe37fe1e | [] | no_license | mou23/ComFix | 380cd09d9d7e8ec9b15fd826709bfd0e78f02abc | ba9de0b6d5ea816eae070a9549912798031b137f | refs/heads/master | 2021-07-09T15:13:06.224031 | 2020-03-10T18:22:56 | 2020-03-10T18:22:56 | 196,382,660 | 1 | 1 | null | 2020-10-13T20:15:55 | 2019-07-11T11:37:17 | Java | UTF-8 | Java | false | false | 2,269 | java | package introclassJava;
class IntObj {
public int value;
public IntObj () {
} public IntObj (int i) {
value = i;
}
}
class FloatObj {
public float value;
public FloatObj () {
} public FloatObj (float i) {
value = i;
}
}
class LongObj {
public long value;
public LongObj () {
} public LongObj (long i) {
value = i;
}
}
class DoubleObj {
public double value;
public DoubleObj () {
} public DoubleObj (double i) {
value = i;
}
}
class CharObj {
public char value;
public CharObj () {
} public CharObj (char i) {
value = i;
}
}
public class smallest_dedc2a7c_000 {
public java.util.Scanner scanner;
public String output = "";
public static void main (String[]args) throws Exception {
smallest_dedc2a7c_000 mainClass = new smallest_dedc2a7c_000 ();
String output;
if (args.length > 0) {
mainClass.scanner = new java.util.Scanner (args[0]);
} else {
mainClass.scanner = new java.util.Scanner (System.in);
}
mainClass.exec ();
System.out.println (mainClass.output);
}
public void exec () throws Exception {
FloatObj a = new FloatObj (), b = new FloatObj (), c =
new FloatObj (), d = new FloatObj ();
output +=
(String.format ("Please enter 4 numbers separated by spaces > "));
a.value = scanner.nextFloat ();
b.value = scanner.nextFloat ();
c.value = scanner.nextFloat ();
d.value = scanner.nextFloat ();
if ((a.value < b.value) && (a.value < c.value) && (a.value < d.value)) {
output += (String.format ("%.0f is the smallest\n", a.value));
} else if ((b.value < a.value) && (a.value) < (c.value)
&& (b.value < d.value)) {
output += (String.format ("%.0f is the smallest\n", b.value));
} else if ((c.value < a.value) && (c.value < b.value)
&& (c.value < d.value)) {
output += (String.format ("%.0f is the smallest\n", c.value));
} else {
output += (String.format ("%.0f is the smallest\n", d.value));
}
if (true)
return;;
}
}
| [
"[email protected]"
] | |
c66e6f6a8fecb6ae42115083ddb60d49ef1d739f | a40089046c5ec8397c8bf8c50619a8927ab3fe3f | /workspace/spring-boot-data-jpa/src/main/java/com/curso/springboot/jpa/models/entity/UserEntity.java | 858d850c94c1a7d21c217242b24675c12172c089 | [] | no_license | junglans/curso-spring | 7024af19cbe26b2bb256f572c6879d33448ec1e9 | bf1e37d2304bcffacf2639e4faf3ccaf2dbb11f7 | refs/heads/master | 2021-07-13T06:41:42.244989 | 2019-03-13T13:24:31 | 2019-03-13T13:24:31 | 149,016,372 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,609 | java | package com.curso.springboot.jpa.models.entity;
import java.io.Serializable;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.ConstraintMode;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.ForeignKey;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.ManyToMany;
import javax.persistence.Table;
@Entity
@Table(name = "USERS")
public class UserEntity implements Serializable {
/**
*
*/
private static final long serialVersionUID = 2939196117275458845L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Column(unique = true, insertable=true, updatable=true, nullable=false, length = 30)
private String username;
@Column(insertable=true, updatable=true, nullable=false, length = 60)
private String password;
@Column(insertable=true, updatable=true, nullable=false)
private Boolean enabled;
@ManyToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@JoinTable(name="USER_ROLE",
joinColumns = @JoinColumn(name = "user_id", referencedColumnName = "id"),
inverseJoinColumns = @JoinColumn(name = "role_id", referencedColumnName = "id"),
foreignKey = @ForeignKey(ConstraintMode.CONSTRAINT)
)
private List<RoleEntity> roles;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public Boolean getEnabled() {
return enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
public List<RoleEntity> getRoles() {
return roles;
}
public void setRoles(List<RoleEntity> roles) {
this.roles = roles;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((enabled == null) ? 0 : enabled.hashCode());
result = prime * result + ((id == null) ? 0 : id.hashCode());
result = prime * result + ((password == null) ? 0 : password.hashCode());
result = prime * result + ((roles == null) ? 0 : roles.hashCode());
result = prime * result + ((username == null) ? 0 : username.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
UserEntity other = (UserEntity) obj;
if (enabled == null) {
if (other.enabled != null)
return false;
} else if (!enabled.equals(other.enabled))
return false;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
if (password == null) {
if (other.password != null)
return false;
} else if (!password.equals(other.password))
return false;
if (roles == null) {
if (other.roles != null)
return false;
} else if (!roles.equals(other.roles))
return false;
if (username == null) {
if (other.username != null)
return false;
} else if (!username.equals(other.username))
return false;
return true;
}
@Override
public String toString() {
return "UserEntity [id=" + id + ", username=" + username + ", password=" + password + ", enabled=" + enabled
+ ", roles=" + roles + "]";
}
}
| [
"[email protected]"
] | |
67f79b8df885ace10335e24bad94792d49267161 | 01b56a5840baddc1eba73940d5ee3e2b98c02006 | /app/src/main/java/com/example/discussgo/firstscreen/view/fragments/RegisterFragment.java | f0f0dcb3992875d04a4b876a2ffc3c8c272db620 | [] | no_license | Sernrbia/DiscussGo-final | a45608734e0449b25259918acabc6361f3c9c4af | 77ad537541f6c84c6d4a7997b305168419d8341d | refs/heads/master | 2020-06-28T17:31:53.620503 | 2019-08-10T00:50:01 | 2019-08-10T00:50:01 | 200,297,529 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,857 | java | package com.example.discussgo.firstscreen.view.fragments;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import androidx.fragment.app.Fragment;
import androidx.lifecycle.ViewModelProviders;
import com.example.discussgo.R;
import com.example.discussgo.addon.Animation;
import com.example.discussgo.addon.SharedPreferencesWrapper;
import com.example.discussgo.firstscreen.factory.RegisterFactory;
import com.example.discussgo.firstscreen.repository.UserRepository;
import com.example.discussgo.firstscreen.viewmodel.RegisterVM;
public class RegisterFragment extends Fragment {
RegisterVM viewmodel;
Animation animation;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.register_layout, container, false);
final EditText firstName = view.findViewById(R.id.register_editFirstName);
final EditText lastName = view.findViewById(R.id.register_editLastName);
final EditText username = view.findViewById(R.id.register_editUsername);
final EditText password = view.findViewById(R.id.register_editPassword);
final EditText confirmPassword = view.findViewById(R.id.register_editConfirmPassword);
SharedPreferencesWrapper wrapper = SharedPreferencesWrapper.getInstance();
UserRepository repository = UserRepository.getInstance(wrapper);
RegisterFactory factory = new RegisterFactory(repository);
viewmodel = ViewModelProviders.of(this, factory).get(RegisterVM.class);
viewmodel.getCheckFields().observe(RegisterFragment.this, s -> {
//animation.stopAnimation();
if (s.contains("username")) {
username.setError(s);
} else if(s.contains("password")) {
password.setError(s);
} else if(s.contains("first name")) {
firstName.setError(s);
} else if(s.contains("last name")) {
lastName.setError(s);
} else if(s.contains("confirm password")) {
confirmPassword.setError(s);
} else {
password.setText("");
confirmPassword.setText("");
password.setError(s);
confirmPassword.setError(s);
}
});
Button btnRegister = view.findViewById(R.id.register_btnRegister);
btnRegister.setOnClickListener(view1 -> {
viewmodel.checkFields(firstName.getText().toString(), lastName.getText().toString(), username.getText().toString(), password.getText().toString(), confirmPassword.getText().toString());
});
return view;
}
}
| [
"[email protected]"
] | |
f5aec46499213d4bc4eff0edb8ec37aa6d256146 | dbd5cc67713c20cea78040615dc19a2a9c4d9fcb | /src/main/java/com/spotify/client/demo/model/Example.java | ea6ffb4cf2e0f1b2b7325dc0b93dbb0d5ef75d11 | [] | no_license | adamcze4/SpringBoot_Spotify_Client_with_MongoDB | e812cf9bd1849de0083e74cc012c9fa3e80aacde | 8e4b68d90cb8276b7dc581fa26a5327b8c5e28be | refs/heads/master | 2022-10-08T02:03:00.844976 | 2020-06-10T11:08:17 | 2020-06-10T11:08:17 | 271,253,575 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,151 | java | package com.spotify.client.demo.model;
import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"tracks"
})
public class Example {
@JsonProperty("tracks")
private Tracks tracks;
@JsonIgnore
private Map<String, Object> additionalProperties = new HashMap<String, Object>();
@JsonProperty("tracks")
public Tracks getTracks() {
return tracks;
}
@JsonProperty("tracks")
public void setTracks(Tracks tracks) {
this.tracks = tracks;
}
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
| [
"[email protected]"
] | |
e06207b9a66c9fe95fb39ac2a46fe95a59fa96a6 | 1977757fa8a337e3346795cfb1ceca9ae95b97fb | /src/day44/HouseBuilder.java | b74d401880170f0c1d72c1bf7451bea89d874ff5 | [] | no_license | Tarana82/MyFirstProject | fcb3e81c3659e9f846a71c7856fcf4ba914e15ad | 6fe9bb5f1d90812f6c2e5ef68ba275435a7cabce | refs/heads/master | 2021-02-11T16:22:21.801471 | 2020-03-03T03:33:39 | 2020-03-03T03:33:39 | 244,509,280 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 505 | java | package day44;
public class HouseBuilder {
public static void main(String[] args) {
CyberHouse.showNeighbourhoodName();
CyberHouse c1 = new CyberHouse("Vintage", 101);
c1.showAllInfo();
CyberHouse c2 = new CyberHouse("Classic", 102);
c2.showAllInfo();
//System.out.println(CyberHouse.neighbourhoodName );
// How do I get max value of Short
System.out.println(Short.MAX_VALUE);
System.out.println(Byte.MAX_VALUE);
}
}
| [
"[email protected]"
] | |
db26b58a4da4429255fa0cc1c70d24a33a582f9b | 28c99d6b07a8683bed97c8d2190648d5b9dca757 | /src/main/java/io/github/wispoffates/minecraft/tktowns/responses/OutpostModificationResponse.java | c578c5a992a8138be8d59baaf460893a4f828b73 | [] | no_license | wispoffates/minecraft.tktowns | b0e0ecc5f347b1d0c497115119f9b2ffedce8595 | c68bb14629a865213cbbcaaf2d30fae26882cffa | refs/heads/master | 2016-09-06T14:38:49.870049 | 2015-05-21T03:23:20 | 2015-05-21T03:23:20 | 24,813,285 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 433 | java | package io.github.wispoffates.minecraft.tktowns.responses;
import io.github.wispoffates.minecraft.tktowns.api.impl.Outpost;
public class OutpostModificationResponse extends GenericModificationResponse {
protected Outpost outpost;
public OutpostModificationResponse(String message, Outpost outpost, boolean success) {
super(message,success);
this.outpost = outpost;
}
public Outpost getOutpost() {
return outpost;
}
}
| [
"[email protected]"
] | |
3c9ba1f190bb80b05efa2b9a1edb7c742054de3b | d16ff20568c9c82dd9f821332cdffdeab01b97b3 | /code/src/org/bits/jcr/actors/Developer.java | e3422d3bccccbd5d3869cad4c46a4503633860cd | [] | no_license | shubbansal27/ReviewIt | b4966df019b5ddf6e96c7bd0ca795c8af1da29dd | a6585cef727227e20f3a79222caddb4e7cefc8fa | refs/heads/main | 2023-03-07T04:05:54.359383 | 2021-02-25T17:25:48 | 2021-02-25T17:25:48 | 342,323,445 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 443 | java | package org.bits.jcr.actors;
import java.io.*;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class Developer extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
}
} | [
"[email protected]"
] | |
10cb8ac82c16c6bf9ad174d1a571f1d7648c97b7 | 487cf95b2537c14c205fd55f5aa16b19bd4d0c69 | /src/main/java/net/shopxx/template/directive/PaginationDirective.java | 58bf801a36203d80c098e5946372607a711e51fa | [] | no_license | heyewei/mall1 | 1953d777fc7a0a59037e7e819b732c05f77957b0 | 01b5b49289757a10bbb5d3dea25b114762a2c783 | refs/heads/develop | 2021-07-10T17:58:08.819438 | 2017-10-13T02:06:36 | 2017-10-13T02:06:36 | 107,208,648 | 1 | 1 | null | 2017-10-17T02:38:49 | 2017-10-17T02:38:49 | null | UTF-8 | Java | false | false | 5,320 | java | /*
* Copyright 2005-2017 shopxx.net. All rights reserved.
* Support: http://www.shopxx.net
* License: http://www.shopxx.net/license
*/
package net.shopxx.template.directive;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.stereotype.Component;
import freemarker.core.Environment;
import freemarker.template.TemplateDirectiveBody;
import freemarker.template.TemplateException;
import freemarker.template.TemplateModel;
import net.shopxx.util.FreeMarkerUtils;
/**
* 模板指令 - 分页
*
* @author SHOP++ Team
* @version 5.0.3
*/
@Component
public class PaginationDirective extends BaseDirective {
/**
* "模式"参数名称
*/
private static final String PATTERN_PARAMETER_NAME = "pattern";
/**
* "页码"参数名称
*/
private static final String PAGE_NUMBER_PARAMETER_NAME = "pageNumber";
/**
* "总页数"参数名称
*/
private static final String TOTAL_PAGES_PARAMETER_NAME = "totalPages";
/**
* "中间段页码数"参数名称
*/
private static final String SEGMENT_COUNT_PARAMETER_NAME = "segmentCount";
/**
* "模式"变量名称
*/
private static final String PATTERN_VARIABLE_NAME = "pattern";
/**
* "页码"变量名称
*/
private static final String PAGE_NUMBER_VARIABLE_NAME = "pageNumber";
/**
* "总页数"变量名称
*/
private static final String PAGE_COUNT_VARIABLE_NAME = "totalPages";
/**
* "中间段页码数"变量名称
*/
private static final String SEGMENT_COUNT_VARIABLE_NAME = "segmentCount";
/**
* "是否存在上一页"变量名称
*/
private static final String HAS_PREVIOUS_VARIABLE_NAME = "hasPrevious";
/**
* "是否存在下一页"变量名称
*/
private static final String HAS_NEXT_VARIABLE_NAME = "hasNext";
/**
* "是否为首页"变量名称
*/
private static final String IS_FIRST_VARIABLE_NAME = "isFirst";
/**
* "是否为末页"变量名称
*/
private static final String IS_LAST_VARIABLE_NAME = "isLast";
/**
* "上一页页码"变量名称
*/
private static final String PREVIOUS_PAGE_NUMBER_VARIABLE_NAME = "previousPageNumber";
/**
* "下一页页码"变量名称
*/
private static final String NEXT_PAGE_NUMBER_VARIABLE_NAME = "nextPageNumber";
/**
* "首页页码"变量名称
*/
private static final String FIRST_PAGE_NUMBER_VARIABLE_NAME = "firstPageNumber";
/**
* "末页页码"变量名称
*/
private static final String LAST_PAGE_NUMBER_VARIABLE_NAME = "lastPageNumber";
/**
* "中间段页码"变量名称
*/
private static final String SEGMENT_VARIABLE_NAME = "segment";
/**
* 执行
*
* @param env
* 环境变量
* @param params
* 参数
* @param loopVars
* 循环变量
* @param body
* 模板内容
*/
@SuppressWarnings({ "unchecked", "rawtypes" })
public void execute(Environment env, Map params, TemplateModel[] loopVars, TemplateDirectiveBody body) throws TemplateException, IOException {
String pattern = FreeMarkerUtils.getParameter(PATTERN_PARAMETER_NAME, String.class, params);
Integer pageNumber = FreeMarkerUtils.getParameter(PAGE_NUMBER_PARAMETER_NAME, Integer.class, params);
Integer totalPages = FreeMarkerUtils.getParameter(TOTAL_PAGES_PARAMETER_NAME, Integer.class, params);
Integer segmentCount = FreeMarkerUtils.getParameter(SEGMENT_COUNT_PARAMETER_NAME, Integer.class, params);
if (pageNumber == null || pageNumber < 1) {
pageNumber = 1;
}
if (totalPages == null || totalPages < 1) {
totalPages = 1;
}
if (segmentCount == null || segmentCount < 1) {
segmentCount = 5;
}
boolean hasPrevious = pageNumber > 1;
boolean hasNext = pageNumber < totalPages;
boolean isFirst = pageNumber == 1;
boolean isLast = pageNumber.equals(totalPages);
int previousPageNumber = pageNumber - 1;
int nextPageNumber = pageNumber + 1;
int firstPageNumber = 1;
int lastPageNumber = totalPages;
int startSegmentPageNumber = pageNumber - (int) Math.floor((segmentCount - 1) / 2D);
int endSegmentPageNumber = pageNumber + (int) Math.ceil((segmentCount - 1) / 2D);
if (startSegmentPageNumber < 1) {
startSegmentPageNumber = 1;
}
if (endSegmentPageNumber > totalPages) {
endSegmentPageNumber = totalPages;
}
List<Integer> segment = new ArrayList<>();
for (int i = startSegmentPageNumber; i <= endSegmentPageNumber; i++) {
segment.add(i);
}
Map<String, Object> variables = new HashMap<>();
variables.put(PATTERN_VARIABLE_NAME, pattern);
variables.put(PAGE_NUMBER_VARIABLE_NAME, pageNumber);
variables.put(PAGE_COUNT_VARIABLE_NAME, totalPages);
variables.put(SEGMENT_COUNT_VARIABLE_NAME, segmentCount);
variables.put(HAS_PREVIOUS_VARIABLE_NAME, hasPrevious);
variables.put(HAS_NEXT_VARIABLE_NAME, hasNext);
variables.put(IS_FIRST_VARIABLE_NAME, isFirst);
variables.put(IS_LAST_VARIABLE_NAME, isLast);
variables.put(PREVIOUS_PAGE_NUMBER_VARIABLE_NAME, previousPageNumber);
variables.put(NEXT_PAGE_NUMBER_VARIABLE_NAME, nextPageNumber);
variables.put(FIRST_PAGE_NUMBER_VARIABLE_NAME, firstPageNumber);
variables.put(LAST_PAGE_NUMBER_VARIABLE_NAME, lastPageNumber);
variables.put(SEGMENT_VARIABLE_NAME, segment);
setLocalVariables(variables, env, body);
}
} | [
"[email protected]"
] | |
458ee11c6d16fb00dd91d70a8705d59b8460ae01 | 20867edd60d647d3dc983bb4599ab55f7a417823 | /app/src/main/java/app/roque/moviesfeed/http/MoviesApiService.java | ea3644089be3ec55bb953c496888d4f883218026 | [] | no_license | kevingroque/Movies-Feed-Mvp-Dagger2-RxJava-Retrofit | 3fc72a9bd289dac5f1d449ceb689596047852df9 | d860ab06a2403870feda7c356dc75dc47aa22ff9 | refs/heads/master | 2020-08-05T03:41:25.823211 | 2019-10-02T15:50:25 | 2019-10-02T15:50:25 | 212,380,903 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 362 | java | package app.roque.moviesfeed.http;
import app.roque.moviesfeed.http.apiModel.TopMoviesRated;
import io.reactivex.Observable;
import retrofit2.http.GET;
import retrofit2.http.Query;
public interface MoviesApiService {
@GET("top_rated")
Observable<TopMoviesRated> getTopMoviesRated(/*@Query("api_key") String api_key,*/ @Query("page") Integer page);
}
| [
"[email protected]"
] | |
c578661adfe5fccdc754424dc7e5f14ab21b583f | ee8c16c1474e161359f2cb77b0105f9ded8068d1 | /webrtc-demo/webrtc-demo-api/src/main/java/dev/onvoid/webrtc/demo/presenter/DesktopCaptureSettingsPresenter.java | 7830ab7b2dfcd901638f20cf6b2acc058f7538df | [
"BSD-3-Clause",
"LicenseRef-scancode-html5",
"DOC",
"Apache-2.0"
] | permissive | m-sobieszek/webrtc-java | b46fa47a4e1cd7b8e5992322311562a31eeabdee | 406336052da1bc079ca62577a3fc845e22e215c1 | refs/heads/master | 2022-08-22T12:32:28.509935 | 2022-06-15T11:47:50 | 2022-06-15T11:47:50 | 230,241,997 | 0 | 0 | Apache-2.0 | 2019-12-26T10:12:11 | 2019-12-26T10:12:10 | null | UTF-8 | Java | false | false | 1,266 | java | /*
* Copyright 2019 Alex Andres
*
* 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 dev.onvoid.webrtc.demo.presenter;
import dev.onvoid.webrtc.demo.config.Configuration;
import dev.onvoid.webrtc.demo.config.DesktopCaptureConfiguration;
import dev.onvoid.webrtc.demo.view.DesktopCaptureSettingsView;
import javax.inject.Inject;
public class DesktopCaptureSettingsPresenter extends Presenter<DesktopCaptureSettingsView> {
private final DesktopCaptureConfiguration config;
@Inject
DesktopCaptureSettingsPresenter(DesktopCaptureSettingsView view, Configuration config) {
super(view);
this.config = config.getDesktopCaptureConfiguration();
}
@Override
public void initialize() {
view.setFrameRate(config.frameRateProperty());
}
}
| [
"[email protected]"
] | |
52ffe5c9038f0ed7f75159cfac6f3b291fd16883 | c2598138d8c97d7be2b80b50c5aa4313be70e0ac | /src/GamePanel.java | bfd44b7d091eb206e1124eb0a98a76dc4e757e93 | [] | no_license | mkongani/snakegame-updated | 7cd3d0ddffbaa9b0c0c805ae41cbb30972f4c307 | 881519eb12b9b705c42662222c65bb4763c5ee86 | refs/heads/main | 2023-08-19T17:39:49.068038 | 2021-10-25T02:34:45 | 2021-10-25T02:34:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,104 | java |
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.GridLayout;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.util.ArrayList;
import java.util.Random;
import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.Timer;
public class GamePanel extends JPanel implements ActionListener, KeyListener {
private int speed_factor;
private Timer timer;
private JPanel[][] tiles = new JPanel[25][25];
private int snake_length = 3;
private int head_pos;
private ArrayList<Point> snake = new ArrayList<Point>();
private int x_cord;
private int y_cord;
private int score;
Point top_of_snake;
Point score_point;
boolean lose;
boolean boundary;
private int direction;
private ScorePanel scorePanel;
public GamePanel(ScorePanel panel) {
this.setLayout(new GridLayout(25,25));
this.setBackground(Color.black);
this.addKeyListener(this);
this.setFocusable(true);
this.requestFocusInWindow();
speed_factor = 100;
timer = new Timer(speed_factor,this);
timer.start();
addTiles();
startingPoint();
initializeSnake();
// test fruit
score_point = new Point(13,15);
tiles[score_point.x][score_point.y].setBackground(Color.red);
lose = false; //start by not losing the game
boundary = false; //snake has not hit a boundary
//score point
//get the score panel
scorePanel = panel;
setScore(0);
}
protected void paintComponent(Graphics g){
super.paintComponent(g);
g.setColor(Color.black);
g.fillRect(0, 0, 800, 800);
if(loseCheck()) {
System.out.println("You have lost. Game over");
JOptionPane.showMessageDialog(this, "Game Over!");
return;
}
if(direction == 1 ) {
moveLeft();
}
if(direction == 2 ) {
moveUp();
}
if(direction == 3 ) {
moveDown();
}
if(direction == 4 ) {
moveRight();
}
}
private boolean loseCheck() {
if(boundary) {
return true;
}
Point hold = snake.get(snake.size()-1);
for(int i=0; i<snake.size()-1; i++){
if(snake.get(snake.size()-1).equals(snake.get(i))){
System.out.println("LOOOOOOOOOOOOOSE");
return true;
}
}
return false;
}
@Override
public void actionPerformed(ActionEvent arg0) {
repaint();
addActionListner(scorePanel);
// Speeding up the snake
if(System.currentTimeMillis()%1000==0 && !(speed_factor < 30)) {
timer.setDelay(speed_factor-=5);
}
if(loseCheck()){
timer.stop();
return;
}
}
@Override
public void keyPressed(KeyEvent e) {
// Keys for moving snake
if(e.getKeyCode() == 37) {// left
if (direction!=4){
direction = 1;
}
}
if(e.getKeyCode() == 38) { //up
if(direction!=2){
direction = 3;
}
}
if(e.getKeyCode() == 39) { // right
if(direction!=1){
direction = 4;
}
}
if(e.getKeyCode() == 40) { //down
if(direction!=3){
direction = 2;
}
}
}
public void initializeSnake(){
//initial snake
for(int i=0;i<snake_length;i++){
tiles[x_cord][y_cord].setBackground(Color.green);
Point snake_point = new Point();
snake_point.x = x_cord;
snake_point.y = y_cord;
snake.add(snake_point);
x_cord+=1;
}
x_cord--;
}
public void startingPoint(){
x_cord = 5;
y_cord = 16;
direction = 4;
}
private void addTiles() {
for (y_cord=0; y_cord<25; y_cord++){
for(x_cord=0; x_cord<25; x_cord++){
tiles[x_cord][y_cord] = new JPanel();
//tiles[x_cord][y_cord].setBorder(BorderFactory.createLineBorder(Color.pink));
tiles[x_cord][y_cord].setBorder(BorderFactory.createLineBorder(Color.black));
add(tiles[x_cord][y_cord]);
tiles[x_cord][y_cord].setBackground(Color.black);
}
}
}
private void moveLeft(){
head_pos = x_cord - 1; // figure out why this works exactly to avoid errors
if(head_pos >= 0 ){
x_cord = head_pos;
tiles[x_cord][y_cord].setBackground(Color.green);
Point snake_point = new Point();
snake_point.x = x_cord;
snake_point.y = y_cord;
snake.add(snake_point);
if(!(tiles[score_point.x][score_point.y].equals(tiles[x_cord][y_cord]))) {
tiles[snake.get(0).x][snake.get(0).y].setBackground(Color.black);
snake.remove(0);
}
else {
System.out.println("We went here!");
snake_length++; //does it matter?
setScore(getScore() + 10);
point_generator();
//do nothing else I guess
}
head_pos --;
}
else {
boundary = true;
System.out.println("You lost");
return;
}
}
private void moveRight(){
head_pos = x_cord + 1; // figure out why this works exactly to avoid errors
if(head_pos <=24 ){
x_cord = head_pos;
tiles[x_cord][y_cord].setBackground(Color.green);
Point snake_point = new Point();
snake_point.x = x_cord;
snake_point.y = y_cord;
snake.add(snake_point);
if(!(tiles[score_point.x][score_point.y].equals(tiles[x_cord][y_cord]))) {
tiles[snake.get(0).x][snake.get(0).y].setBackground(Color.black);
snake.remove(0);
}
else {
System.out.println("We went here!");
snake_length++; //does it matter?
setScore(getScore() + 10);
point_generator();
//do nothing else I guess
}
head_pos ++;
}
else {
System.out.println("You lost");
boundary = true;
return;
}
}
private void moveUp(){
head_pos = y_cord+1;
//conversion of current head position (in terms of x) now in terms of y)
System.out.println(head_pos);
if(head_pos < 25 ){
y_cord = head_pos;
tiles[x_cord][y_cord].setBackground(Color.green);
Point snake_point = new Point();
snake_point.x = x_cord;
snake_point.y = y_cord;
snake.add(snake_point);
if(!(tiles[score_point.x][score_point.y].equals(tiles[x_cord][y_cord]))) {
tiles[snake.get(0).x][snake.get(0).y].setBackground(Color.black);
snake.remove(0);
}
else {
System.out.println("We went here!");
snake_length++; //does it matter?
setScore(getScore() + 10);
point_generator();
//do nothing else I guess
}
//tiles[x_cord][y_cord-snake_length].setBackground(Color.white);
head_pos ++;
}
else {
System.out.println("You lost");
boundary = true;
return;
}
}
private void moveDown(){ // the down is actually up I think...
head_pos = y_cord-1;
if(head_pos >= 0 ){
top_of_snake = snake.get(snake.size()-1);
y_cord = head_pos;
tiles[x_cord][y_cord].setBackground(Color.green);
Point snake_point = new Point();
snake_point.x = x_cord;
snake_point.y = y_cord;
snake.add(snake_point);
if(!(tiles[score_point.x][score_point.y].equals(tiles[x_cord][y_cord]))) {
tiles[snake.get(0).x][snake.get(0).y].setBackground(Color.black);
snake.remove(0);
}
else {
System.out.println("We went here!");
snake_length++; //does it matter?
setScore(getScore() + 10);
point_generator();
//do nothing else I guess
}
head_pos --;
}
else {
boundary = true;
System.out.println("You lost");
return;
}
}
private void point_generator(){
Random rand = new Random();
int randomNum = rand.nextInt(24);
score_point.x = randomNum;
randomNum = rand.nextInt(24);
score_point.y = randomNum;
System.out.println("We would have a red at X: "+ score_point.x + " and at Y : "+ score_point.y);
tiles[score_point.x][score_point.y].setBackground(Color.red);
}
public int getScore() {
return score;
}
public void setScore(int score) {
this.score = score;
}
public void addActionListner(ScorePanel scorePanel) {
// TODO Auto-generated method stub
scorePanel.setScore(getScore());
System.out.println( score + " is the current score!!!!!!!!");
}
@Override
public void keyTyped(KeyEvent e) {
// TODO Auto-generated method stub
}
@Override
public void keyReleased(KeyEvent e) {
// TODO Auto-generated method stub
}
}
| [
"[email protected]"
] | |
371bbc17cad5d1541196439ab6c39f84243a43f5 | b347249be3422c10d43b027bce87be7c37031325 | /ModuloPagamento2/src/com/up/pagamento/endpoint/PagamentoEndPointImpl.java | 41a6fca7a5bcae726c4b541c647e7b5cecedf91a | [] | no_license | lucaswamser/ecommerce | dc1b3613f0790713a14862ce2c23a8cc145c752d | a0f392fc29fc42ed5d7cc4d8f2a49a2adc3b1613 | refs/heads/master | 2021-01-20T18:16:26.155035 | 2016-11-19T17:56:21 | 2016-11-19T17:56:21 | 61,677,260 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 796 | java | package com.up.pagamento.endpoint;
import javax.jws.WebMethod;
import javax.jws.WebService;
import com.up.pagamento.dao.PagamentoDaoImpl;
import com.up.pagamento.domain.Pagamento;
import com.up.pagamento.services.PagamentoService;
import com.up.pagamento.services.PagamentoServiceImpl;
@WebService(endpointInterface = "com.up.pagamento.endpoint.PagamentoEndPoint")
public class PagamentoEndPointImpl implements PagamentoEndPoint {
private PagamentoService pagamentoService;
public PagamentoEndPointImpl() {
super();
this.pagamentoService = new PagamentoServiceImpl(new PagamentoDaoImpl());
}
@WebMethod
@Override
public Boolean pagar(Pagamento pagamento) {
System.out.println("modulo de pagamento recebeu a requisição");
return pagamentoService.pagar(pagamento);
}
}
| [
"lucas@lucas-Aspire-E1-571"
] | lucas@lucas-Aspire-E1-571 |
8b39b144ffd70b91184167885e83fefbf176ecc9 | 815c18b4fa82e2ef7a15b661eb93bab8085b2257 | /cxx-checks/src/test/java/org/sonar/cxx/checks/LineRegularExpressionCheckTest.java | a30af45a4643e980156302f35c8dc2ba68b97d2d | [] | no_license | FrontEndART/sonar-cxx | 12b2ae22ad0bb802acade321a7c7e5e8654f8765 | 65b76a9db7851f90bded2cf71be6701b5b6c1c78 | refs/heads/master | 2021-01-16T20:34:52.236232 | 2016-06-10T08:26:21 | 2016-06-10T09:39:31 | 60,832,193 | 0 | 0 | null | 2016-06-10T07:51:49 | 2016-06-10T07:51:49 | null | UTF-8 | Java | false | false | 4,097 | java | /*
* Sonar C++ Plugin (Community)
* Copyright (C) 2011 Waleri Enns and CONTACT Software GmbH
* [email protected]
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.cxx.checks;
import java.io.File;
import org.junit.Test;
import org.sonar.cxx.CxxAstScanner;
import org.sonar.squidbridge.api.SourceFile;
import org.sonar.squidbridge.checks.CheckMessagesVerifier;
public class LineRegularExpressionCheckTest {
@Test
public void lineRegExWithoutFilePattern() {
LineRegularExpressionCheck check = new LineRegularExpressionCheck();
check.regularExpression = "stdafx\\.h";
check.message = "Found 'stdafx.h' in line!";
SourceFile file = CxxAstScanner.scanSingleFile(new File("src/test/resources/checks/LineRegEx.cc"), check);
CheckMessagesVerifier.verify(file.getCheckMessages())
.next().atLine(2).withMessage(check.message)
.next().atLine(3).withMessage(check.message)
.noMore();
}
@Test
public void lineRegExInvertWithoutFilePattern() {
LineRegularExpressionCheck check = new LineRegularExpressionCheck();
check.regularExpression = "//.*";
check.invertRegularExpression = true;
check.message = "Found no comment in the line!";
SourceFile file = CxxAstScanner.scanSingleFile(new File("src/test/resources/checks/LineRegExInvert.cc"), check);
CheckMessagesVerifier.verify(file.getCheckMessages())
.next().atLine(3).withMessage(check.message)
.noMore();
}
@Test
public void lineRegExWithFilePattern1() {
LineRegularExpressionCheck check = new LineRegularExpressionCheck();
check.matchFilePattern = "/**/*.cc"; // all files with .cc file extension
check.regularExpression = "#include\\s+\"stdafx\\.h\"";
check.message = "Found '#include \"stdafx.h\"' in line in a .cc file!";
SourceFile file = CxxAstScanner.scanSingleFile(new File("src/test/resources/checks/LineRegEx.cc"), check);
CheckMessagesVerifier.verify(file.getCheckMessages())
.next().atLine(2).withMessage(check.message)
.next().atLine(3).withMessage(check.message)
.noMore();
}
@Test
public void lineRegExWithFilePatternInvert() {
LineRegularExpressionCheck check = new LineRegularExpressionCheck();
check.matchFilePattern = "/**/*.xx"; // all files with not .xx file extension
check.invertFilePattern = true;
check.regularExpression = "#include\\s+\"stdafx\\.h\"";
check.message = "Found '#include \"stdafx.h\"' in line in a not .xx file!";
SourceFile file = CxxAstScanner.scanSingleFile(new File("src/test/resources/checks/LineRegEx.cc"), check);
CheckMessagesVerifier.verify(file.getCheckMessages())
.next().atLine(2).withMessage(check.message)
.next().atLine(3).withMessage(check.message)
.noMore();
}
@Test
public void lineRegExWithFilePattern2() {
LineRegularExpressionCheck check = new LineRegularExpressionCheck();
check.matchFilePattern = "/**/*.xx"; // all files with .xx file extension
check.regularExpression = "#include\\s+\"stdafx\\.h\"";
check.message = "Found '#include \"stdafx.h\"' in line in a .xx file!";
SourceFile file = CxxAstScanner.scanSingleFile(new File("src/test/resources/checks/LineRegEx.cc"), check);
CheckMessagesVerifier.verify(file.getCheckMessages())
.noMore();
}
}
| [
"[email protected]"
] | |
415b76a2687ef75bd54ee3f946dee59b95ac9ac7 | cc9925d381bb8dda2e89fbd2c50be9eaf7df70bc | /app/src/com/trovebox/android/app/ui/adapter/MultiSelectTagsAdapter.java | 54d3d3b09066dca107989438fc978d329b26a7cf | [
"Apache-2.0"
] | permissive | photo/mobile-android | 91e5ad5d93c6482dfaf00b0c8c59d58a314d9b87 | 24d1d105629403ec6fc19aa1f3cb4aa45c80d391 | refs/heads/master | 2021-01-15T22:29:16.633557 | 2020-10-01T07:04:11 | 2020-10-01T07:04:11 | 2,031,128 | 29 | 23 | Apache-2.0 | 2020-10-01T07:04:12 | 2011-07-11T15:49:24 | Java | UTF-8 | Java | false | false | 4,087 | java |
package com.trovebox.android.app.ui.adapter;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import com.trovebox.android.app.Preferences;
import com.trovebox.android.app.R;
import com.trovebox.android.app.TroveboxApplication;
import com.trovebox.android.app.model.utils.TagUtils;
import com.trovebox.android.app.util.compare.ToStringComparator;
import com.trovebox.android.common.model.Tag;
import com.trovebox.android.common.net.ITroveboxApi;
import com.trovebox.android.common.net.TagsResponse;
import com.trovebox.android.common.net.TroveboxResponseUtils;
import com.trovebox.android.common.ui.adapter.EndlessAdapter;
import com.trovebox.android.common.util.GuiUtils;
import com.trovebox.android.common.util.LoadingControl;
/**
* @author Eugene Popovich
*/
public abstract class MultiSelectTagsAdapter extends EndlessAdapter<Tag>
implements OnCheckedChangeListener
{
static final String TAG = MultiSelectTagsAdapter.class.getSimpleName();
private final ITroveboxApi mTroveboxApi;
protected Set<String> checkedTags = new HashSet<String>();
private LoadingControl loadingControl;
public MultiSelectTagsAdapter(LoadingControl loadingControl)
{
super(Integer.MAX_VALUE);
this.loadingControl = loadingControl;
mTroveboxApi = Preferences.getApi(TroveboxApplication.getContext());
loadFirstPage();
}
@Override
public long getItemId(int position)
{
return ((Tag) getItem(position)).getTag().hashCode();
}
public void initTagCheckbox(Tag tag, CheckBox checkBox) {
checkBox.setText(tag.getTag());
checkBox.setOnCheckedChangeListener(null);
checkBox.setChecked(isChecked(tag.getTag()));
checkBox.setOnCheckedChangeListener(this);
}
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked) {
String text = (String) buttonView.getText();
if (isChecked)
checkedTags.add(text);
else
checkedTags.remove(text);
}
@Override
public LoadResponse loadItems(int page)
{
if (GuiUtils.checkLoggedInAndOnline())
{
try
{
TagsResponse response = mTroveboxApi.getTags();
if (TroveboxResponseUtils.checkResponseValid(response))
{
List<Tag> tags = response.getTags();
if (tags != null)
{
Collections.sort(tags, new ToStringComparator());
}
return new LoadResponse(tags, false);
}
} catch (Exception e)
{
GuiUtils.error(TAG,
R.string.errorCouldNotLoadNextTagsInList, e);
}
}
return new LoadResponse(null, false);
}
@Override
protected void onStartLoading()
{
if(loadingControl != null)
{
loadingControl.startLoading();
}
}
@Override
protected void onStoppedLoading()
{
if(loadingControl != null)
{
loadingControl.stopLoading();
}
}
public String getSelectedTags() {
StringBuffer buf = new StringBuffer("");
if (checkedTags.size() > 0) {
List<String> sortedTags = new ArrayList<String>(checkedTags);
Collections.sort(sortedTags, new ToStringComparator());
buf.append(TagUtils.getTagsString(sortedTags));
}
return buf.toString();
}
protected boolean isChecked(String tag)
{
if (tag == null)
{
return false;
}
return checkedTags.contains(tag);
}
}
| [
"[email protected]"
] | |
91875a7caa82d02d983d5196df3de1fdafbfc234 | da62f2ca68ea688d45611bb745a86ae76b409348 | /containerkit/instrument/client/src/main/java/org/apache/excalibur/instrument/client/InstrumentManagerTreeModel.java | b8b0943f7c3e1394d952a6c94a7ed5ebf17d368a | [
"Apache-2.0"
] | permissive | eva-xuyen/excalibur | 34dbf26dbd6e615dd9f04ced77580e5751a45401 | 4b5bcb6c21d998ddea41b0e3ebdbb2c1f8662c54 | refs/heads/master | 2021-01-23T03:04:14.441013 | 2015-03-26T02:45:49 | 2015-03-26T02:45:49 | 32,907,024 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 41,337 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.excalibur.instrument.client;
import java.util.ArrayList;
import java.util.HashMap;
import javax.swing.event.TreeModelEvent;
import javax.swing.event.TreeModelListener;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.TreeModel;
import javax.swing.tree.TreePath;
import org.apache.avalon.framework.logger.AbstractLogEnabled;
/**
* @author <a href="mailto:[email protected]">Avalon Development Team</a>
*/
class InstrumentManagerTreeModel
extends AbstractLogEnabled
implements InstrumentManagerConnectionListener, TreeModel
{
private final InstrumentManagerConnection m_connection;
/** The state version of the last client. */
private int m_lastClientStateVersion;
private boolean m_lastConnected = false;
private DefaultMutableTreeNode m_root;
private ArrayList m_listeners = new ArrayList();
private TreeModelListener[] m_listenerArray;
private HashMap m_elementMap = new HashMap();
private HashMap m_leasedSampleMap = new HashMap();
private DefaultMutableTreeNode[] m_leasedSampleArray;
/*---------------------------------------------------------------
* Constructors
*-------------------------------------------------------------*/
InstrumentManagerTreeModel( InstrumentManagerConnection connection )
{
m_connection = connection;
m_root = new DefaultMutableTreeNode( "Root" );
}
/*---------------------------------------------------------------
* InstrumentManagerConnectionListener Methods
*-------------------------------------------------------------*/
/**
* Called when the connection is opened. May be called more than once if
* the connection to the InstrumentManager is reopened.
*
* @param connection Connection which was opened.
*/
public void opened( InstrumentManagerConnection connection )
{
getLogger().debug( "InstrumentManagerTreeModel.opened(" + connection + ")" );
refreshModel();
}
/**
* Called when the connection is closed. May be called more than once if
* the connection to the InstrumentManager is reopened.
*
* @param connection Connection which was closed.
*/
public void closed( InstrumentManagerConnection connection )
{
getLogger().debug( "InstrumentManagerTreeModel.closed(" + connection + ")" );
refreshModel();
}
/**
* Called when the connection is deleted. All references should be removed.
*
* @param connection Connection which was deleted.
*/
public void deleted( InstrumentManagerConnection connection )
{
getLogger().debug( "InstrumentManagerTreeModel.deleted(" + connection + ")" );
refreshModel();
}
/*---------------------------------------------------------------
* TreeModel Methods
*-------------------------------------------------------------*/
/**
* Returns the root of the tree. Returns null only if the tree has
* no nodes.
*
* @return the root of the tree
*/
public Object getRoot()
{
return m_root;
}
/**
* Returns the child of <I>parent</I> at index <I>index</I> in the parent's
* child array. <I>parent</I> must be a node previously obtained from
* this data source. This should not return null if <i>index</i>
* is a valid index for <i>parent</i> (that is <i>index</i> >= 0 &&
* <i>index</i> < getChildCount(<i>parent</i>)).
*
* @param parent a node in the tree, obtained from this data source
* @return the child of <I>parent</I> at index <I>index</I>
*/
public Object getChild( Object parent, int index )
{
//getLogger.debug("InstrumentManagerTreeModel.getChild(" + parent + ", " + index + ")");
if ( parent instanceof DefaultMutableTreeNode )
{
DefaultMutableTreeNode node = (DefaultMutableTreeNode)parent;
return node.getChildAt( index );
}
else
{
return "---";
}
}
/**
* Returns the number of children of <I>parent</I>. Returns 0 if the node
* is a leaf or if it has no children. <I>parent</I> must be a node
* previously obtained from this data source.
*
* @param parent a node in the tree, obtained from this data source
* @return the number of children of the node <I>parent</I>
*/
public int getChildCount( Object parent )
{
//getLogger.debug("InstrumentManagerTreeModel.getChildCount(" + parent + ")");
if ( parent instanceof DefaultMutableTreeNode )
{
DefaultMutableTreeNode node = (DefaultMutableTreeNode)parent;
return node.getChildCount();
}
else
{
return 0;
}
}
/**
* Returns true if <I>node</I> is a leaf. It is possible for this method
* to return false even if <I>node</I> has no children. A directory in a
* filesystem, for example, may contain no files; the node representing
* the directory is not a leaf, but it also has no children.
*
* @param node a node in the tree, obtained from this data source
* @return true if <I>node</I> is a leaf
*/
public boolean isLeaf( Object node )
{
//getLogger.debug("InstrumentManagerTreeModel.isLeaf(" + node + ")");
if ( node == m_root )
{
// The root must always return false so that trees that do not
// show their root node will display correctly.
return false;
}
else if ( node instanceof DefaultMutableTreeNode )
{
DefaultMutableTreeNode inode = (DefaultMutableTreeNode)node;
return inode.isLeaf();
}
else
{
return true;
}
}
/**
* Messaged when the user has altered the value for the item identified
* by <I>path</I> to <I>newValue</I>. If <I>newValue</I> signifies
* a truly new value the model should post a treeNodesChanged
* event.
*
* @param path path to the node that the user has altered.
* @param newValue the new value from the TreeCellEditor.
*/
public void valueForPathChanged( TreePath path, Object newValue )
{
//getLogger.debug( "InstrumentManagerTreeModel.valueForPathChanged(" + path +
// ", " + newValue + ")" );
}
/**
* Returns the index of child in parent.
*/
public int getIndexOfChild( Object parent, Object child )
{
//getLogger.debug("InstrumentManagerTreeModel.getIndexOfChild(" + parent + ", " + child + ")");
if ( parent instanceof DefaultMutableTreeNode )
{
DefaultMutableTreeNode node = (DefaultMutableTreeNode)parent;
return node.getIndex( (DefaultMutableTreeNode)child );
}
else
{
return 0;
}
}
/**
* Adds a listener for the TreeModelEvent posted after the tree changes.
*
* @param listener the listener to add
*/
public void addTreeModelListener( TreeModelListener listener )
{
//getLogger.debug("InstrumentManagerTreeModel.addTreeModelListener(" + listener + ")");
synchronized(this)
{
m_listeners.add( listener );
m_listenerArray = null;
}
}
/**
* Removes a listener previously added with <B>addTreeModelListener()</B>.
*
* @param listener the listener to remove
*/
public void removeTreeModelListener( TreeModelListener listener )
{
//getLogger.debug("InstrumentManagerTreeModel.removeTreeModelListener(" + listener + ")");
synchronized(this)
{
m_listeners.remove( listener );
m_listenerArray = null;
}
}
/*---------------------------------------------------------------
* Methods
*-------------------------------------------------------------*/
/**
* Returns an optimized array of the registered TreeModelListeners.
*
* @return An array of the registered TreeModelListeners
*/
private TreeModelListener[] getListeners()
{
TreeModelListener[] listeners = m_listenerArray;
if ( listeners == null )
{
synchronized(this)
{
m_listenerArray = new TreeModelListener[ m_listeners.size() ];
m_listeners.toArray( m_listenerArray );
listeners = m_listenerArray;
}
}
return listeners;
}
private void fireTreeNodesChanged( TreeModelEvent event )
{
TreeModelListener[] listeners = getListeners();
for ( int i = 0; i < listeners.length; i++ )
{
listeners[i].treeNodesChanged( event );
}
}
private void fireTreeNodesInserted( TreeModelEvent event )
{
TreeModelListener[] listeners = getListeners();
for ( int i = 0; i < listeners.length; i++ )
{
listeners[i].treeNodesInserted( event );
}
}
private void fireTreeNodesRemoved( TreeModelEvent event )
{
TreeModelListener[] listeners = getListeners();
for ( int i = 0; i < listeners.length; i++ )
{
listeners[i].treeNodesRemoved( event );
}
}
private void fireTreeStructureChanged( TreeModelEvent event )
{
TreeModelListener[] listeners = getListeners();
for ( int i = 0; i < listeners.length; i++ )
{
listeners[i].treeStructureChanged( event );
}
}
/**
* Returns a TreeNode for an Instrumentable given its name.
*
* @param name Name of the Instrumentable.
*
* @return The named TreeNode.
*/
public DefaultMutableTreeNode getInstrumentableTreeNode( String name )
{
DefaultMutableTreeNode node = (DefaultMutableTreeNode)m_elementMap.get( name );
if ( node != null )
{
Object element = node.getUserObject();
if ( element instanceof InstrumentableNodeData )
{
return node;
}
}
return null;
}
/**
* Returns a TreeNode for an Instrument given its name.
*
* @param name Name of the Instrument.
*
* @return The named TreeNode.
*/
public DefaultMutableTreeNode getInstrumentTreeNode( String name )
{
DefaultMutableTreeNode node = (DefaultMutableTreeNode)m_elementMap.get( name );
if ( node != null )
{
Object element = node.getUserObject();
if ( element instanceof InstrumentNodeData )
{
return node;
}
}
return null;
}
/**
* Returns a TreeNode for an InstrumentSample given its name.
*
* @param name Name of the InstrumentSample.
*
* @return The named TreeNode.
*/
public DefaultMutableTreeNode getInstrumentSampleTreeNode( String name )
{
DefaultMutableTreeNode node = (DefaultMutableTreeNode)m_elementMap.get( name );
if ( node != null )
{
Object element = node.getUserObject();
if ( element instanceof InstrumentSampleNodeData )
{
return node;
}
}
return null;
}
/**
* Returns an optimized array of TreeNodes representing the leased
* instrument samples in this tree model.
*
* @return An array of TreeNodes for the leased instrument samples
* in the TreeModel.
*/
private DefaultMutableTreeNode[] getLeasedSampleArray()
{
DefaultMutableTreeNode[] leasedSampleArray = m_leasedSampleArray;
if ( leasedSampleArray == null )
{
synchronized(this)
{
m_leasedSampleArray = new DefaultMutableTreeNode[ m_leasedSampleMap.size() ];
m_leasedSampleMap.values().toArray( m_leasedSampleArray );
leasedSampleArray = m_leasedSampleArray;
}
}
return leasedSampleArray;
}
/**
* Once a minute, all of the leased samples should be updated. This is
* necessary to get the latest expiration times in case other processes
* are also updating the leases.
* Called from InstrumentManagerConnection.handleLeasedSamples.
*/
void renewAllSampleLeases()
{
DefaultMutableTreeNode[] leasedSampleArray = getLeasedSampleArray();
for ( int i = 0; i < leasedSampleArray.length; i++ )
{
// Extract the NodeData from the TreeNode
InstrumentSampleNodeData sampleNodeData =
(InstrumentSampleNodeData)leasedSampleArray[i].getUserObject();
InstrumentSampleData sample = sampleNodeData.getData();
updateInstrumentSample( sample );
}
}
/**
* Remove any instrument samples whose current leases have expired.
*/
void purgeExpiredSamples()
{
DefaultMutableTreeNode[] leasedSampleArray = getLeasedSampleArray();
for ( int i = 0; i < leasedSampleArray.length; i++ )
{
// Extract the NodeData from the TreeNode
InstrumentSampleNodeData sampleNodeData =
(InstrumentSampleNodeData)leasedSampleArray[i].getUserObject();
//System.out.println(" check: " + sampleNodeData + " remaining " +
// ( sampleNodeData.getRemainingLeaseTime() / 1000 ) + " seconds." );
if ( sampleNodeData.getRemainingLeaseTime() < 0 )
{
// Update the Instrument containing the sample.
DefaultMutableTreeNode instrumentTreeNode =
(DefaultMutableTreeNode)leasedSampleArray[i].getParent();
InstrumentData instrumentData =
((InstrumentNodeData)instrumentTreeNode.getUserObject()).getData();
updateInstrument( instrumentData, instrumentTreeNode, -1 /*Force update*/ );
}
}
}
/**
* Refreshes the entire Tree Model with the latest information from the server.
* This should be called whenever a refresh is needed, or whenever the status
* of the connection to the server changes.
*/
void refreshModel()
{
// Is the connection open or not?
if ( m_connection.isConnected() != m_lastConnected )
{
m_root.removeAllChildren();
m_elementMap.clear();
m_leasedSampleMap.clear();
m_leasedSampleArray = null;
m_lastClientStateVersion = -1;
fireTreeStructureChanged( new TreeModelEvent( this, m_root.getPath() ) );
}
if ( m_connection.isConnected() )
{
// Need to update the child nodes. (Root Instrumentables)
updateInstrumentManagerData(
m_connection.getInstrumentManager(), m_root, m_lastClientStateVersion );
}
m_lastConnected = m_connection.isConnected();
}
/**
* Called to update the local view of the InstrumentManagerData in the TreeeModel.
*
* @param manager The InstrumentManagerData to use for the update.
* @param roorTreeNode The TreeNode representing the client.
* @param oldStateVersion The state version at the time of the last update.
*/
private void updateInstrumentManagerData( InstrumentManagerData manager,
DefaultMutableTreeNode rootTreeNode,
int oldStateVersion )
{
int stateVersion = manager.getStateVersion();
if ( stateVersion == oldStateVersion )
{
// Already up to date.
return;
}
if ( getLogger().isDebugEnabled() )
{
getLogger().debug( "update manager(" + manager.getName() + ") "
+ "state new=" + stateVersion + ", old=" + oldStateVersion );
}
// The latest Instrumentables will be in the correct order.
InstrumentableData[] instrumentables = manager.getInstrumentables();
int i;
for ( i = 0; i < instrumentables.length; i++ )
{
InstrumentableData instrumentable = instrumentables[i];
int oldInstrumentableStateVersion = -1;
DefaultMutableTreeNode newChild = null;
int childCount = rootTreeNode.getChildCount();
if ( i < childCount )
{
int cmp;
do {
DefaultMutableTreeNode oldChild =
(DefaultMutableTreeNode)rootTreeNode.getChildAt( i );
cmp = ((InstrumentableNodeData)oldChild.getUserObject()).getDescription().
compareTo( instrumentable.getDescription() );
if ( cmp == 0 )
{
// This is the same object.
InstrumentableNodeData nodeData =
(InstrumentableNodeData)oldChild.getUserObject();
oldInstrumentableStateVersion = nodeData.getStateVersion();
if ( nodeData.update() )
{
// The contents of the node changed.
fireTreeNodesChanged( new TreeModelEvent( this,
rootTreeNode.getPath(), new int[] { i }, new Object[] { oldChild } ) );
}
newChild = oldChild;
// Node already in the elementMap
}
else if ( cmp > 0 )
{
// Need to insert a new node.
newChild = new DefaultMutableTreeNode(
new InstrumentableNodeData( instrumentable ), true );
rootTreeNode.insert( newChild, i );
fireTreeNodesInserted( new TreeModelEvent( this,
rootTreeNode.getPath(),new int[] { i }, new Object[] { newChild } ) );
// Add the new node to the elementMap
m_elementMap.put( ((InstrumentableNodeData)newChild.getUserObject()).
getName(), newChild );
}
else if ( cmp < 0 )
{
// Need to remove an old node.
rootTreeNode.remove( i );
fireTreeNodesRemoved( new TreeModelEvent( this,
rootTreeNode.getPath(), new int[] { i }, new Object[] { oldChild } ) );
// Remove the old node from the elementMap
m_elementMap.remove( ((InstrumentableNodeData)oldChild.getUserObject()).
getName() );
}
} while ( cmp < 0 );
}
else
{
// Append the new descriptor
newChild = new DefaultMutableTreeNode(
new InstrumentableNodeData( instrumentable ), true );
rootTreeNode.insert( newChild, i );
fireTreeNodesInserted( new TreeModelEvent( this, rootTreeNode.getPath(),
new int[] { i }, new Object[] { newChild } ) );
// Add the new node to the elementMap
m_elementMap.put( ((InstrumentableNodeData)newChild.getUserObject()).
getName(), newChild );
}
updateInstrumentable( instrumentable, newChild, oldInstrumentableStateVersion );
}
// Remove any remaining old nodes
while ( i < rootTreeNode.getChildCount() )
{
// Need to remove an old node.
DefaultMutableTreeNode oldChild = (DefaultMutableTreeNode)rootTreeNode.getChildAt( i );
rootTreeNode.remove( i );
fireTreeNodesRemoved( new TreeModelEvent(
this, rootTreeNode.getPath(), new int[] { i }, new Object[] { oldChild } ) );
// Remove the old node from the elementMap
m_elementMap.remove( ((InstrumentableNodeData)oldChild.getUserObject()).
getName() );
}
m_lastClientStateVersion = stateVersion;
}
/**
* @param instrumentableData The Instrumentable to update.
* @param instrumentableTreeNode The tree node of the Instrumentable to
* update.
* @param oldStateVersion The state version at the time of the last update.
*/
private void updateInstrumentable( InstrumentableData instrumentableData,
DefaultMutableTreeNode instrumentableTreeNode,
int oldStateVersion )
{
int stateVersion = instrumentableData.getStateVersion();
if ( stateVersion == oldStateVersion )
{
// Already up to date.
return;
}
if ( getLogger().isDebugEnabled() )
{
getLogger().debug( "update instrumentable(" + instrumentableData.getName() + ") "
+ "state new=" + stateVersion + ", old=" + oldStateVersion );
}
// The latest Instrumentables will be in the correct order.
InstrumentableData[] childInstrumentables = instrumentableData.getInstrumentables();
//System.out.println("Model.updateInstumentable() " + instrumentableData.getName() + " " + childInstrumentables.length);
int i;
for ( i = 0; i < childInstrumentables.length; i++ )
{
InstrumentableData childInstrumentable = childInstrumentables[i];
int oldInstrumentableStateVersion = -1;
//System.out.println(" " + childInstrumentable.getName() );
DefaultMutableTreeNode newChild = null;
int childCount = instrumentableTreeNode.getChildCount();
if ( i < childCount )
{
int cmp;
do {
DefaultMutableTreeNode oldChild =
(DefaultMutableTreeNode)instrumentableTreeNode.getChildAt( i );
if ( oldChild.getUserObject() instanceof InstrumentableNodeData )
{
cmp = ((InstrumentableNodeData)oldChild.getUserObject()).getDescription().
compareTo( childInstrumentable.getDescription() );
}
else
{
// Always put Instrumentables before any other nodes.
cmp = 1;
}
if ( cmp == 0 )
{
// This is the same object.
InstrumentableNodeData nodeData =
(InstrumentableNodeData)oldChild.getUserObject();
oldInstrumentableStateVersion = nodeData.getStateVersion();
if ( nodeData.update() )
{
// The contents of the node changed.
fireTreeNodesChanged( new TreeModelEvent( this,
instrumentableTreeNode.getPath(), new int[] { i },
new Object[] { oldChild } ) );
}
newChild = oldChild;
// Node already in the elementMap
}
else if ( cmp > 0 )
{
// Need to insert a new node.
newChild = new DefaultMutableTreeNode(
new InstrumentableNodeData( childInstrumentable ), true );
instrumentableTreeNode.insert( newChild, i );
fireTreeNodesInserted( new TreeModelEvent( this,
instrumentableTreeNode.getPath(),new int[] { i },
new Object[] { newChild } ) );
// Add the new node to the elementMap
m_elementMap.put( ((InstrumentableNodeData)newChild.getUserObject()).
getName(), newChild );
}
else if ( cmp < 0 )
{
// Need to remove an old node.
instrumentableTreeNode.remove( i );
fireTreeNodesRemoved( new TreeModelEvent( this,
instrumentableTreeNode.getPath(), new int[] { i },
new Object[] { oldChild } ) );
// Remove the old node from the elementMap
m_elementMap.remove( ((InstrumentableNodeData)oldChild.getUserObject()).
getName() );
}
} while ( cmp < 0 );
}
else
{
// Append the new descriptor
newChild = new DefaultMutableTreeNode(
new InstrumentableNodeData( childInstrumentable ), true );
instrumentableTreeNode.insert( newChild, i );
fireTreeNodesInserted( new TreeModelEvent( this, instrumentableTreeNode.getPath(),
new int[] { i }, new Object[] { newChild } ) );
// Add the new node to the elementMap
m_elementMap.put( ((InstrumentableNodeData)newChild.getUserObject()).
getName(), newChild );
}
updateInstrumentable( childInstrumentable, newChild, oldInstrumentableStateVersion );
}
// Remove any remaining old Instrumentable nodes
while ( i < instrumentableTreeNode.getChildCount() )
{
// Need to remove an old node.
DefaultMutableTreeNode oldChild =
(DefaultMutableTreeNode)instrumentableTreeNode.getChildAt( i );
if ( !( oldChild.getUserObject() instanceof InstrumentableNodeData ) )
{
break;
}
instrumentableTreeNode.remove( i );
fireTreeNodesRemoved( new TreeModelEvent(
this, instrumentableTreeNode.getPath(), new int[] { i },
new Object[] { oldChild } ) );
// Remove the old node from the elementMap
m_elementMap.remove( ((InstrumentableNodeData)oldChild.getUserObject()).
getName() );
}
// The latest Instruments will be in the correct order.
InstrumentData[] instruments =
instrumentableData.getInstruments();
for ( i = childInstrumentables.length; i < instruments.length + childInstrumentables.length; i++ )
{
InstrumentData instrument = instruments[i - childInstrumentables.length];
int oldInstrumentStateVersion = -1;
//System.out.println(" " + instrument.getName() );
DefaultMutableTreeNode newChild = null;
int childCount = instrumentableTreeNode.getChildCount();
if ( i < childCount )
{
int cmp;
do {
DefaultMutableTreeNode oldChild =
(DefaultMutableTreeNode)instrumentableTreeNode.getChildAt( i );
if ( oldChild.getUserObject() instanceof InstrumentNodeData )
{
cmp = ((InstrumentNodeData)oldChild.getUserObject()).getDescription().
compareTo( instrument.getDescription() );
}
else
{
// Always put Instrumentables before any other nodes.
cmp = 1;
}
if ( cmp == 0 )
{
// This is the same object.
InstrumentNodeData nodeData = (InstrumentNodeData)oldChild.getUserObject();
oldInstrumentStateVersion = nodeData.getStateVersion();
if ( nodeData.update() )
{
// The contents of the node changed.
fireTreeNodesChanged( new TreeModelEvent( this,
instrumentableTreeNode.getPath(), new int[] { i },
new Object[] { oldChild } ) );
}
newChild = oldChild;
// Node already in the elementMap
}
else if ( cmp > 0 )
{
// Need to insert a new node.
newChild = new DefaultMutableTreeNode(
new InstrumentNodeData( instrument, m_connection ), true );
instrumentableTreeNode.insert( newChild, i );
fireTreeNodesInserted( new TreeModelEvent( this,
instrumentableTreeNode.getPath(),new int[] { i },
new Object[] { newChild } ) );
// Add the new node to the elementMap
m_elementMap.put( ((InstrumentNodeData)newChild.getUserObject()).
getName(), newChild );
}
else if ( cmp < 0 )
{
// Need to remove an old node.
instrumentableTreeNode.remove( i );
fireTreeNodesRemoved( new TreeModelEvent( this,
instrumentableTreeNode.getPath(), new int[] { i },
new Object[] { oldChild } ) );
// Remove the old node from the elementMap
m_elementMap.remove( ((InstrumentNodeData)oldChild.getUserObject()).
getName() );
}
} while ( cmp < 0 );
}
else
{
// Append the new descriptor
newChild = new DefaultMutableTreeNode(
new InstrumentNodeData( instrument, m_connection ), true );
instrumentableTreeNode.insert( newChild, i );
fireTreeNodesInserted( new TreeModelEvent( this, instrumentableTreeNode.getPath(),
new int[] { i }, new Object[] { newChild } ) );
// Add the new node to the elementMap
m_elementMap.put( ((InstrumentNodeData)newChild.getUserObject()).
getName(), newChild );
}
updateInstrument( instrument, newChild, oldInstrumentStateVersion );
}
// Remove any remaining old Instrument nodes
while ( i < instrumentableTreeNode.getChildCount() )
{
// Need to remove an old node.
DefaultMutableTreeNode oldChild =
(DefaultMutableTreeNode)instrumentableTreeNode.getChildAt( i );
instrumentableTreeNode.remove( i );
fireTreeNodesRemoved( new TreeModelEvent(
this, instrumentableTreeNode.getPath(), new int[] { i },
new Object[] { oldChild } ) );
// Remove the old node from the elementMap
m_elementMap.remove( ((InstrumentNodeData)oldChild.getUserObject()).
getName() );
}
}
/**
* @param instrumentData The Instrument to update.
*/
void updateInstrument( InstrumentData instrumentData )
{
// Find the tree node.
DefaultMutableTreeNode instrumentTreeNode =
getInstrumentTreeNode( instrumentData.getName() );
if ( instrumentTreeNode != null )
{
updateInstrument( instrumentData, instrumentTreeNode, -1 /* Force update */ );
}
}
/**
* @param instrumentData The Instrument to update.
* @param instrumentTreeNode The tree node of the Instrument to update.
*/
void updateInstrument( InstrumentData instrumentData,
DefaultMutableTreeNode instrumentTreeNode,
int oldStateVersion )
{
int stateVersion = instrumentData.getStateVersion();
if ( stateVersion == oldStateVersion )
{
// Already up to date.
return;
}
if ( getLogger().isDebugEnabled() )
{
getLogger().debug( "update instrument(" + instrumentData.getName() + ") "
+ "state new=" + stateVersion + ", old=" + oldStateVersion );
}
// The latest Instrument Samples will be in the correct order.
InstrumentSampleData[] samples =
instrumentData.getInstrumentSamples();
//System.out.println("Model.updateInstument() " + instrumentDescriptor.getName() + " " + descriptors.length);
int i;
for ( i = 0; i < samples.length; i++ )
{
InstrumentSampleData sample = samples[i];
//System.out.println(" " + sample.getName() );
DefaultMutableTreeNode newChild = null;
int childCount = instrumentTreeNode.getChildCount();
if ( i < childCount )
{
int cmp;
do {
// Old child will always be a sample
DefaultMutableTreeNode oldChild =
(DefaultMutableTreeNode)instrumentTreeNode.getChildAt( i );
cmp = ((InstrumentSampleNodeData)oldChild.getUserObject()).
getDescription().compareTo( sample.getDescription() );
if ( cmp == 0 )
{
// This is the same object.
if ( ((InstrumentSampleNodeData)oldChild.getUserObject()).update() )
{
// The contents of the node changed.
fireTreeNodesChanged( new TreeModelEvent( this,
instrumentTreeNode.getPath(), new int[] { i },
new Object[] { oldChild } ) );
}
newChild = oldChild;
// Node already in the elementMap
}
else if ( cmp > 0 )
{
// Need to insert a new node.
newChild = new DefaultMutableTreeNode(
new InstrumentSampleNodeData( instrumentData.getName(),
sample, m_connection ), true );
instrumentTreeNode.insert( newChild, i );
fireTreeNodesInserted( new TreeModelEvent( this,
instrumentTreeNode.getPath(),new int[] { i },
new Object[] { newChild } ) );
// Add the new node to the elementMap
InstrumentSampleNodeData newNodeData =
(InstrumentSampleNodeData)newChild.getUserObject();
String sampleName = newNodeData.getName();
m_elementMap.put( sampleName, newChild );
if ( newNodeData.isLeased() )
{
m_leasedSampleMap.put( sampleName, newChild );
m_leasedSampleArray = null;
}
// Make sure that the maintained flag is set correctly
MaintainedSampleLease lease =
m_connection.getMaintainedSampleLease( sampleName );
if ( lease != null )
{
newNodeData.setLeaseDuration( lease.getLeaseDuration() );
}
}
else if ( cmp < 0 )
{
// Need to remove an old node.
instrumentTreeNode.remove( i );
fireTreeNodesRemoved( new TreeModelEvent( this,
instrumentTreeNode.getPath(), new int[] { i },
new Object[] { oldChild } ) );
// Remove the old node from the elementMap
InstrumentSampleNodeData oldNodeData =
(InstrumentSampleNodeData)oldChild.getUserObject();
String sampleName = oldNodeData.getName();
m_elementMap.remove( sampleName );
if ( oldNodeData.isLeased() )
{
m_leasedSampleMap.remove( sampleName );
m_leasedSampleArray = null;
}
}
} while ( cmp < 0 );
}
else
{
// Append the new descriptor
newChild = new DefaultMutableTreeNode(
new InstrumentSampleNodeData( instrumentData.getName(), sample, m_connection ),
true );
instrumentTreeNode.insert( newChild, i );
fireTreeNodesInserted( new TreeModelEvent( this, instrumentTreeNode.getPath(),
new int[] { i }, new Object[] { newChild } ) );
// Add the new node to the elementMap
InstrumentSampleNodeData newNodeData =
(InstrumentSampleNodeData)newChild.getUserObject();
String sampleName = newNodeData.getName();
m_elementMap.put( sampleName, newChild );
if ( newNodeData.isLeased() )
{
m_leasedSampleMap.put( sampleName, newChild );
m_leasedSampleArray = null;
}
// Make sure that the maintained flag is set correctly
MaintainedSampleLease lease =
m_connection.getMaintainedSampleLease( sampleName );
if ( lease != null )
{
newNodeData.setLeaseDuration( lease.getLeaseDuration() );
}
}
}
// Remove any remaining old Instrument Sample nodes
while ( i < instrumentTreeNode.getChildCount() )
{
// Need to remove an old node.
DefaultMutableTreeNode oldChild =
(DefaultMutableTreeNode)instrumentTreeNode.getChildAt( i );
instrumentTreeNode.remove( i );
fireTreeNodesRemoved( new TreeModelEvent(
this, instrumentTreeNode.getPath(), new int[] { i },
new Object[] { oldChild } ) );
// Remove the old node from the elementMap
InstrumentSampleNodeData oldNodeData =
(InstrumentSampleNodeData)oldChild.getUserObject();
String sampleName = oldNodeData.getName();
m_elementMap.remove( sampleName );
if ( oldNodeData.isLeased() )
{
m_leasedSampleMap.remove( sampleName );
m_leasedSampleArray = null;
}
}
}
/**
* @param sampleData The Instrument Sample to update.
*/
void updateInstrumentSample( InstrumentSampleData sampleData )
{
// Find the tree node.
DefaultMutableTreeNode sampleTreeNode =
getInstrumentSampleTreeNode( sampleData.getName() );
if ( sampleTreeNode != null )
{
updateInstrumentSample( sampleData, sampleTreeNode );
}
}
/**
* @param sampleData The Instrument Sample to update.
* @param sampleTreeNode The tree node of the Instrument Sample to update.
*/
void updateInstrumentSample( InstrumentSampleData sampleData,
DefaultMutableTreeNode sampleTreeNode )
{
// An update here should always lead to an event being fired.
((InstrumentSampleNodeData)sampleTreeNode.getUserObject()).update();
// The contents of the node changed.
fireTreeNodesChanged( new TreeModelEvent( this,
sampleTreeNode.getPath(), new int[ 0 ], new Object[ 0 ] ) );
}
}
| [
"[email protected]"
] | |
54080a4f2d42f5f0b458c11e89c48148e285b921 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/8/8_aff5236124995d294779dfd68b47b8e5164fefb2/ASListener/8_aff5236124995d294779dfd68b47b8e5164fefb2_ASListener_t.java | 187e1458936b09c8167ab139db24e6ccfb944240 | [] | 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 | 36,793 | java | package com.turt2live.antishare;
import java.io.BufferedWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.GameMode;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.World;
import org.bukkit.block.Block;
import org.bukkit.block.BlockFace;
import org.bukkit.block.Chest;
import org.bukkit.block.Furnace;
import org.bukkit.block.Jukebox;
import org.bukkit.entity.Boat;
import org.bukkit.entity.Entity;
import org.bukkit.entity.Item;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Minecart;
import org.bukkit.entity.Painting;
import org.bukkit.entity.Player;
import org.bukkit.entity.PoweredMinecart;
import org.bukkit.entity.Projectile;
import org.bukkit.entity.StorageMinecart;
import org.bukkit.entity.ThrownExpBottle;
import org.bukkit.entity.Vehicle;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.Listener;
import org.bukkit.event.block.Action;
import org.bukkit.event.block.BlockBreakEvent;
import org.bukkit.event.block.BlockPistonExtendEvent;
import org.bukkit.event.block.BlockPistonRetractEvent;
import org.bukkit.event.block.BlockPlaceEvent;
import org.bukkit.event.entity.EntityDamageByEntityEvent;
import org.bukkit.event.entity.EntityDamageEvent.DamageCause;
import org.bukkit.event.entity.EntityTargetEvent;
import org.bukkit.event.entity.ExpBottleEvent;
import org.bukkit.event.entity.PlayerDeathEvent;
import org.bukkit.event.player.PlayerChangedWorldEvent;
import org.bukkit.event.player.PlayerCommandPreprocessEvent;
import org.bukkit.event.player.PlayerDropItemEvent;
import org.bukkit.event.player.PlayerEggThrowEvent;
import org.bukkit.event.player.PlayerGameModeChangeEvent;
import org.bukkit.event.player.PlayerInteractEntityEvent;
import org.bukkit.event.player.PlayerInteractEvent;
import org.bukkit.event.player.PlayerJoinEvent;
import org.bukkit.event.player.PlayerKickEvent;
import org.bukkit.event.player.PlayerMoveEvent;
import org.bukkit.event.player.PlayerPickupItemEvent;
import org.bukkit.event.player.PlayerQuitEvent;
import org.bukkit.event.vehicle.VehicleDestroyEvent;
import org.bukkit.event.world.WorldLoadEvent;
import org.bukkit.event.world.WorldUnloadEvent;
import org.bukkit.inventory.ItemStack;
import com.turt2live.antishare.notification.Alert.AlertTrigger;
import com.turt2live.antishare.notification.Alert.AlertType;
import com.turt2live.antishare.permissions.PermissionNodes;
import com.turt2live.antishare.regions.ASRegion;
import com.turt2live.antishare.storage.PerWorldConfig;
import com.turt2live.antishare.storage.PerWorldConfig.ListType;
/**
* The core listener - Listens to all events needed by AntiShare and handles them
*
* @author turt2live
*/
public class ASListener implements Listener {
private AntiShare plugin = AntiShare.instance;
private ConcurrentHashMap<World, PerWorldConfig> config = new ConcurrentHashMap<World, PerWorldConfig>();
/**
* Creates a new Listener
*/
public ASListener(){
reload();
}
/**
* Reloads lists
*/
public void reload(){
config.clear();
for(World world : Bukkit.getWorlds()){
config.put(world, new PerWorldConfig(world));
}
}
/**
* Prints out each world to the writer
*
* @param out the writer
* @throws IOException for internal handling
*/
public void print(BufferedWriter out) throws IOException{
for(World world : config.keySet()){
out.write("## WORLD: " + world.getName() + " \r\n");
config.get(world).print(out);
}
}
// ################# World Load
@EventHandler
public void onWorldLoad(WorldLoadEvent event){
World world = event.getWorld();
config.put(world, new PerWorldConfig(world));
}
// ################# World Unload
@EventHandler
public void onWorldUnload(WorldUnloadEvent event){
World world = event.getWorld();
config.remove(world);
}
// ################# Block Break
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onBlockBreak(BlockBreakEvent event){
Player player = event.getPlayer();
Block block = event.getBlock();
AlertType type = AlertType.ILLEGAL;
boolean special = false;
boolean region = false;
Boolean drops = null;
AlertType specialType = AlertType.LEGAL;
String blockGM = "Unknown";
// Check if they should be blocked
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_BLOCK_BREAK, block.getWorld())){
type = AlertType.LEGAL;
}
if(!config.get(block.getWorld()).isBlocked(block.getType(), ListType.BLOCK_BREAK)){
type = AlertType.LEGAL;
}
// Check creative/survival blocks
if(!plugin.getPermissions().has(player, PermissionNodes.FREE_PLACE)){
GameMode blockGamemode = plugin.getBlockManager().getType(block);
if(blockGamemode != null){
special = true;
blockGM = blockGamemode.name().toLowerCase();
String oGM = blockGM.equalsIgnoreCase("creative") ? "survival" : "creative";
if(player.getGameMode() != blockGamemode){
boolean deny = plugin.getConfig().getBoolean("settings." + oGM + "-breaking-" + blockGM + "-blocks.deny");
drops = plugin.getConfig().getBoolean("settings." + oGM + "-breaking-" + blockGM + "-blocks.block-drops");
if(deny){
specialType = AlertType.ILLEGAL;
}
}
}
}
// Check regions
if(!plugin.getPermissions().has(player, PermissionNodes.REGION_BREAK)){
ASRegion playerRegion = plugin.getRegionManager().getRegion(player.getLocation());
ASRegion blockRegion = plugin.getRegionManager().getRegion(block.getLocation());
if(playerRegion != blockRegion){
special = true;
region = true;
specialType = AlertType.ILLEGAL;
}
}
// Handle event
if(type == AlertType.ILLEGAL || specialType == AlertType.ILLEGAL){
event.setCancelled(true);
}else{
plugin.getBlockManager().removeBlock(block);
}
// Handle drops
if(drops != null){
if(drops){
if(event.isCancelled()){
plugin.getBlockManager().removeBlock(block);
block.breakNaturally();
}
}else{
plugin.getBlockManager().removeBlock(block);
block.setType(Material.AIR);
}
}
// Alert
if(special){
if(region){
if(specialType == AlertType.ILLEGAL){
String specialMessage = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (specialType == AlertType.ILLEGAL ? " tried to break " : " broke ") + (specialType == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + block.getType().name().replace("_", " ") + ChatColor.WHITE + " in a region.";
String specialPlayerMessage = ChatColor.RED + "You cannot break blocks that are not in your region";
plugin.getAlerts().alert(specialMessage, player, specialPlayerMessage, specialType, AlertTrigger.BLOCK_BREAK);
}
}else{
String specialMessage = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (specialType == AlertType.ILLEGAL ? " tried to break the " + blockGM + " block " : " broke the " + blockGM + " block ") + (specialType == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + block.getType().name().replace("_", " ");
String specialPlayerMessage = plugin.getMessage("blocked-action." + blockGM + "-block-break");
plugin.getAlerts().alert(specialMessage, player, specialPlayerMessage, specialType, (blockGM.equalsIgnoreCase("creative") ? AlertTrigger.CREATIVE_BLOCK : AlertTrigger.SURVIVAL_BLOCK));
}
}else{
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to break " : " broke ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + block.getType().name().replace("_", " ");
String playerMessage = plugin.getMessage("blocked-action.break-block");
plugin.getAlerts().alert(message, player, playerMessage, type, AlertTrigger.BLOCK_BREAK);
}
// Check for 'attached' blocks and internal inventories
if(player.getGameMode() == GameMode.CREATIVE && !plugin.getPermissions().has(player, PermissionNodes.BREAK_ANYTHING)){
// Check inventories
if(config.get(block.getWorld()).clearBlockInventoryOnBreak()){
if(block.getState() instanceof Chest){
Chest state = (Chest) block.getState();
state.getBlockInventory().clear();
}else if(block.getState() instanceof Jukebox){
Jukebox state = (Jukebox) block.getState();
state.setPlaying(null);
}else if(block.getState() instanceof Furnace){
Furnace state = (Furnace) block.getState();
state.getInventory().clear();
}
}
// Check for attached blocks
if(config.get(block.getWorld()).removeAttachedBlocksOnBreak()){
for(BlockFace face : BlockFace.values()){
Block rel = block.getRelative(face);
if(ASUtils.isDroppedOnBreak(rel, block)){
plugin.getBlockManager().removeBlock(rel);
rel.setType(Material.AIR);
}
}
}
}
}
// ################# Block Place
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onBlockPlace(BlockPlaceEvent event){
Player player = event.getPlayer();
Block block = event.getBlock();
AlertType type = AlertType.ILLEGAL;
boolean region = false;
// Sanity check
if(block.getType() == Material.AIR){
return;
}
// Check if they should be blocked
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_BLOCK_PLACE, block.getWorld())){
type = AlertType.LEGAL;
}
if(!config.get(block.getWorld()).isBlocked(block.getType(), ListType.BLOCK_PLACE)){
type = AlertType.LEGAL;
}
if(!plugin.getPermissions().has(player, PermissionNodes.REGION_PLACE)){
ASRegion playerRegion = plugin.getRegionManager().getRegion(player.getLocation());
ASRegion blockRegion = plugin.getRegionManager().getRegion(block.getLocation());
if(playerRegion != blockRegion){
type = AlertType.ILLEGAL;
region = true;
}
}
// Handle event
if(type == AlertType.ILLEGAL){
event.setCancelled(true);
}else{
// Handle block place for tracker
if(!plugin.getPermissions().has(player, PermissionNodes.FREE_PLACE)){
plugin.getBlockManager().addBlock(player.getGameMode(), block);
}
}
// Alert
if(region){
if(type == AlertType.ILLEGAL){
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to place " : " placed ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + block.getType().name().replace("_", " ") + ChatColor.WHITE + " in a region.";
String playerMessage = ChatColor.RED + "You cannot place blocks in another region!";
plugin.getAlerts().alert(message, player, playerMessage, type, AlertTrigger.BLOCK_PLACE);
}
}else{
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to place " : " placed ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + block.getType().name().replace("_", " ");
String playerMessage = plugin.getMessage("blocked-action.place-block");
plugin.getAlerts().alert(message, player, playerMessage, type, AlertTrigger.BLOCK_PLACE);
}
}
// ################# Player Interact Block
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onInteract(PlayerInteractEvent event){
Player player = event.getPlayer();
Block block = event.getClickedBlock();
Action action = event.getAction();
AlertType type = AlertType.LEGAL;
String message = "no message";
String playerMessage = "no message";
AlertTrigger trigger = AlertTrigger.RIGHT_CLICK;
// Check for AntiShare tool
if(plugin.getPermissions().has(player, PermissionNodes.TOOL_USE) && player.getItemInHand() != null
&& (action == Action.RIGHT_CLICK_BLOCK || action == Action.LEFT_CLICK_BLOCK)){
if(player.getItemInHand().getType() == AntiShare.ANTISHARE_TOOL){
String blockname = block.getType().name().replaceAll("_", " ").toLowerCase();
String gamemode = (plugin.getBlockManager().getType(block) != null ? plugin.getBlockManager().getType(block).name() : "natural").toLowerCase();
ASUtils.sendToPlayer(player, "That " + ChatColor.YELLOW + blockname + ChatColor.WHITE + " is a " + ChatColor.YELLOW + gamemode + ChatColor.WHITE + " block.");
// Cancel and stop the check
event.setCancelled(true);
return;
}
}
// Right click list
if(action == Action.RIGHT_CLICK_AIR || action == Action.RIGHT_CLICK_BLOCK){
// Check if they should be blocked
if(config.get(block.getWorld()).isBlocked(block.getType(), ListType.RIGHT_CLICK)){
type = AlertType.ILLEGAL;
}
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_RIGHT_CLICK, block.getWorld())){
type = AlertType.LEGAL;
}
// Set messages
message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to right click " : " right clicked ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + block.getType().name().replace("_", " ");
playerMessage = plugin.getMessage("blocked-action.right-click");
}
// If this event is triggered as legal from the right click, check use lists
if(type == AlertType.LEGAL){
if(config.get(block.getWorld()).isBlocked(block.getType(), ListType.USE)){
type = AlertType.ILLEGAL;
}
// Check if they should be blocked
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_USE, block.getWorld())){
type = AlertType.LEGAL;
}
// Set messages
message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to right click " : " right clicked ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + block.getType().name().replace("_", " ");
playerMessage = plugin.getMessage("blocked-action.right-click");
}
// If the event is triggered as legal from the use lists, check the player's item in hand
if(type == AlertType.LEGAL && action == Action.RIGHT_CLICK_BLOCK && player.getItemInHand() != null){
// Check if they should be blocked
if(config.get(player.getWorld()).isBlocked(player.getItemInHand().getType(), ListType.USE)){
type = AlertType.ILLEGAL;
}
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_USE, player.getWorld())){
type = AlertType.LEGAL;
}
// Set messages
message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to use " : " used ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + player.getItemInHand().getType().name().replace("_", " ");
playerMessage = plugin.getMessage("blocked-action.use-item");
trigger = AlertTrigger.USE_ITEM;
}
// Handle event
if(type == AlertType.ILLEGAL){
event.setCancelled(true);
}
// Alert (with sanity check)
if(type != AlertType.LEGAL){
plugin.getAlerts().alert(message, player, playerMessage, type, trigger);
}
}
// ################# Player Interact Entity
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onInteractEntity(PlayerInteractEntityEvent event){
Player player = event.getPlayer();
AlertType type = AlertType.ILLEGAL;
// Convert entity -> item ID
Material item = Material.AIR;
if(event.getRightClicked() instanceof StorageMinecart){
item = Material.STORAGE_MINECART;
}else if(event.getRightClicked() instanceof PoweredMinecart){
item = Material.POWERED_MINECART;
}else if(event.getRightClicked() instanceof Boat){
item = Material.BOAT;
}else if(event.getRightClicked() instanceof Minecart){
item = Material.MINECART;
}else if(event.getRightClicked() instanceof Painting){
item = Material.PAINTING;
}
// If the entity is not found, ignore the event
if(item == Material.AIR){
return;
}
// Check if they should be blocked
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_RIGHT_CLICK, player.getWorld())){
type = AlertType.LEGAL;
}
if(!config.get(player.getWorld()).isBlocked(item, ListType.RIGHT_CLICK)){
type = AlertType.LEGAL;
}
// Handle event
if(type == AlertType.ILLEGAL){
event.setCancelled(true);
}
// Alert (with sanity check)
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to right click " : " right clicked ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + item.name();
String playerMessage = plugin.getMessage("blocked-action.right-click");
plugin.getAlerts().alert(message, player, playerMessage, type, AlertTrigger.RIGHT_CLICK);
}
// ################# Cart Death Check
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onCartDeath(VehicleDestroyEvent event){
Entity attacker = event.getAttacker();
Vehicle potentialCart = event.getVehicle();
// Sanity checks
if(attacker == null || !(potentialCart instanceof StorageMinecart)){
return;
}
if(!(attacker instanceof Player)){
return;
}
// Setup
Player player = (Player) attacker;
StorageMinecart cart = (StorageMinecart) potentialCart;
// Check internal inventories
if(player.getGameMode() == GameMode.CREATIVE && !plugin.getPermissions().has(player, PermissionNodes.BREAK_ANYTHING)){
// Check inventories
if(config.get(player.getWorld()).clearBlockInventoryOnBreak()){
cart.getInventory().clear();
}
}
}
// ################# Egg Check
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onEggThrow(PlayerEggThrowEvent event){
Player player = event.getPlayer();
AlertType type = AlertType.ILLEGAL;
Material item = Material.EGG;
// Check if they should be blocked
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_USE, player.getWorld())){
type = AlertType.LEGAL;
}
if(!config.get(player.getWorld()).isBlocked(item, ListType.USE)){
type = AlertType.LEGAL;
}
// Handle event
if(type == AlertType.ILLEGAL){
event.setHatching(false);
}
// Alert (with sanity check)
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to use " : " used ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + item.name();
String playerMessage = plugin.getMessage("blocked-action.use-item");
plugin.getAlerts().alert(message, player, playerMessage, type, AlertTrigger.USE_ITEM);
}
// ################# Experience Bottle Check
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onExpBottle(ExpBottleEvent event){
ThrownExpBottle bottle = event.getEntity();
LivingEntity shooter = bottle.getShooter();
AlertType type = AlertType.ILLEGAL;
Material item = Material.EXP_BOTTLE;
// Sanity Check
if(!(shooter instanceof Player)){
return;
}
// Setup
Player player = (Player) shooter;
// Check if they should be blocked
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_USE, player.getWorld())){
type = AlertType.LEGAL;
}
if(!config.get(player.getWorld()).isBlocked(item, ListType.USE)){
type = AlertType.LEGAL;
}
// Handle event
if(type == AlertType.ILLEGAL){
event.setExperience(0);
event.setShowEffect(false);
}
// Alert (with sanity check)
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to use " : " used ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + item.name();
String playerMessage = plugin.getMessage("blocked-action.use-item");
if(type == AlertType.ILLEGAL){ // We don't want to show legal events because of spam
plugin.getAlerts().alert(message, player, playerMessage, type, AlertTrigger.USE_ITEM);
}
}
// ################# Drop Item
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onDrop(PlayerDropItemEvent event){
Player player = event.getPlayer();
Item item = event.getItemDrop();
ItemStack itemStack = item.getItemStack();
AlertType type = AlertType.ILLEGAL;
boolean region = false;
// Check if they should be blocked
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_DROP, player.getWorld())){
type = AlertType.LEGAL;
}
if(!config.get(player.getWorld()).isBlocked(itemStack.getType(), ListType.DROP)){
type = AlertType.LEGAL;
}
// Region Check
if(plugin.getRegionManager().getRegion(player.getLocation()) != plugin.getRegionManager().getRegion(item.getLocation()) && type == AlertType.LEGAL){
if(!plugin.getPermissions().has(player, PermissionNodes.REGION_THROW)){
type = AlertType.ILLEGAL;
region = true;
}
}
// Handle event
if(type == AlertType.ILLEGAL){
event.setCancelled(true);
}
// Alert (with sanity check)
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to throw " : " threw ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + itemStack.getType().name().replace("_", " ");
String playerMessage = plugin.getMessage("blocked-action.drop-item");
if(region){
message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to throw " : " threw ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + itemStack.getType().name().replace("_", " ") + ChatColor.WHITE + " into a region.";
playerMessage = ChatColor.RED + "You cannot throw items into another region!";
}
plugin.getAlerts().alert(message, player, playerMessage, type, AlertTrigger.ITEM_DROP);
}
// ################# Pickup Item
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onPickup(PlayerPickupItemEvent event){
Player player = event.getPlayer();
Item item = event.getItem();
ItemStack itemStack = item.getItemStack();
AlertType type = AlertType.ILLEGAL;
boolean region = false;
// Check if they should be blocked
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_PICKUP, player.getWorld())){
type = AlertType.LEGAL;
}
if(!config.get(player.getWorld()).isBlocked(itemStack.getType(), ListType.PICKUP)){
type = AlertType.LEGAL;
}
// Region Check
if(plugin.getRegionManager().getRegion(player.getLocation()) != plugin.getRegionManager().getRegion(item.getLocation()) && type == AlertType.LEGAL){
if(!plugin.getPermissions().has(player, PermissionNodes.REGION_PICKUP)){
type = AlertType.ILLEGAL;
region = true;
}
}
// Handle event
if(type == AlertType.ILLEGAL){
event.setCancelled(true);
}
// Alert (with sanity check)
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to pickup " : " picked up ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + itemStack.getType().name().replace("_", " ");
String playerMessage = plugin.getMessage("blocked-action.pickup-item");
if(region){
message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to pickup " : " picked up ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + itemStack.getType().name().replace("_", " ") + ChatColor.WHITE + " from a region.";
playerMessage = ChatColor.RED + "You cannot pickup items from another region!";
}
plugin.getAlerts().alert(message, player, playerMessage, type, AlertTrigger.ITEM_PICKUP);
}
// ################# Player Death
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onDeath(PlayerDeathEvent event){
Player player = event.getEntity();
List<ItemStack> drops = event.getDrops();
AlertType type = AlertType.ILLEGAL;
int illegalItems = 0;
// Check if they should be blocked
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_DEATH, player.getWorld())){
type = AlertType.LEGAL;
}
// Handle event
if(type == AlertType.ILLEGAL){
List<ItemStack> remove = new ArrayList<ItemStack>();
for(ItemStack item : drops){
if(config.get(player.getWorld()).isBlocked(item.getType(), ListType.DEATH)){
illegalItems++;
remove.add(item);
}
}
// Remove items
for(ItemStack item : remove){
drops.remove(item);
}
}
// Determine new status
if(illegalItems == 0){
type = AlertType.LEGAL;
}
// Alert
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + " died with " + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + illegalItems + " illegal item(s).";
String playerMessage = plugin.getMessage("blocked-action.die-with-item");
plugin.getAlerts().alert(message, player, playerMessage, type, AlertTrigger.PLAYER_DEATH);
}
// ################# Player Command
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onCommand(PlayerCommandPreprocessEvent event){
Player player = event.getPlayer();
String command = event.getMessage().toLowerCase();
AlertType type = AlertType.ILLEGAL;
// Game Mode command
GameModeCommand.onPlayerCommand(event);
if(event.isCancelled()){
return;
}
// Check if they should be blocked
if(!plugin.isBlocked(player, PermissionNodes.ALLOW_PICKUP, player.getWorld())){
type = AlertType.LEGAL;
}
if(!config.get(player.getWorld()).isBlocked(command, ListType.COMMAND)){
type = AlertType.LEGAL;
}
// Handle event
if(type == AlertType.ILLEGAL){
event.setCancelled(true);
}
// Alert (with sanity check)
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to use the command " : " used the command ") + (type == AlertType.ILLEGAL ? ChatColor.RED : ChatColor.GREEN) + command;
String playerMessage = plugin.getMessage("blocked-action.command");
plugin.getAlerts().alert(message, player, playerMessage, type, AlertTrigger.COMMAND);
}
// ################# Player Move
@EventHandler (ignoreCancelled = true)
public void onMove(PlayerMoveEvent event){
Player player = event.getPlayer();
ASRegion currentRegion = plugin.getRegionManager().getRegion(event.getFrom());
ASRegion toRegion = plugin.getRegionManager().getRegion(event.getTo());
// Check world split
config.get(player.getWorld()).checkSplit(player);
// Check regions
if(currentRegion != toRegion){
if(currentRegion != null){
currentRegion.alertExit(player);
}
if(toRegion != null){
toRegion.alertEntry(player);
}
}
}
// ################# Player Game Mode Change
@EventHandler (priority = EventPriority.HIGHEST, ignoreCancelled = true)
public void onGameModeChange(PlayerGameModeChangeEvent event){
Player player = event.getPlayer();
GameMode from = player.getGameMode();
GameMode to = event.getNewGameMode();
boolean ignore = true;
boolean checkRegion = true;
// Check to see if we should even bother
if(!plugin.getConfig().getBoolean("handled-actions.gamemode-inventories")){
return;
}
// Tag check
if(player.hasMetadata("antishare-regionleave")){
player.removeMetadata("antishare-regionleave", plugin);
checkRegion = false;
}
// Region Check
if(!plugin.getPermissions().has(player, PermissionNodes.REGION_ROAM) && checkRegion){
ASRegion region = plugin.getRegionManager().getRegion(player.getLocation());
if(region != null){
ASUtils.sendToPlayer(player, ChatColor.RED + "You are in a region and therefore cannot change Game Mode");
event.setCancelled(true);
return;
}
}
// Check temp
if(plugin.getInventoryManager().isInTemporary(player)){
plugin.getInventoryManager().removeFromTemporary(player);
}
if(!plugin.getPermissions().has(player, PermissionNodes.NO_SWAP)){
// Save from
switch (from){
case CREATIVE:
plugin.getInventoryManager().saveCreativeInventory(player, player.getWorld());
break;
case SURVIVAL:
plugin.getInventoryManager().saveSurvivalInventory(player, player.getWorld());
break;
}
// Set to
switch (to){
case CREATIVE:
plugin.getInventoryManager().getCreativeInventory(player, player.getWorld()).setTo(player);
break;
case SURVIVAL:
plugin.getInventoryManager().getSurvivalInventory(player, player.getWorld()).setTo(player);
break;
}
// For alerts
ignore = false;
}
// Alerts
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + " changed to Game Mode " + ChatColor.YELLOW + to.name();
String playerMessage = ignore ? "no message" : "Your inventory has been changed to " + ChatColor.YELLOW + to.name();
plugin.getAlerts().alert(message, player, playerMessage, AlertType.GENERAL, AlertTrigger.GENERAL);
}
// ################# Player Combat
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onCombat(EntityDamageByEntityEvent event){
DamageCause cause = event.getCause();
Entity attacker = event.getDamager();
Entity target = event.getEntity();
AlertType type = AlertType.ILLEGAL;
boolean playerCombat = false;
Player playerAttacker = null;
// Check case
switch (cause){
case ENTITY_ATTACK:
// attacker = entity
if(attacker instanceof Player){
playerAttacker = (Player) attacker;
}else{
return;
}
break;
case PROJECTILE:
// attacker = Projectile
Projectile projectile = (Projectile) attacker;
LivingEntity shooter = projectile.getShooter();
if(shooter instanceof Player){
playerAttacker = (Player) shooter;
}else{
return;
}
break;
default:
return;
}
// Determine if we are hitting a mob or not, and whether it is legal
if(target instanceof Player){
// target = Player
playerCombat = true;
if(!plugin.isBlocked(playerAttacker, PermissionNodes.ALLOW_COMBAT_PLAYERS, playerAttacker.getWorld())){
type = AlertType.LEGAL;
}
}else{
// target = other entity
if(!plugin.isBlocked(playerAttacker, PermissionNodes.ALLOW_COMBAT_MOBS, playerAttacker.getWorld())){
type = AlertType.LEGAL;
}
}
// Check if we need to continue based on settings
if(playerCombat){
if(!plugin.getConfig().getBoolean("blocked-actions.combat-against-players")){
return;
}
}else{
if(!plugin.getConfig().getBoolean("blocked-actions.combat-against-mobs")){
return;
}
}
// Handle event
if(type == AlertType.ILLEGAL){
event.setCancelled(true);
}
// Alert
String message = "no message";
String playerMessage = "no message";
AlertTrigger trigger = AlertTrigger.HIT_MOB;
if(playerCombat){
String playerName = ((Player) target).getName();
message = ChatColor.YELLOW + playerAttacker.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to hit " + ChatColor.RED : " hit " + ChatColor.GREEN) + playerName;
playerMessage = plugin.getMessage("blocked-action.hit-player");
trigger = AlertTrigger.HIT_PLAYER;
}else{
String targetName = target.getClass().getName().replace("Craft", "").replace("org.bukkit.craftbukkit.entity.", "").trim();
message = ChatColor.YELLOW + playerAttacker.getName() + ChatColor.WHITE + (type == AlertType.ILLEGAL ? " tried to hit a " + ChatColor.RED : " hit a " + ChatColor.GREEN) + targetName;
playerMessage = plugin.getMessage("blocked-action.hit-mob");
}
plugin.getAlerts().alert(message, playerAttacker, playerMessage, type, trigger);
}
// ################# Entity Target
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onEntityTarget(EntityTargetEvent event){
Entity target = event.getTarget();
Player playerTarget = null;
AlertType type = AlertType.ILLEGAL;
// Check target
if(target instanceof Player){
playerTarget = (Player) target;
}else{
return;
}
// Check permissions
if(!plugin.isBlocked(playerTarget, PermissionNodes.ALLOW_COMBAT_MOBS, playerTarget.getWorld())){
type = AlertType.LEGAL;
}
// Handle event
if(type == AlertType.ILLEGAL){
event.setCancelled(true);
}
}
// ################# Piston Move (Extend)
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onPistonExtend(BlockPistonExtendEvent event){
for(Block block : event.getBlocks()){
// Check for block type
GameMode type = plugin.getBlockManager().getType(block);
// Sanity
if(type == null){
continue;
}
// Setup
Location oldLocation = block.getLocation();
Location newLocation = block.getRelative(event.getDirection()).getLocation();
// Move
plugin.getBlockManager().moveBlock(oldLocation, newLocation);
}
}
// ################# Piston Move (Retract)
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onPistonRetract(BlockPistonRetractEvent event){
if(!event.isSticky()){ // Only handle moving blocks
return;
}
Block block = event.getBlock().getRelative(event.getDirection()).getRelative(event.getDirection());
// Check for block type
GameMode type = plugin.getBlockManager().getType(block);
// Sanity
if(type == null){
return;
}
// Setup
Location oldLocation = block.getLocation();
Location newLocation = block.getRelative(event.getDirection().getOppositeFace()).getLocation();
// Move
plugin.getBlockManager().moveBlock(oldLocation, newLocation);
}
// ################# Player Join
@EventHandler (ignoreCancelled = true)
public void onJoin(PlayerJoinEvent event){
Player player = event.getPlayer();
// Tell the inventory manager to prepare this player
plugin.getInventoryManager().loadPlayer(player);
// Check region
ASRegion region = plugin.getRegionManager().getRegion(player.getLocation());
if(region != null){
region.alertSilentEntry(player); // Sets inventory and Game Mode
// This must be done because when the inventory manager releases
// a player it resets the inventory to "non-temp"
}
}
// ################# Player Quit
@EventHandler (ignoreCancelled = true)
public void onQuit(PlayerQuitEvent event){
Player player = event.getPlayer();
// Tell the inventory manager to release this player
plugin.getInventoryManager().releasePlayer(player);
}
// ################# Player Kicked
@EventHandler (ignoreCancelled = true)
public void onKick(PlayerKickEvent event){
Player player = event.getPlayer();
// Tell the inventory manager to release this player
plugin.getInventoryManager().releasePlayer(player);
}
// ################# Player World Change
@EventHandler (priority = EventPriority.LOWEST, ignoreCancelled = true)
public void onWorldChange(PlayerChangedWorldEvent event){
Player player = event.getPlayer();
World to = player.getWorld();
World from = event.getFrom();
boolean ignore = true;
// Check to see if we should even bother checking
if(!plugin.getConfig().getBoolean("handled-actions.world-transfers")){
return;
}
// Check temp
if(plugin.getInventoryManager().isInTemporary(player)){
plugin.getInventoryManager().removeFromTemporary(player);
}
// Inventory check
if(!plugin.getPermissions().has(player, PermissionNodes.NO_SWAP)){
// Save from
switch (player.getGameMode()){
case CREATIVE:
plugin.getInventoryManager().saveCreativeInventory(player, from);
break;
case SURVIVAL:
plugin.getInventoryManager().saveSurvivalInventory(player, from);
break;
}
// Set to
switch (player.getGameMode()){
case CREATIVE:
plugin.getInventoryManager().getCreativeInventory(player, to).setTo(player);
break;
case SURVIVAL:
plugin.getInventoryManager().getSurvivalInventory(player, to).setTo(player);
break;
}
// For alerts
ignore = false;
}
// Alerts
String message = ChatColor.YELLOW + player.getName() + ChatColor.WHITE + " changed to world " + ChatColor.YELLOW + to.getName();
String playerMessage = ignore ? "no message" : "Your inventory has been changed to " + ChatColor.YELLOW + to.getName();
plugin.getAlerts().alert(message, player, playerMessage, AlertType.GENERAL, AlertTrigger.GENERAL);
}
}
| [
"[email protected]"
] | |
ec90176b3fae803e113e47777ed965b7838d7be4 | 27f31c3ef8fbd6ff4463cafc92768d6ee2b2900d | /Infothek_tmj/src/li/tmj/db/sql/DBConnect.java | bf544bb1657ac1a5f5e25a5b5e2c2c3af4f5939f | [] | no_license | tmjGit/Infothek | a1002b121ce8eefe2128732e238e59aed2157224 | 20c1df10f2421a2ccc8da599deb2a943a971449d | refs/heads/master | 2020-04-07T10:57:26.104334 | 2018-11-20T00:36:07 | 2018-11-20T00:36:07 | 158,306,908 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,930 | java | //package li.tmj.db.sql;
//
//import java.sql.Connection;
//import java.sql.DriverManager;
//import java.sql.SQLException;
//import li.tmj.app.Application;
//import li.tmj.db.exception.DBConnectException;
//import org.pmw.tinylog.Logger;
//
////public final class DBConnect {//Singleton
//public final class DBConnect {
// private static DBConnect instance = null;
// private Connection con;// TODO con.close
// private static String dbname=Application.confMainGet("dbname");
//
// private DBConnect() {
// try {
// Class.forName( "com.mysql.jdbc.Driver" ).newInstance();///!!!!Tomcat
// con = DriverManager.getConnection( Application.confMainGet("url")+Application.confMainGet("db"),
// Application.confMainGet("usr"),
// Application.confMainGet("pwd")
// );
// } catch (SQLException | InstantiationException | IllegalAccessException | ClassNotFoundException e) {
// e.printStackTrace();
// }
// }
//
// public static DBConnect getInstance(){
// if(instance == null){
// instance = new DBConnect();
// }
// return instance;
// }
//
// public Connection getConnection(){
// return con;
// }
//
// public static String getDbname(){
// return dbname;
// }
//}
//
//// private static Connection connection;
////
//// private DBConnect() throws DBConnectException {
//// Logger.trace("connect...");
//// // Falls die Connection außerhalb geschlossen wird, kann sie aufgrund des Singleton nicht mehr geöffnet werden.
//// connect( createUrl(),Application.confMainGet("dbname"),Application.confMainGet("user"),Application.confMainGet("password") );
//// }
////
//// public static String createUrl() {
//// Logger.trace("createUrl...");
//// return Application.confMainGet("driver") + ":" + Application.confMainGet("protocol") + "://" + Application.confMainGet("host")
//// + (Application.confMainGet("port").equals("") ? "" : ":" + Application.confMainGet("port")) +"/";
//// }
////
//// private static void connect(String url, String db, String user, String password) throws DBConnectException {
//// Logger.trace("url={}, db={}, user={}, password={}",url,db,user,password);
//// try {
////// con = DriverManager.getConnection( url +"", user, password );
//// con = DriverManager.getConnection( url + db, user, password );
////// Logger.debug("con={}",con);
//// } catch (SQLException e) {
//// // TODO error log
//// throw new DBConnectException(e.getMessage()); // e.printStackTrace();
//// }
//// }
////
//// public static DBConnect getInstance() throws DBConnectException{
//// Logger.trace("getInstance: instance={}",instance);
//// if(instance == null){
//// instance = new DBConnect();
//// }
//// return instance;
//// }
////
//// public static Connection getConnection(){
//// Logger.trace("getConnection: connection={}", connection);
//// if(null==connection) {
//// connect(url, db, user, password);
//// }
//// return connection;
//// }
////}
| [
"[email protected]"
] | |
2000868d6f45ab4051ea11a43d3d786131d18ba1 | 35b49d6ff547ef5062c83471da9f5183d86fde1b | /src/main/java/com/company/AlgorithmFactory.java | 5725bac068deb2074359f5bfea3c55f6f8519856 | [] | no_license | FernandoES/Master-thesis | 26bf6a13dab2d0c362c9c15abd8710c6ed1a900c | b64a762fadc053526fbf191126771e232223a1e9 | refs/heads/master | 2020-03-30T10:13:32.165006 | 2018-12-01T23:20:41 | 2018-12-01T23:20:41 | 151,082,526 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,644 | java | package com.company;
import java.lang.reflect.*;
import java.util.*;
import com.company.algorithms.*;
public class AlgorithmFactory {
public Algorithm getAlgorithm(String algorithmName, int numberOfGroups){
Algorithm algorithm = selectAlgorithm(algorithmName);
algorithm.NUMBER_OF_GROUPS = numberOfGroups;
return algorithm;
}
public static String[] availableAlgorithms = {"KMeansInternal","KMeansExternal","KMeansWeka","RandomCentersClustering",
"RandomMembersClustering","RandomMembersClustering","ExpectationMaximization","CobwebAlgorithm","Hierarchical"};
private static Algorithm selectAlgorithm(String algorithmName) {
Map<String, String> availableArrays = new HashMap<String, String>();
for (int i = 0; i <availableAlgorithms.length ; i++) {
availableArrays.put(availableAlgorithms[i].toLowerCase() , availableAlgorithms[i]);
}
return getAlgorithmByName(availableArrays.get(algorithmName.toLowerCase()));
}
private static Algorithm getAlgorithmByName(String objectName){
try {
String constructorWithPackage = "com.company.algorithms." + objectName;
Class algorithmName = Class.forName(constructorWithPackage);
Constructor constructor = algorithmName.getConstructor();
Algorithm algorithm = (Algorithm) constructor.newInstance();
return algorithm;
}
catch(Exception e){
System.out.println("Creation of class went wrong");
e.printStackTrace();
System.exit(1);
return null;
}
}
}
| [
"[email protected]"
] | |
7a7c1d8b793c04a33854a4f939e6c7d80ee0eb97 | ce07325c9ad45b771849ebb6d82ad1b0c1bf677d | /src/libro/cap02/excepciones/Aplicacion.java | eead9efc24fd529de953e38909e79ca11067845f | [] | no_license | abrahan0108/JavaAFondo | 88c45d1fe19b7e9315c26e9c531e476f8cb9f74f | 886770013843196766a6790dd693f600090909ec | refs/heads/master | 2020-06-22T19:14:24.119764 | 2019-07-19T14:26:20 | 2019-07-19T14:26:20 | 197,785,473 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,161 | java | package libro.cap02.excepciones;
import java.util.ResourceBundle;
public class Aplicacion {
public Usuario login(String usrname, String password) throws ErrorFisicoException {
try {
// Se lee el archivo de propiedades que debe estar ubicado en el
// package root
ResourceBundle rb = ResourceBundle.getBundle("usuario");
// leemos el valor de la propiedad usrname
String usr = rb.getString("usrname");
// leemos el valor de la propiedad password
String pwd = rb.getString("password");
// Se define una variable de retorno
Usuario u = null;
//si coinciden los datos proporcionados con los leidos
if(usr.equals(usrname) && pwd.equals(password)) {
//intancio y seteo todos los datos
u = new Usuario();
u.setUsuario(usr);
u.setPassword(pwd);
u.setNombre(rb.getString("nombre"));
u.setEmail(rb.getString("email"));
}
// retorno la instancia o null si no entró al if
return u;
}catch (Exception e) {
// Cualquier error "salgo por excepcion"
throw new RuntimeException("Error verificando datos", e);
}
}
}
| [
"[email protected]"
] | |
e5f4c56be80cb83ba81c8f42dd50fc6524ec4678 | 599fd53841c8c3e25c2801108ff356f8cc2a2cab | /M101J/src/main/java/com/home/mongodb/m101j/crud/FindTest.java | 583206e694b67d347f14139b4944179b7bff002c | [] | no_license | DineshPatri/MongoDB | d485274a9746ad0ca3878007626afc849b9b83eb | cb94dcf6faafb825261256057022221dfed9223d | refs/heads/master | 2020-04-08T07:08:07.115403 | 2018-12-09T18:09:14 | 2018-12-09T18:09:14 | 159,128,207 | 0 | 0 | null | 2018-12-09T18:09:15 | 2018-11-26T07:28:49 | null | UTF-8 | Java | false | false | 2,234 | java | /*
* Copyright 2015 MongoDB, 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 com.home.mongodb.m101j.crud;
import com.mongodb.MongoClient;
import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoCursor;
import com.mongodb.client.MongoDatabase;
import org.bson.Document;
import javax.print.Doc;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import static com.home.mongodb.m101j.util.Helpers.printJson;
public class FindTest {
public static void main(String[] args) {
MongoClient client = new MongoClient();
MongoDatabase database = client.getDatabase("course");
MongoCollection<Document> collection = database.getCollection("findTest");
collection.drop();
// insert 10 documents
for (int i = 0; i < 10; i++) {
collection.insertOne(new Document("x", i));
}
System.out.println("Find one:");
Document first = collection.find().first();
printJson(first);
System.out.println("Find all with into: ");
List<Document> all = collection.find().into(new ArrayList<Document>());
for (Document cur : all) {
printJson(cur);
}
System.out.println("Find all with iteration: ");
try(MongoCursor<Document> cursor = collection.find().iterator();){//need to close the cursor, to avoid memory leaks when exceptions occur
while (cursor.hasNext()) {
Document cur = cursor.next();
printJson(cur);
}
}
System.out.println("Count:");
long count = collection.countDocuments();//count() is deprecated;
System.out.println(count);
}
}
| [
"[email protected]"
] | |
24c17799879d6d2dede6b02eeb410e58348c4069 | eb349e08462a1363237054d3bf522ac9c68a8238 | /src/FizzBuzz.java | 914e21f8e3eb262c917474d59b50c5aa4562da34 | [] | no_license | Miss-qi/week_2nd | 67a38ba28cf948ba1121fc07a7af9c8c26d4216f | 9e5d86ecf878f41a93f565358c0c1e63335851aa | refs/heads/master | 2021-01-01T05:54:23.731992 | 2017-07-15T07:48:09 | 2017-07-15T07:48:09 | 97,300,591 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 518 | java | public class FizzBuzz {
public static void main(String[] args) {
fizzBuzz();
}
public static void fizzBuzz() {
for (int i = 1; i <= 15; i++) {
if (i % 3 == 0 && i % 5 == 0) {
System.out.println("FizzBuzz");
} else if (i % 3 == 0) {
System.out.println("Fizz");
} else if (i % 5 == 0) {
System.out.println("Buzz");
} else {
System.out.println(i);
}
}
}
}
| [
"[email protected]"
] | |
cb52ff6cbfb7209deddf266004ac125af3bd5f23 | fc435f02a7fe09497f722ca0fce77d16dcbd0dc6 | /src/by/it/kudelich/lesson05/TaskB2.java | aac59fa7d8851dca96d02281d5bfcee696a7cf98 | [] | no_license | DaryaLoban/cs2018-01-08 | 28b1f5c9301c3b1d0f6ad50393d9334f8b6215a6 | 4d3e626861d9ed3f00c8e48afd4272e379a3344c | refs/heads/master | 2021-05-13T20:49:34.129814 | 2018-01-21T23:05:11 | 2018-01-21T23:05:11 | 116,920,507 | 0 | 0 | null | 2018-01-10T06:58:55 | 2018-01-10T06:58:55 | null | UTF-8 | Java | false | false | 1,501 | java | package by.it.kudelich.lesson05;
/*
Один большой массив и два маленьких
1. Создать массив m на 20 целых чисел.
2. Ввести в него значения с клавиатуры.
3. Создать два массива a и b на 10 целых чисел каждый.
4. Скопировать большой массив в два маленьких: половину чисел в первый маленький,
вторую половину во второй маленький.
5. Вывести массивы a и b на экран командами:
System.out.println("a="+Arrays.toString(a));
System.out.println("b="+Arrays.toString(b));
Например, для такого ввода
1 2 3 4 5 6 7 8 9 10 11 22 33 44 55 66 77 88 99 0
ожидается такой вывод:
a=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
b=[11, 22, 33, 44, 55, 66, 77, 88, 99, 0]
*/
import java.util.Arrays;
import java.util.Scanner;
public class TaskB2 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] m = new int[20];
for (int i = 0; i < m.length; i++) {
m[i] = sc.nextInt();
}
int[] a = new int[10];
int[] b = new int[10];
System.arraycopy(m, 0, a, 0, 10);
System.arraycopy(m, 10, b, 0, 10);
System.out.println("a="+Arrays.toString(a));
System.out.println("b="+ Arrays.toString(b));
}
}
| [
"[email protected]"
] | |
8d2a9dbc6623db17ac01a89a5c7294ba79560a78 | 162fe280496f033542297df6a2b41292644262ee | /fresh-fruits-goods-service/src/main/java/com/fresh/fruits/service/impl/ItemServiceImpl.java | 394c034789ffecf7487b0ec1d67ce8d1f43b3e75 | [] | no_license | AJ990716/fresh-fruits | fc6e807f6d95d7785b0bf11ead899738c05925a7 | d4716a35c5975c5aaf3adae452409aabb7d0e7ad | refs/heads/master | 2023-06-17T09:35:29.879796 | 2021-07-22T04:15:17 | 2021-07-22T04:15:17 | 388,309,612 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 545 | java | package com.fresh.fruits.service.impl;
import org.springframework.stereotype.Service;
import java.util.Map;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.fresh.fruits.dao.ItemDao;
import com.fresh.fruits.pojo.ItemEntity;
import com.fresh.fruits.service.ItemService;
@Service("itemService")
public class ItemServiceImpl extends ServiceImpl<ItemDao, ItemEntity> implements ItemService {
} | [
"[email protected]"
] | |
33df97ed6a4893e516208f0f1e24405787b9834d | ea2917b369d3bf693b0e475e8aecc22a2acf959a | /src/java/controle/UsuarioWS.java | 8684b46d6343d8ca88e6bc8af2b412fa774ddb8c | [] | no_license | renataeb/TCC | 16730b391363966880243791e2c883a6c750f167 | 5cc1d92b9b987e2b9a439c9cdc337d8b822e5e73 | refs/heads/master | 2020-08-10T21:11:53.767688 | 2019-10-11T11:48:37 | 2019-10-11T11:48:37 | 214,421,598 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,331 | 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 controle;
import dao.AdminDAO;
import dao.UsuarioDAO;
import java.io.IOException;
import java.io.PrintWriter;
import java.security.NoSuchAlgorithmException;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.servlet.RequestDispatcher;
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 modelo.Usuario;
import util.Criptografia;
/**
*
* @author Aluno
*/
@WebServlet(name = "UsuarioWS", urlPatterns = {"/controle/UsuarioWS"})
public class UsuarioWS extends HttpServlet {
private UsuarioDAO dao;
private Usuario obj;
private String pagina;
private String acao;
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
acao = request.getParameter("acao");
List<Usuario> lista = null;
String id;
switch(String.valueOf(acao)){
case "del":
id = request.getParameter("id");
dao = new UsuarioDAO();
pagina = "index.jsp";
obj = dao.buscarPorChavePrimaria(Long.parseLong(id));
Usuario usu_sessao = (Usuario)request.getSession().getAttribute("usuario");
if(usu_sessao.getId()==Long.parseLong(id)){
lista = dao.listar();
request.setAttribute("lista", lista);
request.setAttribute("msg", "Você não pode excluir o Usuario que esta logado.");
}else{
Boolean deucerto = dao.excluir(obj);
if(deucerto){
lista = dao.listar();
request.setAttribute("lista", lista);
request.setAttribute("msg", "Excluído com sucesso");
}
else{
request.setAttribute("msg", "Erro ao excluir");
}
}
break;
case "edit":
id = request.getParameter("id");
dao = new UsuarioDAO();
Usuario obj = dao.buscarPorChavePrimaria(Long.parseLong(id));
request.setAttribute("obj", obj);
pagina = "edita.jsp";
break;
case "sair":
request.getSession().setAttribute("usuario",new Usuario());
request.setAttribute("msg", "Você se deslogou com sucesso!");
pagina = "../login/login.jsp";
break;
default:
dao = new UsuarioDAO();
if (request.getParameter("filtro") != null) {
try {
lista = dao.listar(request.getParameter("filtro"));
} catch (Exception ex) {
Logger.getLogger(AdminWS.class.getName()).log(Level.SEVERE, null, ex);
}
} else {
lista = dao.listar();
}
//pra onde deve ser redirecionada a página
pagina = "index.jsp";
//passar a listagem para a página
request.setAttribute("lista", lista);
break;
}
RequestDispatcher destino = request.getRequestDispatcher(pagina);
destino.forward(request, response);
}
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String msg;
request.setCharacterEncoding("UTF-8");
//verificar campos obrigatórios
if(request.getParameter("txtNome") == null){
msg = "Campos obrigatórios não informados";
}
else{
dao = new UsuarioDAO();
obj = new Usuario();
//preencho o objeto com o que vem do post
Boolean deucerto;
if(request.getParameter("txtId")!= null){
obj = dao.buscarPorChavePrimaria(Long.parseLong(request.getParameter("txtId")));
obj.setNome(request.getParameter("txtNome"));
obj.setEmail(request.getParameter("txtEmail"));
try {
obj.setSenha(Criptografia.convertPasswordToMD5(request.getParameter("txtSenha")));
} catch (NoSuchAlgorithmException ex) {
Logger.getLogger(UsuarioWS.class.getName()).log(Level.SEVERE, null, ex);
}
deucerto = dao.alterar(obj);
pagina="edita.jsp";
}
else{
obj.setNome(request.getParameter("txtNome"));
obj.setEmail(request.getParameter("txtEmail"));
try {
String criptografia = Criptografia.convertPasswordToMD5(request.getParameter("txtSenha"));
obj.setSenha(criptografia);
} catch (NoSuchAlgorithmException ex) {
Logger.getLogger(UsuarioWS.class.getName()).log(Level.SEVERE, null, ex);
}
deucerto = dao.incluir(obj);
pagina="../usuario/add.jsp";
}
if(deucerto){
msg = "Operação realizada com sucesso";
}
else{
msg = "Erro ao realizar a operação";
}
}
dao.fecharConexao();
request.setAttribute("msg", msg);
RequestDispatcher destino = request.getRequestDispatcher(pagina);
destino.forward(request, response);
}
}
| [
"Aluno@NTI-HP"
] | Aluno@NTI-HP |
b45a4cd67a41419a91d30b62132583c4d94860a1 | 9c90b9d63b8e9d3dc1d7c3bd9be9b555d75211aa | /src/main/java/se/inera/fmu/domain/model/eavrop/note/Note.java | 37c7d3fbcac40faed796d74305271517f6ca432c | [] | no_license | qwazer/fmu | bc2228893a348f1d12e32be9a9ea93ccb14b8809 | 1bdd65b289484303532c9b126899253f61a82bde | refs/heads/master | 2020-12-26T04:37:49.051002 | 2014-10-03T07:56:27 | 2014-10-03T07:56:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,080 | java | package se.inera.fmu.domain.model.eavrop.note;
import java.io.Serializable;
import java.util.UUID;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import lombok.ToString;
import se.inera.fmu.domain.shared.AbstractBaseEntity;
import se.inera.fmu.domain.shared.ValueObject;
@Entity
@Table(name = "T_NOTE")
@ToString
public class Note extends AbstractBaseEntity implements ValueObject<Note>,
Serializable {
// ~ Instance fields ================================================================================================
// database primary key
@Id
@Column(name = "ID", updatable = false, nullable = false)
private String id;
@Column(name = "TEXT")
private String text;
// TODO: Maybe add party if not reachable from audit created by and also if
// notes from bestallare should be represented with this entity
// ~ Constructors ===================================================================================================
Note() {
// Needed by Hibernate
}
public Note(String text) {
this.id = UUID.randomUUID().toString();
setText(text);
}
// ~ Property Methods ===============================================================================================
private void setText(String text) {
this.text = text;
}
public String getText() {
return this.text;
}
// ~ Other Methods ==================================================================================================
/**
* @param object to compare
* @return True if they have the same value
* @see #sameValueAs(Note)
*/
@Override
public boolean equals(final Object object) {
if (this == object)
return true;
if (object == null || getClass() != object.getClass())
return false;
final Note other = (Note) object;
return sameValueAs(other);
}
/**
* @return Hash code of id.
*/
@Override
public int hashCode() {
return this.id.hashCode();
}
@Override
public boolean sameValueAs(Note other) {
return other != null && this.id.equals(other.id);
}
}
| [
"[email protected]"
] | |
e7a8fb4778c23889e63ba7412782da045fce8c32 | e6fff39054fc394395d38c5bcd4c3275b3bbdef5 | /VisionPlusX/src/com/sv/visionplus/transaction/grn/GrnForm.java | 85217eda7263156e9c3969e8670e610fbd65df06 | [] | no_license | supervisiontec/Specs-Shop---Vision-Plus | 0ea7111046d49b9631a9e574137822f429e95de4 | 5a76f10dba14d0befeb6a06f67c6a984b552684a | refs/heads/master | 2023-03-06T09:40:48.508328 | 2021-02-17T19:50:54 | 2021-02-17T19:50:54 | 107,935,028 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 754 | java | package com.sv.visionplus.transaction.grn;
import com.sv.visionplus.base.AbstractObjectCreator;
import com.sv.visionplus.base.transaction.AbstractTransactionForm;
import com.sv.visionplus.base.transaction.AbstractTransactionFormService;
import com.sv.visionplus.transaction.grn.model.GrnMix;
public class GrnForm
extends AbstractTransactionForm<GrnMix>
{
private PCGrn grn;
public GrnForm() {}
protected AbstractTransactionFormService<GrnMix> getTransactionFormService()
{
return new GrnService();
}
protected AbstractObjectCreator<GrnMix> getObjectCreator()
{
grn = new PCGrn(this);
return grn;
}
public void doSave()
{
super.doSave();
if (grn != null) {
grn.resetFields();
}
}
}
| [
"[email protected]"
] | |
8993921a20bd56270ae09507ce6cec77e2129953 | 3a01702ca03c11917da22bff39d7d9acbe0aa302 | /src/main/java/com/ceeses/dao/mapper/LnskfsxMapper.java | 3f9806542e63e727e79ad136ce6bcb7b209d6a6f | [] | no_license | collegeApply/ceeses | b36bbd2c74b22aa13abfeca1bc85663240b0afbc | c43a02f3506c6354a6fedb4a72a5be2af7fe53d9 | refs/heads/master | 2021-01-23T16:19:28.271686 | 2017-06-29T16:56:24 | 2017-06-29T16:56:24 | 93,291,605 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 224 | java | package com.ceeses.dao.mapper;
import com.ceeses.model.Lnskfsx;
import java.util.List;
/**
* Created by zhaoshan on 2017/6/4.
*/
public interface LnskfsxMapper {
public List<Lnskfsx> queryLnskfsx(Integer year);
}
| [
"[email protected]"
] | |
afe7889ffd523aaa1037fae49ff3f0ce09d56295 | 45d401809e5272a4605ab77fc5af28c279e01b95 | /src/main/java/com/msdn/generator/service/FreemarkerService.java | 46b2d99856d80b60bba06ef8d5e4698c77a5b1b9 | [] | no_license | fmy1993/mybatisgenerator | 721ae0c661eb99e5e044cc0788869dc3e8103785 | b22404deaae7fdd38ba9f0ae08ba5c3f62b04730 | refs/heads/master | 2023-04-19T14:15:40.021681 | 2021-05-15T02:28:29 | 2021-05-15T02:28:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,511 | java | package com.msdn.generator.service;
import com.msdn.generator.entity.Config;
import com.msdn.generator.entity.GenerateParameter;
import com.msdn.generator.utils.StringUtils;
import freemarker.cache.CacheStorage;
import freemarker.cache.TemplateLoader;
import freemarker.template.Configuration;
import freemarker.template.Template;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStreamWriter;
import java.nio.charset.StandardCharsets;
import java.util.Map;
/**
* 使用FreeMarker 根据设定好的文件模板来生成相关文件
*/
@Service
public class FreemarkerService {
private static final Logger logger = LoggerFactory.getLogger(FreemarkerService.class);
@Autowired
private Configuration configuration;
/**
* 输出文件模板
*
* @param templateName resources 文件夹下的模板名,比如说model.ftl,是生成实体类的模块
* @param dataModel 表名,字段名等内容集合
* @param filePath 输出文件名,包括路径
* @param generateParameter
* @throws Exception
*/
public void write(String templateName, Map<String, Object> dataModel, String filePath, GenerateParameter generateParameter) throws Exception {
// FTL(freemarker templete language)模板的文件名称
Template template = configuration.getTemplate(dataModel.get("type") + File.separator + templateName + ".ftl");
File file;
// 判断是不是多表,如果是,则按照表名生成各自的文件夹目录
if (generateParameter.isFlat()) {
file = new File(Config.OutputPath + File.separator + dataModel.get("tempId") + File.separator + filePath);
} else {
file = new File(Config.OutputPath + File.separator + dataModel.get("tempId") + File.separator + dataModel.get("tableName") + File.separator + filePath);
}
if (!file.exists()) {
file.getParentFile().mkdirs();
file.createNewFile();
}
FileOutputStream fileOutputStream = new FileOutputStream(file);
OutputStreamWriter outputStreamWriter = new OutputStreamWriter(fileOutputStream, StandardCharsets.UTF_8);
template.process(dataModel, outputStreamWriter);
fileOutputStream.flush();
fileOutputStream.close();
}
}
| [
"[email protected]"
] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.