blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 410 | content_id stringlengths 40 40 | detected_licenses listlengths 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 listlengths 1 1 | author_id stringlengths 0 313 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
03d85f401f47923aa84cf9b6560cdd642ea545b0 | 1135e7750cdf0b5fc3fed2e0adce3c14cad01bd7 | /Map/src/AVLMap.java | f6701f74f3ff997ccfc881ecbaac30607d694b3f | [] | no_license | canye365/DataStructures | 54a0220a2896aad2a5f267a0f674a04f00f02a36 | e9a96b3d1aa7ce1a6e2b5134205458ab84e0b17b | refs/heads/master | 2022-11-15T00:20:38.121670 | 2020-07-15T05:44:25 | 2020-07-15T05:44:25 | 267,288,192 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 846 | java | /**
* @author CanYe
* @createdate 2019/7/16 2:30
*/
public class AVLMap<K extends Comparable<K>, V> implements Map<K, V> {
private AVLTree<K, V> avlTree;
public AVLMap(){
avlTree = new AVLTree<>();
}
@Override
public void add(K key, V value) {
avlTree.add(key, value);
}
@Override
public V remove(K key) {
return avlTree.remove(key);
}
@Override
public boolean contains(K key) {
return avlTree.contains(key);
}
@Override
public V get(K key) {
return avlTree.get(key);
}
@Override
public void set(K key, V newValue) {
avlTree.set(key, newValue);
}
@Override
public int getSize() {
return avlTree.getSize();
}
@Override
public boolean isEmpty() {
return avlTree.isEmpty();
}
}
| [
"canye365@qq.com"
] | canye365@qq.com |
680c5bd3ac7dce1a78ef0cd583516cb9e138294a | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/15/15_e3ddd10800c93e3e2d360f4a51ec97806d8bc1e3/Alphabet/15_e3ddd10800c93e3e2d360f4a51ec97806d8bc1e3_Alphabet_s.java | 248d58f02c1e981e5cf6ac7ff2a2ef6508a2f9a4 | [] | 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 | 951 | java | package jpower.core;
public class Alphabet {
private static final char[] ALPHABET = {
'a',
'b',
'c',
'd',
'e',
'f',
'g',
'h',
'i',
'j',
'k',
'l',
'm',
'n',
'o',
'p',
'q',
'r',
's',
't',
'u',
'v',
'w',
'x',
'y',
'z'
};
public static char[] get() {
return ALPHABET;
}
public static char[] uppercase() {
char[] uppercase = new char[ALPHABET.length];
for (int i = 0; i < ALPHABET.length; i++) {
uppercase[i] = ALPHABET[i];
}
return uppercase;
}
public static char[] lowercase() {
return get();
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
2fbc58588952008bbe68fb756d385df01bcdd658 | e61f9dd683cbbd7cfc1aeeaf2ecc23b3248d5781 | /vitro-core/webapp/src/edu/cornell/mannlib/vitro/webapp/utils/sparqlrunner/SparqlQueryRunner.java | 2d6e68dcf259c035ead8d79e8dc1d3dbab5db6ce | [] | no_license | caotrinh/vivo | 02e5d4ef22b2376b2521726cf3e7c6af20e1ddd5 | 84a5ff1a6a71d907462727165aeb5e81fe969a65 | refs/heads/master | 2020-11-25T14:33:28.164896 | 2019-12-19T23:26:22 | 2019-12-19T23:26:22 | 228,717,030 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,029 | java | /* $This file is distributed under the terms of the license in LICENSE$ */
package edu.cornell.mannlib.vitro.webapp.utils.sparqlrunner;
import java.io.OutputStream;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.hp.hpl.jena.rdf.model.Model;
import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFService;
/**
* A conversational tool for handling SPARQL queries.
*
* <pre>
* Examples:
* List<String> values = createSelectQueryContext(rdfService, queryString)
* .bindVariableToUri("uri", uri)
* .execute()
* .toStringFields("partner")
* .flatten();
*
* QueryHolder qh = queryHolder(queryString)
* .bindToUri("uri", uri));
* List<Map<String, String> map = createSelectQueryContext(model, qh)
* .execute()
* .toStringFields();
* </pre>
*
* The query context can come from either an RDFService or a Model.
*
* The execute() method does not actually execute the query: it merely sets it
* up syntactically.
*
* If you don't supply any field names to toStringFields(), you get all of
* them.
*
* Any string value that returns a blank or empty string is omitted from the
* results. Any row that returns no values is omitted from the results.
*/
public final class SparqlQueryRunner {
private static final Log log = LogFactory.getLog(SparqlQueryRunner.class);
private SparqlQueryRunner() {
// No need to create an instance.
}
public static QueryHolder queryHolder(String queryString) {
return new QueryHolder(queryString);
}
// ------------- SELECT ----------- //
public static SelectQueryContext createSelectQueryContext(RDFService rdfService,
String queryString) {
return createSelectQueryContext(rdfService, queryHolder(queryString));
}
public static SelectQueryContext createSelectQueryContext(RDFService rdfService,
QueryHolder query) {
return new RdfServiceSelectQueryContext(rdfService, query);
}
public static SelectQueryContext createSelectQueryContext(Model model,
String queryString) {
return createSelectQueryContext(model, queryHolder(queryString));
}
public static SelectQueryContext createSelectQueryContext(Model model,
QueryHolder query) {
return new ModelSelectQueryContext(model, query);
}
public static interface SelectQueryContext {
public SelectQueryContext bindVariableToUri(String name, String uri);
public SelectQueryContext bindVariableToPlainLiteral(String name,
String value);
public ExecutingSelectQueryContext execute();
}
public static interface ExecutingSelectQueryContext {
public StringResultsMapping toStringFields(String... fieldNames);
public <T> T parse(ResultSetParser<T> parser);
public void writeToOutput(OutputStream output);
}
// ------------- CONSTRUCT ----------- //
public static ConstructQueryContext createConstructQueryContext(RDFService rdfService,
String queryString) {
return createConstructQueryContext(rdfService, queryHolder(queryString));
}
public static ConstructQueryContext createConstructQueryContext(RDFService rdfService,
QueryHolder query) {
return new RdfServiceConstructQueryContext(rdfService, query);
}
public static ConstructQueryContext createConstructQueryContext(Model model,
String queryString) {
return createConstructQueryContext(model, queryHolder(queryString));
}
public static ConstructQueryContext createConstructQueryContext(Model model,
QueryHolder query) {
return new ModelConstructQueryContext(model, query);
}
public static interface ConstructQueryContext{
public ConstructQueryContext bindVariableToUri(String name, String uri);
public ConstructQueryContext bindVariableToPlainLiteral(String name,
String value);
public ExecutingConstructQueryContext execute();
}
public static interface ExecutingConstructQueryContext {
public Model toModel();
}
}
| [
"caongoctrinh@gmail.com"
] | caongoctrinh@gmail.com |
035ba7525c7da4fdf927a52ae9d37b4df31308b1 | db51322739530b3a4991f046194a9c358088ae39 | /app/src/main/java/com/dasong/easypermission/core/Annotations/BeforeRequest.java | 37f94648d1f19c64893fb449dfc8d480cd099f88 | [
"Apache-2.0"
] | permissive | MrNANMU/EasyPermission | f6526511f33d43a2d7a58a7a227a90a12455cc42 | 89f76cd0d10c891939f0adc4b597060af659fbc9 | refs/heads/master | 2020-11-25T19:00:47.579748 | 2019-12-31T08:26:47 | 2019-12-31T08:26:47 | 228,803,305 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 318 | java | package com.dasong.easypermission.core.Annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Target(METHOD)
@Retention(RUNTIME)
public @interface BeforeRequest {
}
| [
"zhengxingda8605@dingtalk.com"
] | zhengxingda8605@dingtalk.com |
34388154c80e83be2bf3f6b9e271c1eb4eb00d38 | 993d069f3bebf7e8f264e014ea21b1a598f439ab | /processingWidgets/src/main/java/com/lancer/android/processing/widgets/APToggleButton.java | 0d04fe6ef272f878234c266d1dbc96ceaae734e9 | [] | no_license | Aaltan/leXXicon | 5dac730b8b8089d8b647bbe07003ccc94546473b | 9216246598ff7450026a1d1ee49fe4cae381bd64 | refs/heads/master | 2020-03-23T12:47:20.640773 | 2018-07-31T15:36:26 | 2018-07-31T15:36:26 | 141,573,599 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,857 | java | /**
* Copyright 2010 Rikard Lundstedt
*
* This file is part of APWidgets.
*
* APWidgets 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 3 of the License, or
* (at your option) any later version.
*
* APWidgets 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 APWidgets. If not, see <http://www.gnu.org/licenses/>.
*/
package com.lancer.android.processing.widgets;
import processing.core.PApplet;
import android.widget.ToggleButton;
import android.view.ViewGroup;
/**
* A Checkbox.Add instances to {apwidgets.APWidgetContainer}.<br>
* <br>
*
* @author Rikard Lundstedt
*
*/
public class APToggleButton extends APCompoundButton {
private String textOn = null;
private String textOff = null;
public String getTextOn(){
return textOn;
}
public String getTextOff(){
return textOff;
}
/**
* Creates a new toggle button.
* @param x The x position of the check box.
* @param y The y position of the check box.
* @param text The text on the label of the check box.
*/
public APToggleButton(int x, int y, String text) {
super(x, y, ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT, text);
}
/**
* Creates a new toggle button.<br>
*
* @param x The button's x position.
* @param y The button's y position.
* @param width The button's width.
* @param height The button's height.
* @param text The text on the button's label.
*/
public APToggleButton(int x, int y, int width, int height,
String text) {
super(x, y, width, height, text);
}
/**
* Initializes the toggle button. Is called by {@link APWidgetContainer}
* as it is added to it.
*
*/
public void init(PApplet argPApplet) {
this.pApplet = argPApplet;
if (view == null) {
view = new ToggleButton(pApplet);
}
if(textOn == null){
textOn = getText();
}
if(textOff == null){
textOff = getText();
}
((ToggleButton) view).setTextOn(getTextOn());
((ToggleButton) view).setTextOff(getTextOff());
super.init(pApplet);
}
public void setTextOn(String textOn){
this.textOn = textOn;
if (initialized) {
pApplet.runOnUiThread(new Runnable() {
public void run() {
((ToggleButton) view).setTextOn(getTextOn());
}
});
}
}
public void setTextOff(String textOff){
this.textOff = textOff;
if (initialized) {
pApplet.runOnUiThread(new Runnable() {
public void run() {
((ToggleButton) view).setTextOn(getTextOff());
}
});
}
}
} | [
"lancer@tiscali.it"
] | lancer@tiscali.it |
599192875ae76074d94feb0932240f9b8ca1c8ed | 4f7bdd4ed1ac7ce7440a36f02786c57d56c663f7 | /Events/src/com/events/FeedDetail.java | 288024d18490cd57a9d91eb17599e28a55d6e186 | [] | no_license | erliyusnaidi/maimasjid | 6aee7bcbcf8b681ad3b89462eb12d6dca83d221f | 74a28245a7bb4085562c0888a9fb4235f3df4125 | refs/heads/master | 2016-09-06T02:43:04.831314 | 2015-05-15T03:07:42 | 2015-05-15T03:07:42 | 35,540,400 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,221 | java | package com.events;
import android.annotation.SuppressLint;
import android.os.Bundle;
import android.view.View;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.ProgressBar;
import com.events.custom.CustomActivity;
import com.events.model.Feed;
import com.events.utils.Commons;
import com.events.utils.Const;
/**
* The Class FeedDetail is the Activity class that is launched when the user
* clicks on any Feed item in the Feed list section and it simply load the Feed
* URL in the Webview.
*/
@SuppressLint("SetJavaScriptEnabled")
public class FeedDetail extends CustomActivity
{
/* (non-Javadoc)
* @see com.events.custom.CustomActivity#onCreate(android.os.Bundle)
*/
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.web);
WebView w = (WebView) findViewById(R.id.web);
w.getSettings().setBuiltInZoomControls(true);
w.getSettings().setJavaScriptEnabled(true);
final ProgressBar pb = (ProgressBar) findViewById(R.id.progress);
final Feed f = (Feed) getIntent()
.getSerializableExtra(Const.EXTRA_DATA);
if (!Commons.isEmpty(f.getLink()))
w.loadUrl(f.getLink());
else if (!Commons.isEmpty(f.getMsg()))
w.loadDataWithBaseURL("http://feed-dummy", f.getMsg(), "text/html",
"UTF-8", "http://feed-dummy");
else
finish();
getActionBar().setTitle(f.getTitle());
w.setWebChromeClient(new WebChromeClient() {
@Override
public void onReceivedTitle(WebView view, String title)
{
super.onReceivedTitle(view, title);
if (Commons.isEmpty(f.getTitle()))
getActionBar().setTitle(title);
}
@Override
public void onProgressChanged(WebView view, int newProgress)
{
super.onProgressChanged(view, newProgress);
pb.setProgress(newProgress);
pb.setVisibility(newProgress == 100 ? View.GONE : View.VISIBLE);
}
});
w.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url)
{
view.loadUrl(url);
return true;
}
});
}
}
| [
"affiza@gmail.com"
] | affiza@gmail.com |
7c31f20984e1aa453f8cc7cf259af1eba1c24b73 | 9b214b754a3b9baf57a1539c4619c06aaec7984e | /src/main/java/com/carTrading/controller/NoticeController.java | 0fc16cbecc21a145735bd40dcc13b46f24e951dc | [] | no_license | HardTank/GraduationProject-carTrading | 318160301abed8f54d7f6de9206dc7bdd340190c | 50b8fa417b76fc7245bc67aa7e071306a89ed11e | refs/heads/master | 2022-06-21T16:54:11.024632 | 2020-07-03T02:28:55 | 2020-07-03T02:28:55 | 173,080,397 | 1 | 0 | null | 2022-06-21T01:46:25 | 2019-02-28T09:18:26 | JavaScript | UTF-8 | Java | false | false | 2,593 | java | package com.carTrading.controller;
import com.carTrading.entity.Notice;
import com.carTrading.service.NoticeService;
import com.carTrading.tool.UpdateNotNull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* @author tanlixin
* @description
* @since 2019-05-08
*/
@RestController
@RequestMapping(value="/notice")
public class NoticeController {
@Autowired
NoticeService noticeService;
private Logger logger = LoggerFactory.getLogger(this.getClass());
//获取需要展示的汽车信息
@RequestMapping(value = "/getList")
public Page<Notice> getList(Notice notice, int pageIndex, int pageSize) {
logger.info("查询公告");
Page<Notice> page = noticeService.getList(notice, pageIndex, pageSize);
return page;
}
//插入更新存储的二手车信息
@RequestMapping("save")
public Notice saveNotice(Notice notice ) {
logger.info("插入的公告信息"+notice.toString());
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM");
Date date = null;
//转化日期格式
// if (productDates != null) {
// try {
//
// date = format.parse(productDates.replace("\"", ""));
// Notice.setProductDate(date);
// } catch (ParseException e) {
// e.printStackTrace();
// }
// }
if (notice.getId() != null) {
Notice noti = noticeService.getNotice(notice);
//处理null值
UpdateNotNull.copyNonNullProperties(notice, noti);
notice = noticeService.save(noti);
} else {
notice = noticeService.save(notice);
}
return notice;
}
//删除汽车信息
@RequestMapping(value = "/delNotice")
public Page<Notice> delNotice(Notice notice) {
logger.info("删除汽车信息");
notice.setDeleted(1);
saveNotice(notice);
Page<Notice> page = noticeService.getList(notice, 0, 10);
return page;
}
//根据id汽车信息
@RequestMapping(value = "/getNotice")
public Notice getNotice(Notice notice) {
logger.info("获取汽车信息");
notice.setDeleted(0);
Notice c = noticeService.getNotice(notice);
return c;
}
}
| [
"hardstanks@gmail.com"
] | hardstanks@gmail.com |
0a712e8a7be4bd9312132b3a8e29a788160eb9e5 | 98bbf6f8d202f0edd6dca827d861f9683850edc1 | /Concierge/Concierge/app/src/main/java/com/handsriver/concierge/sync/ConciergeAuthenticatorService.java | d635bea79b7ce2fe2a90a35571720dfd4dde6a9f | [] | no_license | artrouve/tablet_citofon | 884f6913111f1df0ee5d879074b8e3e118e2e3b3 | 3db18b30ba5ba3f76e0e2f7e74b3eeba16a83c13 | refs/heads/master | 2023-04-30T23:36:43.570167 | 2023-04-23T02:29:17 | 2023-04-23T02:29:17 | 224,792,810 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 589 | java | package com.handsriver.concierge.sync;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.support.annotation.Nullable;
/**
* Created by Created by alain_r._trouve_silva after 27-04-17.
*/
public class ConciergeAuthenticatorService extends Service {
private ConciergeAuthenticator mAuthenticator;
@Override
public void onCreate() {
mAuthenticator = new ConciergeAuthenticator(this);
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return mAuthenticator.getIBinder();
}
}
| [
"alain@truv.cl"
] | alain@truv.cl |
92ac1e8114642fd6c79392a1eb3f3ca0fc0a6b84 | c8c6e8085091fb58cd6911947da94602061dc13f | /src/Solution.java | 9b2508975df4e4be3f7db25bf17576263be51b3b | [] | no_license | vsmedio/Solution0728 | 2904871de3025e3b2fc0320a174afda7679667f7 | 69fff635f34796ac05dba9464215fa4c6f256020 | refs/heads/master | 2021-05-14T02:49:35.874551 | 2018-01-07T22:30:01 | 2018-01-07T22:30:01 | 116,604,184 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,566 | java | import java.io.BufferedReader;
import java.io.InputStreamReader;
/*
В убывающем порядке
Задача: Написать программу, которая вводит с клавиатуры 20 чисел и выводит их в убывающем порядке.
Требования:
1. Программа должна считывать 20 целых чисел с клавиатуры.
2. Программа должна выводить 20 чисел.
3. В классе Solution должен быть метод public static void sort(int[] array).
4. Метод main должен вызывать метод sort.
5. Метод sort должен сортировать переданный массив по убыванию.
*/
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int[] array = new int[20];
for (int i = 0; i < 20; i++) {
array[i] = Integer.parseInt(reader.readLine());
}
sort(array);
for (int x : array) {
System.out.println(x);
}
}
public static void sort(int[] array) {
for (int i = 0; i < array.length; i++) {
for (int j = 0; j < array.length - 1 - i; j++) {
if (array[j] < array[j + 1]) {
int tmp = array[j];
array[j] = array[j + 1];
array[j + 1] = tmp;
}
}
}
}
}
| [
"info@vsmedio.lv"
] | info@vsmedio.lv |
338752a1214e42e2d4a452d2aaa03f3c917b3c30 | c885ef92397be9d54b87741f01557f61d3f794f3 | /tests-without-trycatch/Math-7/org.apache.commons.math3.ode.AbstractIntegrator/default/19/org/apache/commons/math3/ode/AbstractIntegrator_ESTest.java | 36e276218e74016ebf39aff9bbf9329227bc349b | [
"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 | 58,340 | java | /*
* This file was automatically generated by EvoSuite
* Fri Jul 30 13:41:14 GMT 2021
*/
package org.apache.commons.math3.ode;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.evosuite.shaded.org.mockito.Mockito.*;
import static org.evosuite.runtime.EvoAssertions.*;
import java.util.Collection;
import org.apache.commons.math3.analysis.solvers.IllinoisSolver;
import org.apache.commons.math3.analysis.solvers.PegasusSolver;
import org.apache.commons.math3.analysis.solvers.UnivariateSolver;
import org.apache.commons.math3.ode.ExpandableStatefulODE;
import org.apache.commons.math3.ode.FirstOrderConverter;
import org.apache.commons.math3.ode.FirstOrderDifferentialEquations;
import org.apache.commons.math3.ode.SecondOrderDifferentialEquations;
import org.apache.commons.math3.ode.events.EventHandler;
import org.apache.commons.math3.ode.nonstiff.AdamsMoultonIntegrator;
import org.apache.commons.math3.ode.nonstiff.DormandPrince54Integrator;
import org.apache.commons.math3.ode.nonstiff.DormandPrince853Integrator;
import org.apache.commons.math3.ode.nonstiff.GillIntegrator;
import org.apache.commons.math3.ode.nonstiff.GraggBulirschStoerIntegrator;
import org.apache.commons.math3.ode.nonstiff.HighamHall54Integrator;
import org.apache.commons.math3.ode.nonstiff.ThreeEighthesIntegrator;
import org.apache.commons.math3.ode.sampling.DummyStepHandler;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.evosuite.runtime.ViolatedAssumptionAnswer;
import org.junit.runner.RunWith;
@RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, separateClassLoader = true)
public class AbstractIntegrator_ESTest extends AbstractIntegrator_ESTest_scaffolding {
@Test(timeout = 4000)
public void test00() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertNotNull(graggBulirschStoerIntegrator0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
graggBulirschStoerIntegrator0.setStepSizeControl(721.2286073380351, (-1412.86951), 1.1638002395629883, 1.79214305133496E-187);
assertEquals(1412.86951, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(721.2286073380351, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
double[] doubleArray0 = new double[0];
double double0 = graggBulirschStoerIntegrator0.integrate((FirstOrderDifferentialEquations) firstOrderConverter0, 4.0389678347315804E-25, doubleArray0, (-1.0), doubleArray0);
assertEquals((-1.0), double0, 0.01);
assertArrayEquals(new double[] {}, doubleArray0, 0.01);
assertEquals(1412.86951, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(721.2286073380351, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(1009.456244246214, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(0, doubleArray0.length);
// Undeclared exception!
graggBulirschStoerIntegrator0.integrate((FirstOrderDifferentialEquations) firstOrderConverter0, 0.0, doubleArray0, 1295.7939, doubleArray0);
}
@Test(timeout = 4000)
public void test01() throws Throwable {
double[] doubleArray0 = new double[3];
DormandPrince853Integrator dormandPrince853Integrator0 = new DormandPrince853Integrator((-1.0), Integer.MAX_VALUE, doubleArray0, doubleArray0);
assertArrayEquals(new double[] {0.0, 0.0, 0.0}, doubleArray0, 0.01);
assertEquals(0.2, dormandPrince853Integrator0.getMinReduction(), 0.01);
assertEquals(46340.950001051984, dormandPrince853Integrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(2.147483647E9, dormandPrince853Integrator0.getMaxStep(), 0.01);
assertEquals(Double.NaN, dormandPrince853Integrator0.getCurrentStepStart(), 0.01);
assertEquals(10.0, dormandPrince853Integrator0.getMaxGrowth(), 0.01);
assertEquals(8, dormandPrince853Integrator0.getOrder());
assertEquals("Dormand-Prince 8 (5, 3)", dormandPrince853Integrator0.getName());
assertEquals(0.9, dormandPrince853Integrator0.getSafety(), 0.01);
assertEquals(1.0, dormandPrince853Integrator0.getMinStep(), 0.01);
assertEquals(3, doubleArray0.length);
assertNotNull(dormandPrince853Integrator0);
double[] doubleArray1 = new double[5];
assertFalse(doubleArray1.equals((Object)doubleArray0));
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
// try {
dormandPrince853Integrator0.integrate((FirstOrderDifferentialEquations) firstOrderConverter0, 0.0, doubleArray0, (-1328.723669476), doubleArray1);
// fail("Expecting exception: IllegalArgumentException");
// } catch(IllegalArgumentException e) {
// //
// // 3 != 0
// //
// verifyException("org.apache.commons.math3.ode.AbstractIntegrator", e);
// }
}
@Test(timeout = 4000)
public void test02() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator((-2208.12), 2008.0, (-2208.12), 2008.0);
assertEquals(2208.12, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(2008.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(2105.683964891218, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertNotNull(graggBulirschStoerIntegrator0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
ExpandableStatefulODE expandableStatefulODE0 = new ExpandableStatefulODE(firstOrderConverter0);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(Double.NaN, expandableStatefulODE0.getTime(), 0.01);
assertNotNull(expandableStatefulODE0);
expandableStatefulODE0.setTime(596.77765537);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(596.77765537, expandableStatefulODE0.getTime(), 0.01);
graggBulirschStoerIntegrator0.integrate(expandableStatefulODE0, 1649.3501439);
assertEquals(2208.12, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(2008.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(2105.683964891218, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(1649.3501439, expandableStatefulODE0.getTime(), 0.01);
}
@Test(timeout = 4000)
public void test03() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertNotNull(graggBulirschStoerIntegrator0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
graggBulirschStoerIntegrator0.setStepSizeControl(721.2286073380351, (-1412.86951), 1.1638002395629883, 1.79214305133496E-187);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(1412.86951, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(721.2286073380351, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
double[] doubleArray0 = new double[0];
double double0 = graggBulirschStoerIntegrator0.integrate((FirstOrderDifferentialEquations) firstOrderConverter0, 4.0389678347315804E-25, doubleArray0, (-1.0), doubleArray0);
assertEquals((-1.0), double0, 0.01);
assertArrayEquals(new double[] {}, doubleArray0, 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(1412.86951, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(721.2286073380351, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(1009.456244246214, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(0, doubleArray0.length);
double[] doubleArray1 = new double[4];
assertFalse(doubleArray1.equals((Object)doubleArray0));
graggBulirschStoerIntegrator0.computeDerivatives((-1.0), doubleArray1, doubleArray1);
assertFalse(doubleArray1.equals((Object)doubleArray0));
assertArrayEquals(new double[] {0.0, 0.0, 0.0, 0.0}, doubleArray1, 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(1412.86951, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(721.2286073380351, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(1009.456244246214, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertNotSame(doubleArray1, doubleArray0);
assertEquals(4, doubleArray1.length);
}
@Test(timeout = 4000)
public void test04() throws Throwable {
double[] doubleArray0 = new double[3];
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, doubleArray0, doubleArray0);
assertArrayEquals(new double[] {0.0, 0.0, 0.0}, doubleArray0, 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(3, doubleArray0.length);
assertNotNull(graggBulirschStoerIntegrator0);
graggBulirschStoerIntegrator0.clearStepHandlers();
assertArrayEquals(new double[] {0.0, 0.0, 0.0}, doubleArray0, 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(3, doubleArray0.length);
}
@Test(timeout = 4000)
public void test05() throws Throwable {
DormandPrince54Integrator dormandPrince54Integrator0 = new DormandPrince54Integrator(1000.0, 1000.0, (-1628.314052602), (-1628.314052602));
assertEquals(0.9, dormandPrince54Integrator0.getSafety(), 0.01);
assertEquals(10.0, dormandPrince54Integrator0.getMaxGrowth(), 0.01);
assertEquals(Double.NaN, dormandPrince54Integrator0.getCurrentStepStart(), 0.01);
assertEquals(5, dormandPrince54Integrator0.getOrder());
assertEquals(1000.0, dormandPrince54Integrator0.getMaxStep(), 0.01);
assertEquals(1000.0, dormandPrince54Integrator0.getMinStep(), 0.01);
assertEquals(0.2, dormandPrince54Integrator0.getMinReduction(), 0.01);
assertEquals("Dormand-Prince 5(4)", dormandPrince54Integrator0.getName());
assertEquals(1000.0, dormandPrince54Integrator0.getCurrentSignedStepsize(), 0.01);
assertNotNull(dormandPrince54Integrator0);
dormandPrince54Integrator0.clearEventHandlers();
assertEquals(0.9, dormandPrince54Integrator0.getSafety(), 0.01);
assertEquals(10.0, dormandPrince54Integrator0.getMaxGrowth(), 0.01);
assertEquals(Double.NaN, dormandPrince54Integrator0.getCurrentStepStart(), 0.01);
assertEquals(5, dormandPrince54Integrator0.getOrder());
assertEquals(1000.0, dormandPrince54Integrator0.getMaxStep(), 0.01);
assertEquals(1000.0, dormandPrince54Integrator0.getMinStep(), 0.01);
assertEquals(0.2, dormandPrince54Integrator0.getMinReduction(), 0.01);
assertEquals("Dormand-Prince 5(4)", dormandPrince54Integrator0.getName());
assertEquals(1000.0, dormandPrince54Integrator0.getCurrentSignedStepsize(), 0.01);
}
@Test(timeout = 4000)
public void test06() throws Throwable {
ThreeEighthesIntegrator threeEighthesIntegrator0 = new ThreeEighthesIntegrator(4822.5799878);
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("3/8", threeEighthesIntegrator0.getName());
assertNotNull(threeEighthesIntegrator0);
DummyStepHandler dummyStepHandler0 = DummyStepHandler.getInstance();
assertNotNull(dummyStepHandler0);
threeEighthesIntegrator0.addStepHandler(dummyStepHandler0);
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("3/8", threeEighthesIntegrator0.getName());
}
@Test(timeout = 4000)
public void test07() throws Throwable {
DormandPrince54Integrator dormandPrince54Integrator0 = new DormandPrince54Integrator((-0.2908093278463649), (-0.2908093278463649), 0.0, 1891.232249588614);
assertEquals(0.2, dormandPrince54Integrator0.getMinReduction(), 0.01);
assertEquals(0.2908093278463649, dormandPrince54Integrator0.getMaxStep(), 0.01);
assertEquals("Dormand-Prince 5(4)", dormandPrince54Integrator0.getName());
assertEquals(0.2908093278463649, dormandPrince54Integrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(10.0, dormandPrince54Integrator0.getMaxGrowth(), 0.01);
assertEquals(0.2908093278463649, dormandPrince54Integrator0.getMinStep(), 0.01);
assertEquals(Double.NaN, dormandPrince54Integrator0.getCurrentStepStart(), 0.01);
assertEquals(5, dormandPrince54Integrator0.getOrder());
assertEquals(0.9, dormandPrince54Integrator0.getSafety(), 0.01);
assertNotNull(dormandPrince54Integrator0);
EventHandler eventHandler0 = mock(EventHandler.class, new ViolatedAssumptionAnswer());
IllinoisSolver illinoisSolver0 = new IllinoisSolver((-0.2908093278463649));
assertEquals(0.0, illinoisSolver0.getMax(), 0.01);
assertEquals(1.0E-15, illinoisSolver0.getFunctionValueAccuracy(), 0.01);
assertEquals(0.0, illinoisSolver0.getStartValue(), 0.01);
assertEquals((-0.2908093278463649), illinoisSolver0.getAbsoluteAccuracy(), 0.01);
assertEquals(0.0, illinoisSolver0.getMin(), 0.01);
assertEquals(1.0E-14, illinoisSolver0.getRelativeAccuracy(), 0.01);
assertNotNull(illinoisSolver0);
dormandPrince54Integrator0.addEventHandler(eventHandler0, 0.0, 4712.797, 70, (UnivariateSolver) illinoisSolver0);
assertEquals(0.2, dormandPrince54Integrator0.getMinReduction(), 0.01);
assertEquals(0.2908093278463649, dormandPrince54Integrator0.getMaxStep(), 0.01);
assertEquals("Dormand-Prince 5(4)", dormandPrince54Integrator0.getName());
assertEquals(0.2908093278463649, dormandPrince54Integrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(10.0, dormandPrince54Integrator0.getMaxGrowth(), 0.01);
assertEquals(0.2908093278463649, dormandPrince54Integrator0.getMinStep(), 0.01);
assertEquals(Double.NaN, dormandPrince54Integrator0.getCurrentStepStart(), 0.01);
assertEquals(5, dormandPrince54Integrator0.getOrder());
assertEquals(0.9, dormandPrince54Integrator0.getSafety(), 0.01);
assertEquals(0.0, illinoisSolver0.getMax(), 0.01);
assertEquals(1.0E-15, illinoisSolver0.getFunctionValueAccuracy(), 0.01);
assertEquals(0.0, illinoisSolver0.getStartValue(), 0.01);
assertEquals((-0.2908093278463649), illinoisSolver0.getAbsoluteAccuracy(), 0.01);
assertEquals(0.0, illinoisSolver0.getMin(), 0.01);
assertEquals(1.0E-14, illinoisSolver0.getRelativeAccuracy(), 0.01);
}
@Test(timeout = 4000)
public void test08() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(6.1163854498789245, 6.1163854498789245, 6.1163854498789245, 6.1163854498789245);
assertEquals(6.1163854498789245, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(6.1163854498789245, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(6.1163854498789245, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertNotNull(graggBulirschStoerIntegrator0);
graggBulirschStoerIntegrator0.setMaxEvaluations(0);
assertEquals(6.1163854498789245, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(6.1163854498789245, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(6.1163854498789245, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
int int0 = graggBulirschStoerIntegrator0.getMaxEvaluations();
assertEquals(0, int0);
assertEquals(6.1163854498789245, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(6.1163854498789245, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(6.1163854498789245, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
}
@Test(timeout = 4000)
public void test09() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertNotNull(graggBulirschStoerIntegrator0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
graggBulirschStoerIntegrator0.setStepSizeControl(721.2286073380351, (-1412.86951), 1.1638002395629883, 1.79214305133496E-187);
assertEquals(721.2286073380351, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(1412.86951, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
double[] doubleArray0 = new double[0];
double double0 = graggBulirschStoerIntegrator0.integrate((FirstOrderDifferentialEquations) firstOrderConverter0, 4.0389678347315804E-25, doubleArray0, (-1.0), doubleArray0);
assertEquals((-1.0), double0, 0.01);
assertArrayEquals(new double[] {}, doubleArray0, 0.01);
assertEquals(1009.456244246214, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(721.2286073380351, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(1412.86951, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(0, doubleArray0.length);
int int0 = graggBulirschStoerIntegrator0.getEvaluations();
assertEquals(131, int0);
assertEquals(1009.456244246214, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(721.2286073380351, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(1412.86951, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
}
@Test(timeout = 4000)
public void test10() throws Throwable {
HighamHall54Integrator highamHall54Integrator0 = new HighamHall54Integrator(0.0, 0.0, (-1.0), (-1.0));
assertEquals(5, highamHall54Integrator0.getOrder());
assertEquals(0.0, highamHall54Integrator0.getMinStep(), 0.01);
assertEquals(0.9, highamHall54Integrator0.getSafety(), 0.01);
assertEquals(10.0, highamHall54Integrator0.getMaxGrowth(), 0.01);
assertEquals(Double.NaN, highamHall54Integrator0.getCurrentStepStart(), 0.01);
assertEquals(0.0, highamHall54Integrator0.getMaxStep(), 0.01);
assertEquals("Higham-Hall 5(4)", highamHall54Integrator0.getName());
assertEquals(0.0, highamHall54Integrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0.2, highamHall54Integrator0.getMinReduction(), 0.01);
assertNotNull(highamHall54Integrator0);
double double0 = highamHall54Integrator0.getCurrentSignedStepsize();
assertEquals(0.0, double0, 0.01);
assertEquals(5, highamHall54Integrator0.getOrder());
assertEquals(0.0, highamHall54Integrator0.getMinStep(), 0.01);
assertEquals(0.9, highamHall54Integrator0.getSafety(), 0.01);
assertEquals(10.0, highamHall54Integrator0.getMaxGrowth(), 0.01);
assertEquals(Double.NaN, highamHall54Integrator0.getCurrentStepStart(), 0.01);
assertEquals(0.0, highamHall54Integrator0.getMaxStep(), 0.01);
assertEquals("Higham-Hall 5(4)", highamHall54Integrator0.getName());
assertEquals(0.0, highamHall54Integrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0.2, highamHall54Integrator0.getMinReduction(), 0.01);
}
@Test(timeout = 4000)
public void test11() throws Throwable {
double[] doubleArray0 = new double[5];
DormandPrince853Integrator dormandPrince853Integrator0 = new DormandPrince853Integrator(65.7, 65.7, doubleArray0, doubleArray0);
assertArrayEquals(new double[] {0.0, 0.0, 0.0, 0.0, 0.0}, doubleArray0, 0.01);
assertEquals(65.7, dormandPrince853Integrator0.getMinStep(), 0.01);
assertEquals(Double.NaN, dormandPrince853Integrator0.getCurrentStepStart(), 0.01);
assertEquals(65.7, dormandPrince853Integrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("Dormand-Prince 8 (5, 3)", dormandPrince853Integrator0.getName());
assertEquals(0.9, dormandPrince853Integrator0.getSafety(), 0.01);
assertEquals(65.7, dormandPrince853Integrator0.getMaxStep(), 0.01);
assertEquals(0.2, dormandPrince853Integrator0.getMinReduction(), 0.01);
assertEquals(10.0, dormandPrince853Integrator0.getMaxGrowth(), 0.01);
assertEquals(8, dormandPrince853Integrator0.getOrder());
assertEquals(5, doubleArray0.length);
assertNotNull(dormandPrince853Integrator0);
double double0 = dormandPrince853Integrator0.getCurrentSignedStepsize();
assertEquals(65.7, double0, 0.01);
assertArrayEquals(new double[] {0.0, 0.0, 0.0, 0.0, 0.0}, doubleArray0, 0.01);
assertEquals(65.7, dormandPrince853Integrator0.getMinStep(), 0.01);
assertEquals(Double.NaN, dormandPrince853Integrator0.getCurrentStepStart(), 0.01);
assertEquals(65.7, dormandPrince853Integrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("Dormand-Prince 8 (5, 3)", dormandPrince853Integrator0.getName());
assertEquals(0.9, dormandPrince853Integrator0.getSafety(), 0.01);
assertEquals(65.7, dormandPrince853Integrator0.getMaxStep(), 0.01);
assertEquals(0.2, dormandPrince853Integrator0.getMinReduction(), 0.01);
assertEquals(10.0, dormandPrince853Integrator0.getMaxGrowth(), 0.01);
assertEquals(8, dormandPrince853Integrator0.getOrder());
assertEquals(5, doubleArray0.length);
}
@Test(timeout = 4000)
public void test12() throws Throwable {
DormandPrince54Integrator dormandPrince54Integrator0 = new DormandPrince54Integrator(810.57358390333, 810.57358390333, 2066.150982, 1407.546614);
assertEquals(0.9, dormandPrince54Integrator0.getSafety(), 0.01);
assertEquals(810.57358390333, dormandPrince54Integrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(10.0, dormandPrince54Integrator0.getMaxGrowth(), 0.01);
assertEquals(Double.NaN, dormandPrince54Integrator0.getCurrentStepStart(), 0.01);
assertEquals(5, dormandPrince54Integrator0.getOrder());
assertEquals(810.57358390333, dormandPrince54Integrator0.getMaxStep(), 0.01);
assertEquals(0.2, dormandPrince54Integrator0.getMinReduction(), 0.01);
assertEquals("Dormand-Prince 5(4)", dormandPrince54Integrator0.getName());
assertEquals(810.57358390333, dormandPrince54Integrator0.getMinStep(), 0.01);
assertNotNull(dormandPrince54Integrator0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
// Undeclared exception!
// try {
dormandPrince54Integrator0.integrate((FirstOrderDifferentialEquations) firstOrderConverter0, 1407.546614, (double[]) null, 0.0, (double[]) null);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("org.apache.commons.math3.ode.AbstractIntegrator", e);
// }
}
@Test(timeout = 4000)
public void test13() throws Throwable {
double[] doubleArray0 = new double[0];
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, (-1711.9), doubleArray0, doubleArray0);
assertArrayEquals(new double[] {}, doubleArray0, 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(1711.9, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0, doubleArray0.length);
assertNotNull(graggBulirschStoerIntegrator0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
// Undeclared exception!
// try {
graggBulirschStoerIntegrator0.integrate((FirstOrderDifferentialEquations) firstOrderConverter0, 1.0, doubleArray0, 122.12531080309986, doubleArray0);
// fail("Expecting exception: ArrayIndexOutOfBoundsException");
// } catch(ArrayIndexOutOfBoundsException e) {
// //
// // 0
// //
// verifyException("org.apache.commons.math3.ode.nonstiff.GraggBulirschStoerIntegrator", e);
// }
}
@Test(timeout = 4000)
public void test14() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertNotNull(graggBulirschStoerIntegrator0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
EventHandler eventHandler0 = mock(EventHandler.class, new ViolatedAssumptionAnswer());
doReturn(0.0, 0.0, (-1932.9246645639141)).when(eventHandler0).g(anyDouble() , any(double[].class));
graggBulirschStoerIntegrator0.addEventHandler(eventHandler0, (double) 0, 0.0, 0);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
ExpandableStatefulODE expandableStatefulODE0 = new ExpandableStatefulODE(firstOrderConverter0);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(Double.NaN, expandableStatefulODE0.getTime(), 0.01);
assertNotNull(expandableStatefulODE0);
// try {
graggBulirschStoerIntegrator0.integrate(expandableStatefulODE0, 0.0);
// fail("Expecting exception: IllegalStateException");
// } catch(IllegalStateException e) {
// //
// // illegal state: maximal count (0) exceeded: evaluations
// //
// verifyException("org.apache.commons.math3.analysis.solvers.BaseAbstractUnivariateSolver", e);
// }
}
@Test(timeout = 4000)
public void test15() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertNotNull(graggBulirschStoerIntegrator0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
EventHandler eventHandler0 = mock(EventHandler.class, new ViolatedAssumptionAnswer());
doReturn(0.0, 0.0, (-1937.0191886881)).when(eventHandler0).g(anyDouble() , any(double[].class));
graggBulirschStoerIntegrator0.addEventHandler(eventHandler0, (double) 0, 0.0, 674);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
ExpandableStatefulODE expandableStatefulODE0 = new ExpandableStatefulODE(firstOrderConverter0);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(Double.NaN, expandableStatefulODE0.getTime(), 0.01);
assertNotNull(expandableStatefulODE0);
expandableStatefulODE0.setTime((-81.6666418));
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals((-81.6666418), expandableStatefulODE0.getTime(), 0.01);
// Undeclared exception!
// try {
graggBulirschStoerIntegrator0.integrate(expandableStatefulODE0, (double) 0);
// fail("Expecting exception: IllegalArgumentException");
// } catch(IllegalArgumentException e) {
// //
// // endpoints do not specify an interval: [-81.667, -81.667]
// //
// verifyException("org.apache.commons.math3.analysis.solvers.UnivariateSolverUtils", e);
// }
}
@Test(timeout = 4000)
public void test16() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator((-18.106617408899368), (-18.106617408899368), (-18.106617408899368), (-18.106617408899368));
assertEquals(18.106617408899368, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(18.106617408899368, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(18.106617408899368, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertNotNull(graggBulirschStoerIntegrator0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
EventHandler eventHandler0 = mock(EventHandler.class, new ViolatedAssumptionAnswer());
doReturn((-18.106617408899368), (-18.106617408899368), (-1937.0191886881), (double)0, (-18.106617408899368)).when(eventHandler0).g(anyDouble() , any(double[].class));
graggBulirschStoerIntegrator0.addEventHandler(eventHandler0, (double) 0, (-18.106617408899368), 674);
assertEquals(18.106617408899368, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(18.106617408899368, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(18.106617408899368, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
ExpandableStatefulODE expandableStatefulODE0 = new ExpandableStatefulODE(firstOrderConverter0);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(Double.NaN, expandableStatefulODE0.getTime(), 0.01);
assertNotNull(expandableStatefulODE0);
// try {
graggBulirschStoerIntegrator0.integrate(expandableStatefulODE0, (double) 0);
// fail("Expecting exception: IllegalArgumentException");
// } catch(IllegalArgumentException e) {
// //
// // function values at endpoints do not have different signs, endpoints: [\uFFFD, \uFFFD], values: [-18.107, -18.107]
// //
// verifyException("org.apache.commons.math3.analysis.solvers.BracketingNthOrderBrentSolver", e);
// }
}
@Test(timeout = 4000)
public void test17() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 1.819516598812637, (-1.881900772001959), 0.0);
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(1.819516598812637, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertNotNull(graggBulirschStoerIntegrator0);
// Undeclared exception!
// try {
graggBulirschStoerIntegrator0.integrate((ExpandableStatefulODE) null, 0.0);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("org.apache.commons.math3.ode.AbstractIntegrator", e);
// }
}
@Test(timeout = 4000)
public void test18() throws Throwable {
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
double[] doubleArray0 = new double[0];
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(122.12531080309986, 122.12531080309986, doubleArray0, doubleArray0);
assertArrayEquals(new double[] {}, doubleArray0, 0.01);
assertEquals(122.12531080309986, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(122.12531080309986, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(122.12531080309986, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(0, doubleArray0.length);
assertNotNull(graggBulirschStoerIntegrator0);
ExpandableStatefulODE expandableStatefulODE0 = new ExpandableStatefulODE(firstOrderConverter0);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(Double.NaN, expandableStatefulODE0.getTime(), 0.01);
assertNotNull(expandableStatefulODE0);
// Undeclared exception!
// try {
graggBulirschStoerIntegrator0.integrate(expandableStatefulODE0, (-635.0));
// fail("Expecting exception: ArrayIndexOutOfBoundsException");
// } catch(ArrayIndexOutOfBoundsException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// }
}
@Test(timeout = 4000)
public void test19() throws Throwable {
ThreeEighthesIntegrator threeEighthesIntegrator0 = new ThreeEighthesIntegrator(0.0);
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("3/8", threeEighthesIntegrator0.getName());
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentStepStart(), 0.01);
assertNotNull(threeEighthesIntegrator0);
// Undeclared exception!
// try {
threeEighthesIntegrator0.computeDerivatives(0.0, (double[]) null, (double[]) null);
// fail("Expecting exception: NullPointerException");
// } catch(NullPointerException e) {
// //
// // no message in exception (getMessage() returned null)
// //
// verifyException("org.apache.commons.math3.ode.AbstractIntegrator", e);
// }
}
@Test(timeout = 4000)
public void test20() throws Throwable {
GillIntegrator gillIntegrator0 = new GillIntegrator((-1.2251564463762044));
assertEquals(Double.NaN, gillIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("Gill", gillIntegrator0.getName());
assertEquals(Double.NaN, gillIntegrator0.getCurrentStepStart(), 0.01);
assertNotNull(gillIntegrator0);
gillIntegrator0.setMaxEvaluations((-600));
assertEquals(Double.NaN, gillIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("Gill", gillIntegrator0.getName());
assertEquals(Double.NaN, gillIntegrator0.getCurrentStepStart(), 0.01);
}
@Test(timeout = 4000)
public void test21() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator((-562.6203), (-562.6203), (-562.6203), (-562.6203));
assertEquals(562.6203, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(562.6203, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(562.6203, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertNotNull(graggBulirschStoerIntegrator0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
ExpandableStatefulODE expandableStatefulODE0 = new ExpandableStatefulODE(firstOrderConverter0);
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals(Double.NaN, expandableStatefulODE0.getTime(), 0.01);
assertNotNull(expandableStatefulODE0);
expandableStatefulODE0.setTime((-562.6203));
assertEquals(0, firstOrderConverter0.getDimension());
assertEquals((-562.6203), expandableStatefulODE0.getTime(), 0.01);
// try {
graggBulirschStoerIntegrator0.integrate(expandableStatefulODE0, (-562.6203));
// fail("Expecting exception: IllegalArgumentException");
// } catch(IllegalArgumentException e) {
// //
// // too small integration interval: length = 0
// //
// verifyException("org.apache.commons.math3.ode.AbstractIntegrator", e);
// }
}
@Test(timeout = 4000)
public void test22() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertNotNull(graggBulirschStoerIntegrator0);
EventHandler eventHandler0 = mock(EventHandler.class, new ViolatedAssumptionAnswer());
doReturn(0.0, 5.6843418860808015E-11, 5.6843418860808015E-11).when(eventHandler0).g(anyDouble() , any(double[].class));
graggBulirschStoerIntegrator0.addEventHandler(eventHandler0, 0.0, 2200.777010541, 819);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(0.0, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
graggBulirschStoerIntegrator0.setStepSizeControl(1052.5724885299999, 1552.26366146, 721.2286073380351, 0.0);
assertEquals(1052.5724885299999, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(0.0, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(1552.26366146, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotNull(firstOrderConverter0);
double[] doubleArray0 = new double[0];
double[] doubleArray1 = new double[0];
assertFalse(doubleArray1.equals((Object)doubleArray0));
double double0 = graggBulirschStoerIntegrator0.integrate((FirstOrderDifferentialEquations) firstOrderConverter0, 1351.1879834, doubleArray0, 876.178371817929, doubleArray1);
assertEquals(876.178371817929, double0, 0.01);
assertFalse(doubleArray0.equals((Object)doubleArray1));
assertFalse(doubleArray1.equals((Object)doubleArray0));
assertArrayEquals(new double[] {}, doubleArray0, 0.01);
assertArrayEquals(new double[] {}, doubleArray1, 0.01);
assertEquals(1052.5724885299999, graggBulirschStoerIntegrator0.getMinStep(), 0.01);
assertEquals(Double.NaN, graggBulirschStoerIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(1278.2292536934217, graggBulirschStoerIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals("Gragg-Bulirsch-Stoer", graggBulirschStoerIntegrator0.getName());
assertEquals(1552.26366146, graggBulirschStoerIntegrator0.getMaxStep(), 0.01);
assertEquals(0, firstOrderConverter0.getDimension());
assertNotSame(doubleArray0, doubleArray1);
assertNotSame(doubleArray1, doubleArray0);
assertEquals(0, doubleArray0.length);
assertEquals(0, doubleArray1.length);
}
@Test(timeout = 4000)
public void test23() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
EventHandler eventHandler0 = mock(EventHandler.class, new ViolatedAssumptionAnswer());
doReturn(646.37, (-387.5), 0.0, Double.NaN, 0.0).when(eventHandler0).g(anyDouble() , any(double[].class));
graggBulirschStoerIntegrator0.addEventHandler(eventHandler0, 0.0, (double) 1281, 1281);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
ExpandableStatefulODE expandableStatefulODE0 = new ExpandableStatefulODE(firstOrderConverter0);
// Undeclared exception!
graggBulirschStoerIntegrator0.integrate(expandableStatefulODE0, 0.0);
}
@Test(timeout = 4000)
public void test24() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
EventHandler eventHandler0 = mock(EventHandler.class, new ViolatedAssumptionAnswer());
doReturn(0.0, 0.0, (-1932.9246645639141), (double)0, 0.0).when(eventHandler0).g(anyDouble() , any(double[].class));
DummyStepHandler dummyStepHandler0 = DummyStepHandler.getInstance();
graggBulirschStoerIntegrator0.addStepHandler(dummyStepHandler0);
graggBulirschStoerIntegrator0.addEventHandler(eventHandler0, (double) 0, 0.0, 674);
ExpandableStatefulODE expandableStatefulODE0 = new ExpandableStatefulODE(firstOrderConverter0);
// Undeclared exception!
graggBulirschStoerIntegrator0.integrate(expandableStatefulODE0, (-1932.9246645639141));
}
@Test(timeout = 4000)
public void test25() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
double[] doubleArray0 = new double[0];
double[] doubleArray1 = new double[6];
// try {
graggBulirschStoerIntegrator0.integrate((FirstOrderDifferentialEquations) firstOrderConverter0, (-1.9872713979884691E43), doubleArray0, (double) Integer.MAX_VALUE, doubleArray1);
// fail("Expecting exception: IllegalArgumentException");
// } catch(IllegalArgumentException e) {
// //
// // 6 != 0
// //
// verifyException("org.apache.commons.math3.ode.AbstractIntegrator", e);
// }
}
@Test(timeout = 4000)
public void test26() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator((-562.6203), (-562.6203), (-562.6203), (-562.6203));
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(6).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
double[] doubleArray0 = new double[0];
// try {
graggBulirschStoerIntegrator0.integrate((FirstOrderDifferentialEquations) firstOrderConverter0, (-562.6203), doubleArray0, (-297.8837632526), doubleArray0);
// fail("Expecting exception: IllegalArgumentException");
// } catch(IllegalArgumentException e) {
// //
// // 0 != 12
// //
// verifyException("org.apache.commons.math3.ode.AbstractIntegrator", e);
// }
}
@Test(timeout = 4000)
public void test27() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator((-562.6203), (-562.6203), (-562.6203), (-562.6203));
graggBulirschStoerIntegrator0.setMaxEvaluations(348);
SecondOrderDifferentialEquations secondOrderDifferentialEquations0 = mock(SecondOrderDifferentialEquations.class, new ViolatedAssumptionAnswer());
doReturn(0).when(secondOrderDifferentialEquations0).getDimension();
FirstOrderConverter firstOrderConverter0 = new FirstOrderConverter(secondOrderDifferentialEquations0);
ExpandableStatefulODE expandableStatefulODE0 = new ExpandableStatefulODE(firstOrderConverter0);
// try {
graggBulirschStoerIntegrator0.integrate(expandableStatefulODE0, (-562.6203));
// fail("Expecting exception: IllegalStateException");
// } catch(IllegalStateException e) {
// //
// // illegal state: maximal count (348) exceeded
// //
// verifyException("org.apache.commons.math3.util.Incrementor$1", e);
// }
}
@Test(timeout = 4000)
public void test28() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
PegasusSolver pegasusSolver0 = new PegasusSolver((-966.3128462034938));
graggBulirschStoerIntegrator0.addEventHandler((EventHandler) null, 347.0, (-966.3128462034938), 1483, (UnivariateSolver) pegasusSolver0);
Collection<EventHandler> collection0 = graggBulirschStoerIntegrator0.getEventHandlers();
assertNotNull(collection0);
}
@Test(timeout = 4000)
public void test29() throws Throwable {
ThreeEighthesIntegrator threeEighthesIntegrator0 = new ThreeEighthesIntegrator(0.0);
threeEighthesIntegrator0.getName();
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentStepStart(), 0.01);
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentSignedStepsize(), 0.01);
}
@Test(timeout = 4000)
public void test30() throws Throwable {
ThreeEighthesIntegrator threeEighthesIntegrator0 = new ThreeEighthesIntegrator(0.0);
threeEighthesIntegrator0.getStepHandlers();
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentStepStart(), 0.01);
}
@Test(timeout = 4000)
public void test31() throws Throwable {
ThreeEighthesIntegrator threeEighthesIntegrator0 = new ThreeEighthesIntegrator((-0.11567487636998686));
double double0 = threeEighthesIntegrator0.getCurrentStepStart();
assertEquals(Double.NaN, threeEighthesIntegrator0.getCurrentSignedStepsize(), 0.01);
assertEquals(Double.NaN, double0, 0.01);
}
@Test(timeout = 4000)
public void test32() throws Throwable {
AdamsMoultonIntegrator adamsMoultonIntegrator0 = new AdamsMoultonIntegrator(5, (-14.92182780141162), 5, 5, 5);
int int0 = adamsMoultonIntegrator0.getMaxEvaluations();
assertEquals(Integer.MAX_VALUE, int0);
}
@Test(timeout = 4000)
public void test33() throws Throwable {
GraggBulirschStoerIntegrator graggBulirschStoerIntegrator0 = new GraggBulirschStoerIntegrator(0.0, 0.0, 0.0, 0.0);
int int0 = graggBulirschStoerIntegrator0.getEvaluations();
assertEquals(0, int0);
}
}
| [
"pouria.derakhshanfar@gmail.com"
] | pouria.derakhshanfar@gmail.com |
aca610863ff4f4ee89a8a89d30721c2edb81c86d | d9a921e4795a7101ce055b4d9508e9a7e92d0604 | /src/Dictionary.java | 76a2792c341a46a5f482f4a3990e01b7908a5fd6 | [] | no_license | desai10/WordGuessingGame | 091f8ef04553511d11b54f274e2fb717078e36e9 | 091439de3f168f5aa148387db953f8ada057d30f | refs/heads/master | 2020-03-25T20:37:34.376924 | 2018-08-09T10:45:34 | 2018-08-09T10:45:34 | 144,139,165 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,665 | java | import java.io.BufferedReader;
import java.io.FileReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
public class Dictionary {
Map<String, ArrayList<String >> dictionary;
public Dictionary(int size) throws Exception{
dictionary = new HashMap<>();
generateDict(size);
System.out.println(dictionary);
System.out.println(dictionary.size());
}
void generateDict(int size) throws Exception{
String FILE = "/Users/srdesai/Documents/Bootcamp/WordGuessingGame/src/resources/sowpods.txt";
BufferedReader br = new BufferedReader(new FileReader(FILE));
String str;
while((str=br.readLine())!=null){
char temp[] = str.toCharArray();
Arrays.sort(temp);
String anagram = new String(temp);
if(!hasRepeatingCharacters(str) && str.length() == size) {
if(dictionary.containsKey(anagram)){
ArrayList<String> as = dictionary.get(anagram);
as.add(str);
dictionary.put(anagram,as);
}else{
ArrayList<String> as = new ArrayList<>();
as.add(str);
dictionary.put(anagram,as);
}
}
}
}
private boolean hasRepeatingCharacters(String str) {
Map<Character, Integer> ma = new HashMap<>();
for(int i=0;i<str.length();i++) {
if(ma.containsKey(str.charAt(i))) {
return true;
}
ma.put(str.charAt(i), 1);
}
return false;
}
}
| [
"isriramdesai@gmail.com"
] | isriramdesai@gmail.com |
66332e20cf28554d7441dc3cebe1246350272a99 | 1638b1a2483566aa4d7b1c3f489187fde5c3b542 | /src/gameSettings/GameType.java | 0613b3cae37ed13e6df7ef4633a64402ab65e273 | [] | no_license | Eitamah/Wordiada | 41cbb772863dc96a4d616e214293b9e24acb317e | d323de7474ca444baa6353d3869c632070ce0a39 | refs/heads/master | 2021-01-19T08:23:09.173534 | 2017-04-30T16:30:32 | 2017-04-30T16:30:42 | 87,623,732 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,443 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.04.08 at 05:23:04 PM IDT
//
package gameSettings;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
* <attribute name="winner-according-to" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="WordCount"/>
* <enumeration value="WordScore"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="gold-fish-mode" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </extension>
* </simpleContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"value"
})
@XmlRootElement(name = "GameType")
public class GameType implements Serializable{
/**
*
*/
private static final long serialVersionUID = 5464623185654157234L;
@XmlValue
protected String value;
@XmlAttribute(name = "winner-according-to", required = true)
protected String winnerAccordingTo;
@XmlAttribute(name = "gold-fish-mode")
protected Boolean goldFishMode;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the winnerAccordingTo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWinnerAccordingTo() {
return winnerAccordingTo;
}
/**
* Sets the value of the winnerAccordingTo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWinnerAccordingTo(String value) {
this.winnerAccordingTo = value;
}
/**
* Gets the value of the goldFishMode property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isGoldFishMode() {
return goldFishMode;
}
/**
* Sets the value of the goldFishMode property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setGoldFishMode(Boolean value) {
this.goldFishMode = value;
}
}
| [
"matie4@gmail.com"
] | matie4@gmail.com |
6f104832931ae44ea675a6b9225d51a63a491537 | d1338ea1a13a22210099051fab527c506476ab53 | /src/main/java/com/github/vladislavsevruk/generator/test/data/generator/iterable/ArrayTestDataGenerator.java | 1c0c7bc5eba20a91846e4f4d55a4726aea37edcf | [
"MIT"
] | permissive | VladislavSevruk/TestDataGenerator | c0603168667a1330a080a8a145b823b0fe636f97 | be239ce3047a47186cab23611db227101a420f31 | refs/heads/develop | 2023-03-11T09:56:48.298701 | 2021-02-26T11:14:10 | 2021-02-26T11:14:10 | 316,294,831 | 0 | 0 | MIT | 2021-02-26T11:42:36 | 2020-11-26T17:17:47 | Java | UTF-8 | Java | false | false | 3,701 | java | /*
* MIT License
*
* Copyright (c) 2020 Uladzislau Seuruk
*
* 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 com.github.vladislavsevruk.generator.test.data.generator.iterable;
import com.github.vladislavsevruk.generator.test.data.config.TestDataGenerationConfig;
import com.github.vladislavsevruk.generator.test.data.context.TestDataGenerationContext;
import com.github.vladislavsevruk.generator.test.data.exception.TypeGenerationException;
import com.github.vladislavsevruk.generator.test.data.generator.AbstractParameterizedTestDataGenerator;
import com.github.vladislavsevruk.generator.test.data.generator.NonParameterizedTypeDataGenerator;
import com.github.vladislavsevruk.generator.test.data.util.RandomUtil;
import com.github.vladislavsevruk.resolver.type.TypeMeta;
import java.lang.reflect.Array;
/**
* Implements <code>TypeTestDataGenerator</code> for array type.
*
* @see NonParameterizedTypeDataGenerator
*/
public class ArrayTestDataGenerator extends AbstractParameterizedTestDataGenerator<Object[]> {
private final TestDataGenerationContext context;
public ArrayTestDataGenerator(TestDataGenerationContext context) {
this.context = context;
}
/**
* {@inheritDoc}
*/
@Override
public boolean canGenerate(Class<?> type) {
return type.isArray();
}
@Override
protected Object[] doGenerate(TestDataGenerationConfig testDataGenerationConfig,
TypeMeta<? extends Object[]> typeMeta) {
int itemsNumber = RandomUtil.getInteger(testDataGenerationConfig.minItemsForCollections(),
testDataGenerationConfig.maxItemsForCollections() + 1);
TypeMeta<?> innerType = typeMeta.getGenericTypes()[0];
Object[] array = createItem(innerType.getType(), itemsNumber);
for (int i = 0; i < itemsNumber; ++i) {
array[i] = context.getTestDataGenerationEngine().generate(testDataGenerationConfig, innerType);
}
return array;
}
@Override
protected Class<Object[]> getTargetType() {
return Object[].class;
}
@Override
protected void validateTypeMeta(TypeMeta<? extends Object[]> toMeta) {
super.validateTypeMeta(toMeta);
int innerTypesNumber = toMeta.getGenericTypes().length;
if (innerTypesNumber > 1) {
String message = String
.format("Expected type meta size for target type: 0 or 1 but was: %d.", innerTypesNumber);
throw new TypeGenerationException(message);
}
}
private Object[] createItem(Class<?> type, int itemsNumber) {
return (Object[]) Array.newInstance(type, itemsNumber);
}
}
| [
"noreply@github.com"
] | VladislavSevruk.noreply@github.com |
704d4c0a8d346636999fe113594b6a342a1ba191 | c3065391df4ba3b29dd042f024974d8a5ab5013b | /solutions/arrayofarrays/src/main/java/arrayofarrays/DailyValues.java | 272d4769c99ec58d24e40b86120d29fdd70a17d3 | [] | no_license | puhakex/java-bsc-public | 2d81289f85cae010c5229b967c1d17ff52aa5421 | 2b7747456a1b28cb8501eb6953ef68f3cd262692 | refs/heads/master | 2023-09-05T07:02:27.914260 | 2021-11-19T10:37:04 | 2021-11-19T10:37:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 758 | java | package arrayofarrays;
public class DailyValues {
public void getValues() {
int[][] values = new int[12][];
int[] numberOfDays = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
for (int i = 0; i < numberOfDays.length; i++) {
values[i] = new int[numberOfDays[i]];
}
printArrayOfArrays(values);
}
private void printArrayOfArrays(int[][] values) {
for (int i[] : values) {
for (int j : i) {
System.out.print(j);
System.out.print(" ");
}
System.out.println();
}
}
public static void main(String[] args) {
DailyValues dailyValues = new DailyValues();
dailyValues.getValues();
}
}
| [
"viczian.istvan@gmail.com"
] | viczian.istvan@gmail.com |
1c09d8367c3f004682e78e0676fe40951c2ebcc4 | 96427dc732d9d5162eb1f0e17c9696ba06619006 | /Bundle.java | 1f667cfe815891bb6776a09cc8cf4477da341832 | [] | no_license | instaclustr/provisioning-API-DEMO | c30339c838b6fe9371d30d22ed269cdf99c54c1a | 121a5e84b8663d7ed9a9ce27744781fa507682fd | refs/heads/master | 2021-06-12T04:07:21.484255 | 2020-05-14T01:11:07 | 2020-05-14T01:11:07 | 192,466,779 | 0 | 0 | null | 2021-06-04T02:09:26 | 2019-06-18T04:44:00 | Java | UTF-8 | Java | false | false | 1,667 | java |
// -----------------------------------com.instaclustr.provisioningapi.Bundle.java-----------------------------------
// https://github.com/FasterXML/jackson
package com.instaclustr.provisioningapi;
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({
"bundle",
"version",
"options"
})
public class Bundle {
@JsonProperty("bundle")
private String bundle;
@JsonProperty("version")
private String version;
@JsonProperty("options")
private Options options;
@JsonIgnore
private Map<String, Object> additionalProperties = new HashMap<String, Object>();
@JsonProperty("bundle")
public String getBundle() {
return bundle;
}
@JsonProperty("bundle")
public void setBundle(String bundle) {
this.bundle = bundle;
}
@JsonProperty("version")
public String getVersion() {
return version;
}
@JsonProperty("version")
public void setVersion(String version) {
this.version = version;
}
@JsonProperty("options")
public Options getOptions() {
return options;
}
@JsonProperty("options")
public void setOptions(Options options) {
this.options = options;
}
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
| [
"noreply@github.com"
] | instaclustr.noreply@github.com |
e79a563801d18c19d277caf15733749d05b9f616 | c4e2155ccd84d7853edb95df8043cf60c6bf2ab8 | /Batistela_1Trimestre/03-08/ClienteConta/src/sample/model/Conta.java | 16bb014364e3f5b66fd00d569b7f42198859eeb2 | [] | no_license | blackkseaw/Modulo_Trimestre1_2021 | 09ebf989f1c7a692073e31ece8dfd2a34cd7d7a2 | 2b8835a17a4aa2eb5cc5e914dad8dfdc12ac60df | refs/heads/master | 2023-04-16T06:32:01.193609 | 2021-04-25T15:35:16 | 2021-04-25T15:35:16 | 361,466,824 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,908 | java | package sample.model;
public class Conta {
//atributos
private double saldo;
private double limite;
private int numeroDaConta;
private int numeroDaAgencia;
//constante
private static final int LIMITE = 200;
//getters e setters
public Conta(int numeroDaConta, int numeroDaAgencia){
this.numeroDaAgencia = numeroDaAgencia;
this.numeroDaConta = numeroDaConta;
this.saldo = 0;
this.limite = LIMITE;
}
public int getNumeroDaAgencia(){
return this.numeroDaAgencia;
}
public void setNumeroDaAgencia(int numeroDaAgencia){
this.numeroDaAgencia = numeroDaAgencia;
}
public int getNumeroDaConta(){
return this.numeroDaConta;
}
public void setNumeroDaConta(int numeroDaConta){
this.numeroDaConta = numeroDaConta;
}
public double getSaldo(){
return this.saldo;
}
public void depositar(double valor){
if (this.limite < LIMITE){
if (valor <= this.limite ){
this.limite += valor;
} else {
this.limite = LIMITE;
this.saldo = valor - LIMITE;
}
} else {
this.saldo += valor;
}
}
public boolean sacar(double valor){
if ((this.saldo + this.limite) >= valor){
if(this.saldo == 0){
this.limite -= valor;
} else {
this.saldo -= valor;
}
return true;
} else {
return false;
}
}
public double getLimite(){
return this.limite;
}
@Override
public String toString() {
return "Conta: " +
"saldo: " + saldo +
", limite: " + limite +
", Número da Conta: " + numeroDaConta +
", Número da Agencia: " + numeroDaAgencia;
}
} | [
"blackkseaw@gmail.com"
] | blackkseaw@gmail.com |
207418ee263d93992015acfeb7fa3fe43d4b75fb | ea282cc70de0f867f671a71fc515cc7641d3d3fe | /src/xfuzzy/xfsg/XfsgInOrderMemFunc.java | 2b5e2637d928428fcfd2b7733d933a7599734d31 | [
"MIT"
] | permissive | dayse/gesplan | aff1cc1e38ec22231099063592648674d77b575d | 419ee1dcad2fa96550c99032928e9ea30e7da7cd | refs/heads/master | 2021-01-23T07:03:23.606901 | 2014-08-12T14:38:26 | 2014-08-12T14:38:26 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 7,183 | java | //--------------------------------------------------------------------------------//
// COPYRIGHT NOTICE //
//--------------------------------------------------------------------------------//
// Copyright (c) 2012, Instituto de Microelectronica de Sevilla (IMSE-CNM) //
// //
// All rights reserved. //
// //
// Redistribution and use in source and binary forms, with or without //
// modification, are permitted provided that the following conditions are met: //
// //
// * Redistributions of source code must retain the above copyright notice, //
// this list of conditions and the following disclaimer. //
// //
// * 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. //
// //
// * Neither the name of the IMSE-CNM 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 HOLDERS 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 xfuzzy.xfsg;
import xfuzzy.lang.*;
import java.util.*;
/**
* Clase que gestiona la lista ordenada de funciones de pertenencia
* (similar a xfvhdl/XfvhdlInOrderParamMemFunc)
*
* @author Jesús Izquierdo Tena
*/
public class XfsgInOrderMemFunc {
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
// ATRIBUTOS PRIVADOS DE LA CLASE
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
private List<LinguisticLabel> mf_sorted;
private LinguisticLabel[] tmp;
private Variable v;
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
// CONSTRUCTOR DE LA CLASE
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/**
* Constructor de XfsgInOrderParamMemFunc
*/
public XfsgInOrderMemFunc(Variable v) {
this.mf_sorted = new ArrayList<LinguisticLabel>();
this.tmp = v.getType().getParamMembershipFunctions();
if (tmp.length == 0)
this.tmp = v.getType().getFamiliarMembershipFunctions();
this.v = v;
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
// MÉTO_DOS PUBLICOS DE LA CLASE
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++//
/**
* Método que devuelve la lista de funciones de pertenencia
*
* @return Lista que contiene las funciones de pertenencia
*/
public List<LinguisticLabel> getInOrderMemFunc() {
return mf_sorted;
}
/**
* Método que devuelve la variable de entrada
*
* @return La variable de entrada
*/
public Variable getVariable() {
return v;
}
/**
* Método que devuelve el número de funciones de pertenencia
*
* @return Número de funciones de pertenencia
*/
public int getSize() {
return mf_sorted.size();
}
/**
* Método que devuelve la función de pertenencia indexada por i
*
* @return Función de pertenencia i
*/
public LinguisticLabel getMemFunc(int i) {
return mf_sorted.get(i);
}
public LinguisticLabel getMemFunc2(int i) {
return tmp[i];
}
/**
* Método que devuelve la posición en la lista de una función de pertenencia
* dada.
*
* @param mf
* Función de pertenencia de la que queremos saber su posición
* @return Índice de la funcion de pertenencia dentro de la lista
*/
public int getIndex(LinguisticLabel mf) {
int index = -1;
boolean enc = false;
LinguisticLabel aux;
for (int i = 0; i < mf_sorted.size() && !enc; i++) {
aux = mf_sorted.get(i);
if (aux.equals(mf.getLabel())) {
index = i;
enc = true;
}
}
return index;
}
/**
*
* Método que ordena la lista de funciones de pertenencia
*/
public List<LinguisticLabel> sort() {
boolean enc = false;
for (int i = 0; i < tmp.length; i++) {
if (mf_sorted.size() == 0) {
mf_sorted.add(tmp[i]);
enc = true;
}
for (int j = 1; j <= mf_sorted.size() && !enc; j++) {
double a, b;
a = opMemFuncParameter(mf_sorted.get(j - 1), "min");
b = opMemFuncParameter(tmp[i], "min");
if (a > b) {
mf_sorted.add(j - 1, tmp[i]);
enc = true;
}
}
if (!enc) {
mf_sorted.add(tmp[i]);
}
enc = false;
}
return mf_sorted;
}
/**
* Método que devuelve el valor del menor parámetro de una función de
* pertenencia si se le pasa "min" o el máximo si se le pasa "max" cuando la
* función de pertenencia es libre. Si la función de pertenencia pertenece a
* una familia se devuelve el índice de dicha función dentro de la familia.
*
* @param p
* Función de pertenencia de la que queremos saber su valor
* máximo o mínimo
* @param op
* Cadena "max" si buscamos el valor máximo o "min" si buscamos
* el mínimo
* @return Valor buscado
*/
public double opMemFuncParameter(LinguisticLabel p, String op) {
double res;
if (p instanceof ParamMemFunc) {
double param[] = p.get();
res = param[0];
if (op.equalsIgnoreCase("min")) {
for (int i = 1; i < param.length; i++) {
if (param[i] < res)
res = param[i];
}
} else if (op.equalsIgnoreCase("max")) {
for (int i = 1; i < param.length; i++) {
if (param[i] > res)
res = param[i];
}
}
} else {
res = ((FamiliarMemFunc) p).getIndex();
}
return res;
}
}
| [
"felipe.arruda.pontes@gmail.com"
] | felipe.arruda.pontes@gmail.com |
161e6213792d56a582311745470f9f98ad170947 | da8dffd7c009f731bcc95eef0ea0d9dec491989e | /src/main/java/pl/wilanowskiartur/springbootwebsecurity/SpringBootWebSecurityApplication.java | 542650631d3cc4e6e737481354ae71342964d9f7 | [] | no_license | ArturWilanowski/spring-boot-web-security | 8a2d8a15f58307de50acb3eaaf6caf105dcc3822 | e6383736adf7cb1901eb2c755e69d33217eba041 | refs/heads/master | 2021-05-02T13:24:20.832430 | 2018-02-08T12:44:20 | 2018-02-08T12:44:20 | 120,759,431 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 362 | java | package pl.wilanowskiartur.springbootwebsecurity;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SpringBootWebSecurityApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootWebSecurityApplication.class, args);
}
}
| [
"arturwilanowski@gmail.com"
] | arturwilanowski@gmail.com |
a479fd7a0e23f190475a92da2bdef2af64dc57d6 | 3901c526aa4ac0f3e08a47cafa749c4fe6e014bf | /app/src/main/java/com/pulseapp/android/floatingbutton/TouchDelegateGroup.java | e04b1720fe7cb2068ca889dbd4452e014aaac975 | [] | no_license | dharmendrahike/Camera | 574d27ac4d3315bdebe7218ae9475610b3626042 | 60a6bdc7ea8bebbba7f937564a29be23dc357629 | refs/heads/master | 2021-08-14T09:41:57.404175 | 2017-11-15T07:36:42 | 2017-11-15T07:36:42 | 110,798,435 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,933 | java | package com.pulseapp.android.floatingbutton;
import android.graphics.Rect;
import android.support.annotation.NonNull;
import android.view.MotionEvent;
import android.view.TouchDelegate;
import android.view.View;
import java.util.ArrayList;
public class TouchDelegateGroup extends TouchDelegate {
private static final Rect USELESS_HACKY_RECT = new Rect();
private final ArrayList<TouchDelegate> mTouchDelegates = new ArrayList<TouchDelegate>();
private TouchDelegate mCurrentTouchDelegate;
private boolean mEnabled;
public TouchDelegateGroup(View uselessHackyView) {
super(USELESS_HACKY_RECT, uselessHackyView);
}
public void addTouchDelegate(@NonNull TouchDelegate touchDelegate) {
mTouchDelegates.add(touchDelegate);
}
public void removeTouchDelegate(TouchDelegate touchDelegate) {
mTouchDelegates.remove(touchDelegate);
if (mCurrentTouchDelegate == touchDelegate) {
mCurrentTouchDelegate = null;
}
}
public void clearTouchDelegates() {
mTouchDelegates.clear();
mCurrentTouchDelegate = null;
}
@Override
public boolean onTouchEvent(@NonNull MotionEvent event) {
if (!mEnabled) return false;
TouchDelegate delegate = null;
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
for (int i = 0; i < mTouchDelegates.size(); i++) {
TouchDelegate touchDelegate = mTouchDelegates.get(i);
if (touchDelegate.onTouchEvent(event)) {
mCurrentTouchDelegate = touchDelegate;
return true;
}
}
break;
case MotionEvent.ACTION_MOVE:
delegate = mCurrentTouchDelegate;
break;
case MotionEvent.ACTION_CANCEL:
case MotionEvent.ACTION_UP:
delegate = mCurrentTouchDelegate;
mCurrentTouchDelegate = null;
break;
}
return delegate != null && delegate.onTouchEvent(event);
}
public void setEnabled(boolean enabled) {
mEnabled = enabled;
}
} | [
"dharmendra@hike.in"
] | dharmendra@hike.in |
01e5415df416ff539f3cda71bd356bcfff7a0d85 | 77e32c263aef1df71e85db1f7b4e54203db73d5a | /app/src/main/java/com/example/testing/myapplication/view/PaintRecyclerView.java | b1d7f91c2be548ed0a7fd3cda137122ae90ce4c7 | [] | no_license | huoqiling/TestApplication | 90adbe1a04320c448a812bc1074bde5944d2db7e | d4d07bdd02b94a4cc20f5b3b6a177159a7a386f8 | refs/heads/master | 2020-03-27T04:50:32.745354 | 2017-02-08T06:06:07 | 2017-02-08T06:06:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,241 | java | package com.example.testing.myapplication.view;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.support.annotation.Nullable;
import android.support.v7.widget.RecyclerView;
import android.util.AttributeSet;
/**
* author: baiiu
* date: on 17/1/18 11:32
* description:
*/
public class PaintRecyclerView extends RecyclerView {
private Paint mPaint;
public PaintRecyclerView(Context context) {
this(context, null);
init(context);
}
public PaintRecyclerView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
init(context);
}
public PaintRecyclerView(Context context, @Nullable AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context);
}
private void init(Context context) {
mPaint = new Paint();
mPaint.setColor(Color.BLUE);
mPaint.setAntiAlias(true);
mPaint.setTextAlign(Paint.Align.CENTER);
mPaint.setTextSize(22);
}
@Override public void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawText("哈哈哈哈", 100, 100, mPaint);
}
}
| [
"baiiu@foxmail.com"
] | baiiu@foxmail.com |
cf01f9dd8c990812a5fabe4eefbb2d23d0651ec8 | 58f872e6d3c5c557fc0f7110e26c44204105a1c9 | /app/src/main/java/com/net/yuesejiaoyou/redirect/ResolverA/interface4/states/Jughstates.java | 02ebb345b6a0deba6654a296fc34ec0288a1d2a0 | [] | no_license | P79N6A/yuese | 32401136adb4911f681db6094b0aa57c46548a06 | 7b71fa1dbbebab051b22b984cb0f3b547341a228 | refs/heads/master | 2020-04-12T18:49:56.344993 | 2018-12-21T08:52:03 | 2018-12-21T08:52:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 100 | java | package com.net.yuesejiaoyou.redirect.ResolverA.interface4.states;
public class Jughstates {
}
| [
"976854315@qq.com"
] | 976854315@qq.com |
e5a3f8bb6667e0ebe73e290d5b02575d67dee4d2 | c81b8923ce1b7f850b92404a7b98bf5ce5947ee6 | /app/src/main/java/com/example/loginapp/GetNearbyPlaces.java | 2eb7d2a6ee0b091532b17ed0a782564025c7e7cd | [] | no_license | KasunSudharaka/Vehicle-Breakdown-Assistant | 45c1086eda15ee6ca8a6e1c694dddebae6aeb042 | 96d2700e0b813172084ea203a4378f67deee60c8 | refs/heads/main | 2023-06-24T13:46:22.183021 | 2023-06-15T21:01:26 | 2023-06-15T21:01:26 | 304,427,328 | 5 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,219 | java | package com.example.loginapp;
import android.os.AsyncTask;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
public class GetNearbyPlaces extends AsyncTask<Object, String, String> {
private String googleplaceData, url;
private GoogleMap mMap;
private Marker fuelMarker;
@Override
protected String doInBackground(Object... objects) {
mMap=(GoogleMap)objects[0];
url=(String)objects[1];
DownloadUrl downloadUrl=new DownloadUrl();
try {
googleplaceData=downloadUrl.ReadTheURL(url);
}
catch (IOException e) {
e.printStackTrace();
}
return googleplaceData;
}
@Override
protected void onPostExecute(String s) {
List<HashMap<String,String>>nearByPlacesList=null;
DataParser dataParser=new DataParser();
nearByPlacesList=dataParser.parse(s);
displayNearbyPlaces(nearByPlacesList);
}
private void displayNearbyPlaces(List<HashMap<String,String>>nearByPlacesList){
for (int i=0;i<nearByPlacesList.size();i++){
MarkerOptions markerOptions=new MarkerOptions();
HashMap<String,String> googleNearbyPlace=nearByPlacesList.get(i);
String nameOfPlace=googleNearbyPlace.get("place_name");
String vicinity=googleNearbyPlace.get("vicinity");
double lat=Double.parseDouble(googleNearbyPlace.get("lat"));
double lng=Double.parseDouble(googleNearbyPlace.get("lng"));
LatLng latLng= new LatLng(lat,lng);
mMap.addMarker(new MarkerOptions().position(latLng).title(nameOfPlace+" : "+vicinity).icon(BitmapDescriptorFactory.fromResource(R.drawable.gas)));
mMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
mMap.animateCamera(CameraUpdateFactory.zoomTo(12));
}
}
}
| [
"kasun.hesh1997@gmail.com"
] | kasun.hesh1997@gmail.com |
792f854a6adda8a46400172eb031f3bce0c36438 | 29cbccef9d3884d5f81580fd6af07ade36b7a176 | /framework/src/java/org/apache/hivemind/service/impl/ConfigurationObjectProvider.java | d9d705d075cb2771600df332446759a2b2efd20c | [
"Apache-2.0"
] | permissive | rsassi/hivemind1 | 848ee0d913f668c69de3bba00060908ddc9305a2 | 5802c535431431a7a576a86e1983c7b523e03491 | refs/heads/branch-1-0 | 2023-06-23T19:49:12.272173 | 2021-07-25T03:46:28 | 2021-07-25T03:46:28 | 389,250,137 | 0 | 0 | null | 2021-07-25T03:46:29 | 2021-07-25T03:20:30 | Java | UTF-8 | Java | false | false | 1,401 | java | // Copyright 2004 The Apache Software Foundation
//
// 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.apache.hivemind.service.impl;
import org.apache.hivemind.Location;
import org.apache.hivemind.internal.Module;
import org.apache.hivemind.service.ObjectProvider;
/**
* Implementation of {@link org.apache.hivemind.service.ObjectProvider}
* mapped to prefix "configuration:" for accessing
* configurations.
*
* @author Howard Lewis Ship
*/
public class ConfigurationObjectProvider implements ObjectProvider
{
/**
* A wrapper around {@link Module#getConfiguration(String)}. The locator is
* interpreteted as a configuration id.
*/
public Object provideObject(
Module contributingModule,
Class propertyType,
String locator,
Location location)
{
return contributingModule.getConfiguration(locator);
}
}
| [
"ahuegen@localhost"
] | ahuegen@localhost |
936c6892d34cca2bc22365b8e25c6ae05f17b94f | 00da725d421abaedd55fe1f50cfab45f5d471565 | /src/etmo/qualityIndicator/hypeHypervolume/HypEFitness.java | 82876eeb28b568a4c269d005a51e2d481230967f | [] | no_license | Asurada2015/MTO-cec2021- | b4dbfb6806df8ddae4105e7c69fe02f1879f595a | c9e0fc581d483ee0821c6b8aa43b3e50299eaf4f | refs/heads/main | 2023-03-20T20:29:18.729843 | 2021-01-28T07:08:21 | 2021-01-28T07:08:21 | 347,603,497 | 1 | 0 | null | 2021-03-14T10:17:25 | 2021-03-14T10:17:25 | null | UTF-8 | Java | false | false | 4,161 | java | package etmo.qualityIndicator.hypeHypervolume;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import etmo.qualityIndicator.hypeHypervolume.Term;
import etmo.util.PseudoRandom;
public class HypEFitness {
public double[] hypeIndicatorSampled(double[][] points, double lowerbound, double upperbound, int param_k,
int nrOfSamples) {
int i, j, k, s;
int popsize = points.length;
int dim = points[0].length;
double[] val = new double[popsize];
double[] rho = new double[param_k + 1];
rho[0] = 0;
for (i = 1; i <= param_k; i++) {
rho[i] = 1.0 / (double) i;
for (j = 1; j <= i - 1; j++)
rho[i] *= (double) (param_k - j) / (double) (popsize - j);
}
int hitstat[] = new int[popsize];
int domCount;
double[] sample = new double[dim];
for (s = 0; s < nrOfSamples; s++) {
for (k = 0; k < dim; k++)
sample[k] = PseudoRandom.randDouble(lowerbound, upperbound);
domCount = 0;
for (i = 0; i < popsize; i++) {
if (weaklyDominates(points[i], sample, dim)) {
domCount++;
if (domCount > param_k)
break;
hitstat[i] = 1;
} else
hitstat[i] = 0;
}
if (domCount > 0 && domCount <= param_k) {
for (i = 0; i < popsize; i++)
if (hitstat[i] == 1)
val[i] += rho[domCount];
}
}
for (i = 0; i < popsize; i++) {
val[i] = val[i] * Math.pow((upperbound - lowerbound), dim) / (double) nrOfSamples;
}
return val;
}
public double[] hypeIndicatorExact(double[][] points, double[] bounds, int k) {
int Ps = points.length - 1;
if (k < 0)
k = Ps;
int actDim = points[0].length - 1;
int[] pvec = new int[Ps + 1];
for (int i = 1; i <= Ps; i++)
pvec[i] = i;
double[] alpha = new double[Ps + 1];
for (int i = 1; i <= k; i++) {
alpha[i] = 1;
for (int j = 1; j <= i - 1; j++)
alpha[i] *= ((double) (k - j) / (Ps - j));
alpha[i] = alpha[i] / i;
}
return hypesub(Ps, points, actDim, bounds, pvec, alpha, k);
}
double[] hypesub(int Ps, double[][] A, int actDim, double[] bounds, int[] pvec, double[] alpha, int k) {
double[] h = new double[Ps + 1];
double[][] S = copy(A);
Term.loc = actDim;
int[] index = sortrows(S);
int[] temp = new int[pvec.length];
for (int i = 1; i < pvec.length; i++)
temp[i] = pvec[index[i]];
pvec = temp;
for (int i = 1; i < S.length; i++) {
double extrusion = 0;
if (i < S.length - 1)
extrusion = S[i + 1][actDim] - S[i][actDim];
else {
// System.out.println(actDim);
extrusion = bounds[actDim] - S[i][actDim];
}
if (actDim == 1) {
if (i > k)
break;
for (int u = 1; u <= i; u++)
h[pvec[u]] = h[pvec[u]] + extrusion * alpha[i];
} else if (extrusion > 0) {
double[] f = hypesub(Ps, getPartMatrix(S, i), actDim - 1, bounds, getPartArray(pvec, i), alpha, k);
for (int w = 1; w <= Ps; w++) {
h[w] = h[w] + extrusion * f[w];
}
}
}
return h;
}
boolean weaklyDominates(double[] point1, double[] point2, int no_objectives) {
boolean better;
int i = 0;
better = true;
while (i < no_objectives && better) {
better = (point1[i] <= point2[i]);
i++;
}
return better;
}
int[] getPartArray(int[] array, int size) {
int out[] = new int[size + 1];
for (int i = 1; i <= size; i++)
out[i] = array[i];
return out;
}
double[][] getPartMatrix(double[][] S, int size) {
double[][] out = new double[size + 1][S[0].length];
for (int i = 1; i <= size; i++) {
for (int j = 1; j < out[0].length; j++)
out[i][j] = S[i][j];
}
return out;
}
int[] sortrows(double[][] T) {
Term[] termArray = new Term[T.length - 1];
for (int i = 0; i < termArray.length; i++) {
termArray[i] = new Term(T[i + 1], i + 1);
}
Arrays.sort(termArray);
int[] index = new int[T.length];
for (int i = 1; i < T.length; i++) {
index[i] = termArray[i - 1].index;
T[i] = termArray[i - 1].data;
}
return index;
}
double[][] copy(double[][] matrix) {
double[][] out = new double[matrix.length][matrix[0].length];
for (int i = 1; i < out.length; i++)
for (int j = 1; j < out[i].length; j++)
out[i][j] = matrix[i][j];
return out;
}
}
| [
"3540365582@qq.com"
] | 3540365582@qq.com |
efae701a3349e06bd5a4b0f910cc9112a76bbef1 | 1578e950ac4c36453996e9aed44f34040d2d83bb | /app/src/main/java/com/wfapp/retrofit/helpermodels/Inventory.java | f9c23241d19557af1e9eb1831c345ee89d57f50d | [] | no_license | Denkata-Iliev/WarframeApp | 4f5c8172e4320a32744df7482aa0ef06d0160391 | 915cbd9c604ab60ced1d34d04bdf65e6851cc883 | refs/heads/master | 2022-05-14T18:47:07.741139 | 2020-04-23T14:49:33 | 2020-04-23T14:49:33 | 257,261,939 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 798 | java |
package com.wfapp.retrofit.helpermodels;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Inventory {
@SerializedName("item")
@Expose
private String item;
@SerializedName("ducats")
@Expose
private Integer ducats;
@SerializedName("credits")
@Expose
private Integer credits;
public String getItem() {
return item;
}
public void setItem(String item) {
this.item = item;
}
public Integer getDucats() {
return ducats;
}
public void setDucats(Integer ducats) {
this.ducats = ducats;
}
public Integer getCredits() {
return credits;
}
public void setCredits(Integer credits) {
this.credits = credits;
}
}
| [
"denislav9711@gmail.com"
] | denislav9711@gmail.com |
552f672217a35926091293a6ca81b1afd14c54c3 | 3bb932947a00b2f77deb1f9294340710f30ed2e0 | /data/comp-changes-client/src/mainclient/interfaceAdded/InterfaceAddedImp.java | f069f625371a7bb0ab73ec0eadcb61cde1f5cebe | [
"MIT"
] | permissive | crossminer/maracas | 17684657b29293d82abe50249798e10312d192d6 | 4cb6fa22d8186d09c3bba6f5da0c548a26d044e1 | refs/heads/master | 2023-03-05T20:34:36.083662 | 2023-02-22T12:21:47 | 2023-02-22T12:21:47 | 175,425,329 | 8 | 0 | null | 2021-02-25T13:19:15 | 2019-03-13T13:21:53 | Java | UTF-8 | Java | false | false | 204 | java | package mainclient.interfaceAdded;
import main.interfaceAdded.IInterfaceAddedMulti;
public class InterfaceAddedImp implements IInterfaceAddedMulti {
@Override
public int mMulti() {
return 0;
}
}
| [
"lina.m8a@gmail.com"
] | lina.m8a@gmail.com |
ce49dd8a3f1f0c5b35052102b9b9473b2dacc79a | d587602b0663ca583104c0b93c380377d91e1a42 | /src/cn/sdfi/tools/Const.java | 7acdc72677fb25b7bece7b31e871c65a8d4dd1dd | [] | no_license | huangqiqing123/testlab | 37ba0f01b0eaded698a10ce6313fb06aa0e8a582 | 2022746fdfe15e04711c56e2f8d0be2af9403562 | refs/heads/master | 2021-07-03T18:34:31.547652 | 2017-09-25T01:40:12 | 2017-09-25T01:40:12 | 104,690,395 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,618 | java | package cn.sdfi.tools;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpSession;
import cn.sdfi.user.bean.User;
public class Const {
public static final String CONTENT_TYPE = "text/html;charset=GBK";
public static final String CHARACTOR_ENCODING = "GBK";
private static Map<String, Map<String,String>> enumMap = null;//用于存储加载的枚举值
private static Map<String, User> onlineUserMap = null;//用于存储在线用户
private static Map<String, HttpSession> onlineUserSessionMap = null;//用于存储在线用户的session
private static List<String> canPrintDocs = new ArrayList<String>();//可打印文档类型列表
public static boolean is_print_system_out = false;
public static List<String> getCanPrintDocs() {
return canPrintDocs;
}
public static void setCanPrintDocs(List<String> canPrintDocs) {
Const.canPrintDocs = canPrintDocs;
}
public static void setEnumMap(Map<String, Map<String, String>> enumMap) {
Const.enumMap = enumMap;
}
public static Map<String, Map<String,String>> getEnumMap() {
return enumMap;
}
public static Map<String, User> getOnlineUserMap() {
return onlineUserMap;
}
public static void setOnlineUserMap(Map<String, User> onlineUserMap) {
Const.onlineUserMap = onlineUserMap;
}
public static Map<String, HttpSession> getOnlineUserSessionMap() {
return onlineUserSessionMap;
}
public static void setOnlineUserSessionMap(
Map<String, HttpSession> onlineUserSessionMap) {
Const.onlineUserSessionMap = onlineUserSessionMap;
}
}
| [
"huangqiqing@huangqiqing.home.langchao.com"
] | huangqiqing@huangqiqing.home.langchao.com |
dc3242fbf975b765de05c30da5a10415cbc62032 | 61c86ef495c474caa4fefc68ae549be7be619060 | /day07-code/src/com/wendy/day07/demo02/Demo02Anonymous.java | 4bb2d70ba8f7bdd6240a96d2f7787a289b74ba13 | [] | no_license | Huihuihuiwan/-Java-idea- | 619c53b7cff2af4137dcaa3b15973215ad3b6dac | b32ea8ec1fdabdb36544821c806660a2eb12a702 | refs/heads/master | 2022-07-17T09:57:31.397066 | 2020-04-16T12:18:47 | 2020-04-16T12:18:47 | 248,991,410 | 1 | 0 | null | 2022-06-21T03:02:04 | 2020-03-21T14:20:56 | Java | UTF-8 | Java | false | false | 1,083 | java | package com.wendy.day07.demo02;
import java.util.Scanner;
/**
* Author : wendy_wan
* Created : 2020/3/3 17:29
*/
public class Demo02Anonymous {
public static void main(String[] args) {
//普通使用方法
// Scanner sc = new Scanner(System.in);
// int num = sc.nextInt();
//匿名对象的方式
// int num = new Scanner(System.in).nextInt();
// System.out.println("输入的是: " + num);
//使用一般写法传入参数
// Scanner sc = new Scanner(System.in);
// methodParam(sc);
//使用匿名对象来进行传参
// methodParam(new Scanner(System.in));
Scanner sc = methodReturn();
int num = sc.nextInt();
System.out.println("输入的是: " + num);
}
public static void methodParam(Scanner sc){
int num = sc.nextInt();
System.out.println("输入的是:" + num);
}
public static Scanner methodReturn(){
// Scanner sc = new Scanner(System.in);
// return sc;
return new Scanner(System.in);
}
}
| [
"542996083@qq.com"
] | 542996083@qq.com |
4f947091000ba6b977aa28d1e6ca71b1895b9ef8 | c6650c2b63e20a74147f3a4e503324f68918150f | /CSV.java | 14fa99964ecfad9cf7d3a85e46bea95adbe81276 | [] | no_license | JoshuaKornmayer/BankAccountCSVrReader | 810ea5fcc371aa0d7aa441164156e7f56b1bdcd7 | 4027937e14fc0f17a23c934ed20b0c50551889f9 | refs/heads/master | 2022-10-05T18:40:55.241421 | 2020-06-08T15:23:48 | 2020-06-08T15:23:48 | 266,192,427 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 960 | java |
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;
public class CSV {
// This function will read data from a CSV file and return a list
public static List<String[]> read(String file) {
List<String[]> data = new LinkedList<String[]>();
String dataRow;
try {
BufferedReader br = new BufferedReader(new FileReader(file));
while ((dataRow = br.readLine()) != null) {
String[] dataRecords = dataRow.split(",");
data.add(dataRecords);
}
} catch (FileNotFoundException e) {
System.out.println("Could not find the file");
e.printStackTrace();
} catch (IOException e) {
System.out.println("Could not read the file");
e.printStackTrace();
}
return data;
}
} | [
"jbkornmayer80@gmail.com"
] | jbkornmayer80@gmail.com |
1dceb3b74509195601bef9f083e87766d2733088 | 20eb62855cb3962c2d36fda4377dfd47d82eb777 | /newEvaluatedBugs/Jsoup_7_buggy/mutated/373/Token.java | 1062b5ad206d9dd683b0e2097c3c57a741cafebd | [] | no_license | ozzydong/CapGen | 356746618848065cce4e253e5d3c381baa85044a | 0ba0321b6b1191443276021f1997833342f02515 | refs/heads/master | 2023-03-18T20:12:02.923428 | 2020-08-21T03:08:28 | 2020-08-21T03:08:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,594 | java | package org.jsoup.parser;
import org.jsoup.helper.Validate;
import org.jsoup.nodes.Attribute;
import org.jsoup.nodes.Attributes;
import org.jsoup.nodes.BooleanAttribute;
/**
* Parse tokens for the Tokeniser.
*/
abstract class Token {
TokenType type;
private Token() {
}
String tokenType() {
return this.getClass().getSimpleName();
}
/**
* Reset the data represent by this token, for reuse. Prevents the need to create transfer objects for every
* piece of data, which immediately get GCed.
*/
abstract Token reset();
static void reset(StringBuilder sb) {
if (sb != null) {
sb.delete(0, sb.length());
}
}
static final class Doctype extends Token {
final StringBuilder name = new StringBuilder();
String pubSysKey = null;
final StringBuilder publicIdentifier = new StringBuilder();
final StringBuilder systemIdentifier = new StringBuilder();
boolean forceQuirks = false;
Doctype() {
type = TokenType.Doctype;
}
@Override
Token reset() {
reset(name);
pubSysKey = null;
reset(publicIdentifier);
reset(systemIdentifier);
forceQuirks = false;
return this;
}
String getName() {
return name.toString();
}
String getPubSysKey() {
return pubSysKey;
}
String getPublicIdentifier() {
return publicIdentifier.toString();
}
public String getSystemIdentifier() {
return systemIdentifier.toString();
}
public boolean isForceQuirks() {
return forceQuirks;
}
}
static abstract class Tag extends Token {
protected String tagName;
protected String normalName; // lc version of tag name, for case insensitive tree build
private String pendingAttributeName; // attribute names are generally caught in one hop, not accumulated
private StringBuilder pendingAttributeValue = new StringBuilder(); // but values are accumulated, from e.g. & in hrefs
private String pendingAttributeValueS; // try to get attr vals in one shot, vs Builder
private boolean hasEmptyAttributeValue = false; // distinguish boolean attribute from empty string value
private boolean hasPendingAttributeValue = false;
boolean selfClosing = false;
Attributes attributes; // start tags get attributes on construction. End tags get attributes on first new attribute (but only for parser convenience, not used).
@Override
Tag reset() {
tagName = null;
normalName = null;
pendingAttributeName = null;
reset(pendingAttributeValue);
pendingAttributeValueS = null;
hasEmptyAttributeValue = false;
hasPendingAttributeValue = false;
selfClosing = false;
attributes = null;
return this;
}
final void newAttribute() {
if (attributes == null)
attributes = new Attributes();
if (pendingAttributeName != null) {
// the tokeniser has skipped whitespace control chars, but trimming could collapse to empty for other control codes, so verify here
Attribute attribute;
if (hasPendingAttributeValue)
attribute = new Attribute(pendingAttributeName,
pendingAttributeValue.length() > 0 ? pendingAttributeValue.toString() : pendingAttributeValueS);
else if (hasEmptyAttributeValue)
attribute = new Attribute(pendingAttributeName, "");
else
attribute = new BooleanAttribute(pendingAttributeName);
attributes.put(attribute);
}
pendingAttributeName = null;
hasEmptyAttributeValue = false;
hasPendingAttributeValue = false;
reset(pendingAttributeValue);
pendingAttributeValueS = null;
}
final void finaliseTag() {
// finalises for emit
if (pendingAttributeName != null) {
// todo: check if attribute name exists; if so, drop and error
org.jsoup.parser.Token.reset(pendingAttributeValue);
newAttribute();
}
}
final String name() { // preserves case, for input into Tag.valueOf (which may drop case)
Validate.isFalse(tagName == null || tagName.length() == 0);
return tagName;
}
final String normalName() { // loses case, used in tree building for working out where in tree it should go
return normalName;
}
final Tag name(String name) {
tagName = name;
normalName = name.toLowerCase();
return this;
}
final boolean isSelfClosing() {
return selfClosing;
}
@SuppressWarnings({"TypeMayBeWeakened"})
final Attributes getAttributes() {
return attributes;
}
// these appenders are rarely hit in not null state-- caused by null chars.
final void appendTagName(String append) {
tagName = tagName == null ? append : tagName.concat(append);
normalName = tagName.toLowerCase();
}
final void appendTagName(char append) {
appendTagName(String.valueOf(append));
}
final void appendAttributeName(String append) {
pendingAttributeName = pendingAttributeName == null ? append : pendingAttributeName.concat(append);
}
final void appendAttributeName(char append) {
appendAttributeName(String.valueOf(append));
}
final void appendAttributeValue(String append) {
ensureAttributeValue();
if (pendingAttributeValue.length() == 0) {
pendingAttributeValueS = append;
} else {
pendingAttributeValue.append(append);
}
}
final void appendAttributeValue(char append) {
ensureAttributeValue();
pendingAttributeValue.append(append);
}
final void appendAttributeValue(char[] append) {
ensureAttributeValue();
pendingAttributeValue.append(append);
}
final void appendAttributeValue(int[] appendCodepoints) {
ensureAttributeValue();
for (int codepoint : appendCodepoints) {
pendingAttributeValue.appendCodePoint(codepoint);
}
}
final void setEmptyAttributeValue() {
hasEmptyAttributeValue = true;
}
private void ensureAttributeValue() {
hasPendingAttributeValue = true;
// if on second hit, we'll need to move to the builder
if (pendingAttributeValueS != null) {
pendingAttributeValue.append(pendingAttributeValueS);
pendingAttributeValueS = null;
}
}
}
final static class StartTag extends Tag {
StartTag() {
super();
attributes = new Attributes();
type = TokenType.StartTag;
}
@Override
Tag reset() {
super.reset();
attributes = new Attributes();
// todo - would prefer these to be null, but need to check Element assertions
return this;
}
StartTag nameAttr(String name, Attributes attributes) {
this.tagName = name;
this.attributes = attributes;
normalName = tagName.toLowerCase();
return this;
}
@Override
public String toString() {
if (attributes != null && attributes.size() > 0)
return "<" + name() + " " + attributes.toString() + ">";
else
return "<" + name() + ">";
}
}
final static class EndTag extends Tag{
EndTag() {
super();
type = TokenType.EndTag;
}
@Override
public String toString() {
return "</" + name() + ">";
}
}
final static class Comment extends Token {
final StringBuilder data = new StringBuilder();
boolean bogus = false;
@Override
Token reset() {
reset(data);
bogus = false;
return this;
}
Comment() {
type = TokenType.Comment;
}
String getData() {
return data.toString();
}
@Override
public String toString() {
return "<!--" + getData() + "-->";
}
}
final static class Character extends Token {
private String data;
Character() {
super();
type = TokenType.Character;
}
@Override
Token reset() {
data = null;
return this;
}
Character data(String data) {
this.data = data;
return this;
}
String getData() {
return data;
}
@Override
public String toString() {
return getData();
}
}
final static class EOF extends Token {
EOF() {
type = Token.TokenType.EOF;
}
@Override
Token reset() {
return this;
}
}
final boolean isDoctype() {
return type == TokenType.Doctype;
}
final Doctype asDoctype() {
return (Doctype) this;
}
final boolean isStartTag() {
return type == TokenType.StartTag;
}
final StartTag asStartTag() {
return (StartTag) this;
}
final boolean isEndTag() {
return type == TokenType.EndTag;
}
final EndTag asEndTag() {
return (EndTag) this;
}
final boolean isComment() {
return type == TokenType.Comment;
}
final Comment asComment() {
return (Comment) this;
}
final boolean isCharacter() {
return type == TokenType.Character;
}
final Character asCharacter() {
return (Character) this;
}
final boolean isEOF() {
return type == TokenType.EOF;
}
enum TokenType {
Doctype,
StartTag,
EndTag,
Comment,
Character,
EOF
}
}
| [
"justinwm@163.com"
] | justinwm@163.com |
3109d4282ef61a0729aa56ef1841bd3eb861429d | 5e723b415f63a571aee8b1d6f217e84aec2102c0 | /standalone/src/main/java/org/jboss/as/console/client/domain/groups/ServerGroupPresenter.java | 7b14beb5ccb215c814069951a73a72e9e3ced25c | [] | no_license | yongyang/as7-console | dc845b1829c6f19f0ecdea62997923ada8c7fbf7 | 0b0ee25b3246c7ee12b888ccf9d0b594bb69c994 | refs/heads/master | 2021-01-17T23:12:22.450022 | 2011-04-21T13:18:33 | 2011-04-21T13:18:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,709 | java | /*
* JBoss, Home of Professional Open Source
* Copyright <YEAR> Red Hat Inc. and/or its affiliates and other contributors
* as indicated by the @author tags. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* 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,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
package org.jboss.as.console.client.domain.groups;
import com.allen_sauer.gwt.log.client.Log;
import com.google.gwt.core.client.Scheduler;
import com.google.gwt.event.logical.shared.CloseEvent;
import com.google.gwt.event.logical.shared.CloseHandler;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.user.client.History;
import com.google.gwt.user.client.ui.PopupPanel;
import com.google.inject.Inject;
import com.gwtplatform.mvp.client.Presenter;
import com.gwtplatform.mvp.client.annotations.NameToken;
import com.gwtplatform.mvp.client.annotations.ProxyCodeSplit;
import com.gwtplatform.mvp.client.proxy.Place;
import com.gwtplatform.mvp.client.proxy.PlaceRequest;
import com.gwtplatform.mvp.client.proxy.Proxy;
import com.gwtplatform.mvp.client.proxy.RevealContentEvent;
import org.jboss.as.console.client.Console;
import org.jboss.as.console.client.core.NameTokens;
import org.jboss.as.console.client.core.SuspendableView;
import org.jboss.as.console.client.core.message.Message;
import org.jboss.as.console.client.domain.events.StaleModelEvent;
import org.jboss.as.console.client.domain.model.Jvm;
import org.jboss.as.console.client.domain.model.ProfileRecord;
import org.jboss.as.console.client.domain.model.ProfileStore;
import org.jboss.as.console.client.domain.model.ServerGroupRecord;
import org.jboss.as.console.client.domain.model.ServerGroupStore;
import org.jboss.as.console.client.domain.model.SimpleCallback;
import org.jboss.as.console.client.widgets.DefaultWindow;
import org.jboss.as.console.client.widgets.LHSHighlightEvent;
import org.jboss.as.console.client.widgets.forms.PropertyBinding;
import org.jboss.as.console.client.widgets.forms.PropertyMetaData;
import java.util.List;
import java.util.Map;
/**
* Maintains a single server group.
*
* @author Heiko Braun
* @date 2/16/11
*/
public class ServerGroupPresenter
extends Presenter<ServerGroupPresenter.MyView, ServerGroupPresenter.MyProxy> {
private ServerGroupStore serverGroupStore;
private ProfileStore profileStore;
private List<ServerGroupRecord> serverGroups;
private ServerGroupRecord selectedRecord;
private DefaultWindow window;
private String groupName;
@ProxyCodeSplit
@NameToken(NameTokens.ServerGroupPresenter)
public interface MyProxy extends Proxy<ServerGroupPresenter>, Place {
}
public interface MyView extends SuspendableView {
void setPresenter(ServerGroupPresenter presenter);
void setSelectedRecord(ServerGroupRecord record);
void setEnabled(boolean isEnabled);
void updateProfiles(List<ProfileRecord> result);
void updateSocketBindings(List<String> result);
}
@Inject
public ServerGroupPresenter(
EventBus eventBus, MyView view, MyProxy proxy,
ServerGroupStore serverGroupStore,
ProfileStore profileStore,
PropertyMetaData propertyMeta) {
super(eventBus, view, proxy);
this.serverGroupStore = serverGroupStore;
this.profileStore = profileStore;
}
@Override
protected void onBind() {
super.onBind();
getView().setPresenter(this);
}
@Override
public void prepareFromRequest(PlaceRequest request) {
this.groupName = request.getParameter("name", null);
final String action = request.getParameter("action", null);
if("new".equals(action))
{
launchNewGroupDialoge();
}
}
@Override
protected void onReset() {
super.onReset();
profileStore.loadProfiles(new SimpleCallback<List<ProfileRecord>>() {
@Override
public void onSuccess(List<ProfileRecord> result) {
getView().updateProfiles(result);
}
});
serverGroupStore.loadSocketBindingGroupNames(new SimpleCallback<List<String>>() {
@Override
public void onSuccess(List<String> result) {
getView().updateSocketBindings(result);
}
});
refreshServerGroups();
}
private void refreshServerGroups() {
serverGroupStore.loadServerGroups(new SimpleCallback<List<ServerGroupRecord>>() {
@Override
public void onSuccess(List<ServerGroupRecord> result) {
serverGroups = result;
if(groupName!=null)
{
for(ServerGroupRecord record : result)
{
if(groupName.equals(record.getGroupName()))
{
selectedRecord = record;
break;
}
}
}
else
{
Log.warn("Parameter 'name' missing, fallback to default group");
groupName = result.get(0).getGroupName();
selectedRecord = result.get(0);
Scheduler.get().scheduleDeferred(new Scheduler.ScheduledCommand() {
@Override
public void execute() {
getEventBus().fireEvent(
new LHSHighlightEvent(null, selectedRecord.getGroupName(), "groups")
);
}
});
}
loadServerGroup(selectedRecord.getGroupName());
getView().setEnabled(false);
}
});
}
private void loadServerGroup(String name)
{
serverGroupStore.loadServerGroup(name, new SimpleCallback<ServerGroupRecord>() {
@Override
public void onSuccess(ServerGroupRecord result) {
getView().setSelectedRecord(result);
}
});
}
@Override
protected void revealInParent() {
RevealContentEvent.fire(getEventBus(), ServerGroupMgmtPresenter.TYPE_MainContent, this);
}
// ----------------------------------------------------------------
public void editCurrentRecord() {
getView().setEnabled(true);
}
public void deleteCurrentRecord() {
if(selectedRecord!=null)
{
final ServerGroupRecord deletion = selectedRecord;
serverGroupStore.delete(deletion, new SimpleCallback<Boolean>() {
@Override
public void onSuccess(Boolean wasSuccessful) {
if(wasSuccessful)
{
Console.MODULES.getMessageCenter().notify(
new Message("Deleted server group "+deletion.getGroupName())
);
getEventBus().fireEvent(new StaleModelEvent(StaleModelEvent.SERVER_GROUPS));
}
else
{
Console.MODULES.getMessageCenter().notify(
new Message("Failed to delete "+deletion.getGroupName(), Message.Severity.Error)
);
}
}
});
}
// switch to alternate record instead
serverGroupStore.loadServerGroups(new SimpleCallback<List<ServerGroupRecord>>() {
@Override
public void onSuccess(List<ServerGroupRecord> result) {
if(result.size()>0)
workOn(serverGroups.get(0));
}
});
}
public void createNewGroup(final ServerGroupRecord newGroup) {
// close popup
if(window!=null && window.isShowing())
{
window.hide();
}
getView().setEnabled(false);
serverGroupStore.create(newGroup, new SimpleCallback<Boolean>() {
@Override
public void onSuccess(Boolean success) {
if (success) {
Console.MODULES.getMessageCenter().notify(
new Message("Created " + newGroup.getGroupName(), Message.Severity.Info)
);
getEventBus().fireEvent(new StaleModelEvent(StaleModelEvent.SERVER_GROUPS));
workOn(newGroup);
} else {
Console.MODULES.getMessageCenter().notify(
new Message("Failed to create " + newGroup.getGroupName(), Message.Severity.Error)
);
}
}
});
}
public void onSaveChanges(final String name, Map<String,Object> changeset) {
getView().setEnabled(false);
if(changeset.size()>0)
{
serverGroupStore.save(name, changeset, new SimpleCallback<Boolean>() {
@Override
public void onSuccess(Boolean wasSuccessful) {
if(wasSuccessful)
{
Console.info("Modified server-group "+name);
refreshServerGroups();
}
else
{
Console.error("Failed to modify server-group "+name);
}
}
});
}
else
{
Console.warning("No changes applied!");
}
}
private void workOn(ServerGroupRecord record) {
this.selectedRecord = record;
getView().setSelectedRecord(selectedRecord);
}
public void launchNewGroupDialoge() {
selectedRecord = null;
groupName = null;
window = new DefaultWindow("Create Server Group");
window.setWidth(320);
window.setHeight(240);
window.addCloseHandler(new CloseHandler<PopupPanel>() {
@Override
public void onClose(CloseEvent<PopupPanel> event) {
}
});
window.setWidget(
new NewServerGroupWizard(this, serverGroups).asWidget()
);
window.setGlassEnabled(true);
window.center();
}
public void closeDialoge()
{
if(window!=null) window.hide();
}
public void onSaveJvm(final String groupName, String jvmName, Map<String, Object> changedValues) {
System.out.println(groupName+">"+changedValues);
if(changedValues.size()>0)
{
serverGroupStore.saveJvm(groupName, jvmName, changedValues, new SimpleCallback<Boolean>() {
@Override
public void onSuccess(Boolean success) {
if(success)
{
Console.info("Saved JVM settings");
loadServerGroup(groupName);
}
else
Console.error("Failed to saved JVM settings");
}
});
}
}
public void onCreateJvm(final String groupName, Jvm jvm) {
serverGroupStore.createJvm(groupName, jvm, new SimpleCallback<Boolean>() {
@Override
public void onSuccess(Boolean success) {
if(success)
{
Console.info("Saved JVM settings");
loadServerGroup(groupName);
}
else
Console.error("Failed to saved JVM settings");
}
});
}
public void onDeleteJvm(final String groupName, Jvm editedEntity) {
serverGroupStore.removeJvm(groupName, editedEntity, new SimpleCallback<Boolean>() {
@Override
public void onSuccess(Boolean result) {
loadServerGroup(groupName);
}
});
}
}
| [
"ike.braun@googlemail.com"
] | ike.braun@googlemail.com |
9651eeb88bfa0259698dea2eff34097c898edc24 | 0ea370abe122c4b82aa222eef745150bea274164 | /src/test/java/com/person/student/manage/controller/ScoreControllerTest.java | 0b8f0d20a2ef0058cd89efbde416c8e2083299ff | [] | no_license | yupeiw/student-manage | 6a18c9914bda3d4975697959cb94552ab667847c | f4afb4f34cf5d6afd2201ea486e9e29be0c93fbf | refs/heads/master | 2023-08-23T17:35:04.410355 | 2021-10-20T02:50:34 | 2021-10-20T02:50:34 | 415,805,821 | 1 | 0 | null | 2021-10-12T06:16:11 | 2021-10-11T06:35:30 | Java | UTF-8 | Java | false | false | 2,013 | java | package com.person.student.manage.controller;
import com.person.student.manage.MainApplication;
import lombok.extern.slf4j.Slf4j;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.MvcResult;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.web.context.WebApplicationContext;
/**
* ScoreControllerTest
*
* @author: yupei
* @date: 2021-10-15 19:40:29
**/
@RunWith(SpringRunner.class)
@SpringBootTest(classes = MainApplication.class)
@Slf4j
public class ScoreControllerTest {
@Autowired
private WebApplicationContext webApplicationContext;
private MockMvc mockMvc;
@Before
public void setUp() throws Exception {
//MockMvcBuilders.webAppContextSetup(WebApplicationContext context):
//指定WebApplicationContext,将会从该上下文获取相应的控制器并得到相应的MockMvc;
mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
}
@Test
public void queryScore() throws Exception {
String params = "{\"studentNo\":\"2020030417\"}";
MvcResult mvcResult = mockMvc.perform(MockMvcRequestBuilders.post("/score/query")
.content(params)
.contentType(MediaType.APPLICATION_JSON_UTF8_VALUE)
.accept(MediaType.APPLICATION_JSON_UTF8_VALUE))
.andReturn();
log.info("result:{}",mvcResult.getResponse().getContentAsString());
int status = mvcResult.getResponse().getStatus();
Assert.assertEquals(200, status);
}
}
| [
"yup@133.cn"
] | yup@133.cn |
6daedb2f28e00f30ffb17b3cff26e7d032ed9108 | 8866bf32b410468e4bb155acbd0cdbbab8fb8971 | /common/src/main/java/com/serenegiant/widget/CheckableLinearLayout.java | 31795a7f6728de4410b73589380ff5690faf662a | [] | no_license | LongyueChang/SRCommon | b2772ed755b7fa9fa1705b4e0feeac02315953b6 | 34f456fd1a9cc7691cff2e5d1f9601e40ebd3477 | refs/heads/master | 2022-11-23T13:09:41.920951 | 2020-07-17T05:28:51 | 2020-07-17T05:28:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,851 | java | /* */ package com.serenegiant.widget;
/* */
/* */ import android.content.Context;
/* */ import android.util.AttributeSet;
/* */ import android.view.MotionEvent;
/* */ import android.view.View;
/* */ import android.widget.Checkable;
/* */ import android.widget.LinearLayout;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class CheckableLinearLayout
/* */ extends LinearLayout
/* */ implements Checkable, Touchable
/* */ {
/* */ private boolean mChecked;
/* 35 */ private static final int[] CHECKED_STATE_SET = new int[] { 16842912 };
/* */ private float mTouchX;
/* */
/* 38 */ public CheckableLinearLayout(Context context) { this(context, null); }
/* */
/* */ private float mTouchY;
/* */
/* 42 */ public CheckableLinearLayout(Context context, AttributeSet attrs) { this(context, attrs, 0); }
/* */
/* */
/* */
/* 46 */ public CheckableLinearLayout(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); }
/* */
/* */
/* */
/* */
/* 51 */ public boolean isChecked() { return this.mChecked; }
/* */
/* */
/* */
/* */
/* */ public void setChecked(boolean checked) {
/* 57 */ if (this.mChecked != checked) {
/* 58 */ this.mChecked = checked;
/* 59 */ int n = getChildCount();
/* */
/* 61 */ for (int i = 0; i < n; i++) {
/* 62 */ View v = getChildAt(i);
/* 63 */ if (v instanceof Checkable)
/* 64 */ ((Checkable)v).setChecked(checked);
/* */ }
/* 66 */ refreshDrawableState();
/* */ }
/* */ }
/* */
/* */
/* */
/* 72 */ public void toggle() { setChecked(!this.mChecked); }
/* */
/* */
/* */
/* */ public int[] onCreateDrawableState(int extraSpace) {
/* 77 */ int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
/* 78 */ if (isChecked()) {
/* 79 */ mergeDrawableStates(drawableState, CHECKED_STATE_SET);
/* */ }
/* 81 */ return drawableState;
/* */ }
/* */
/* */
/* */
/* */ public boolean onInterceptTouchEvent(MotionEvent ev) {
/* 87 */ this.mTouchX = ev.getX();
/* 88 */ this.mTouchY = ev.getY();
/* 89 */ return super.onInterceptTouchEvent(ev);
/* */ }
/* */
/* */
/* 93 */ public float touchX() { return this.mTouchX; }
/* */
/* 95 */ public float touchY() { return this.mTouchY; }
/* */ }
/* Location: E:\tools\工具\classes.jar!\com\serenegiant\widget\CheckableLinearLayout.class
* Java compiler version: 7 (51.0)
* JD-Core Version: 1.1.2
*/ | [
"cui.li@suirui.com"
] | cui.li@suirui.com |
6beaeb8bbe43643db1c71c32b57a24fae38b75d7 | 7b401ee0dcae49aa0eb87adc2c98010f91cb84e7 | /parcial2/src/gt/edu/umg/ingenieria/sistemas/analisis2/parcial2/service/IEngineRepairService.java | 23469963668e0fe38e984584fa1fe70a8caeb29c | [] | no_license | jbarillasgarcia/analisis-parcial2 | db27edb89beb3d87d838b394cf164caab1f68f05 | f62b696279b2645887667e4e26626431a5266bd0 | refs/heads/master | 2022-04-22T02:16:35.959932 | 2020-04-27T16:03:32 | 2020-04-27T16:03:32 | 258,627,141 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 131 | java | package gt.edu.umg.ingenieria.sistemas.analisis2.parcial2.service;
import java.util.*;
public interface IEngineRepairService {
} | [
"cgarciam@tigo.com.gt"
] | cgarciam@tigo.com.gt |
73fba2a783a3793416cc02ff25d08de69431b272 | e8dee855a8fe2b7cce59adb8fe599580d02e87a9 | /src/main/java/com/service/impl/QuestionServiceImpl.java | c4345049ef6d843c5f3fcdf4cd5e268d18280a81 | [] | no_license | sea20/QAPlatform | 149981a977b4fd089827e94d4ab24f1bf41c2b11 | 16d07a0be5a3780e6361abd51340a88c862feff7 | refs/heads/master | 2023-07-15T02:27:46.750984 | 2022-07-04T07:52:05 | 2022-07-04T07:52:05 | 354,526,237 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,723 | java | package com.service.impl;
import com.bean.Question;
import com.bean.questionInformation.QueryQuestion;
import com.bean.result.Result;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.mapper.CollectionMapper;
import com.mapper.QuestionMapper;
import com.mapper.TagsMapper;
import com.mapper.UserMapper;
import com.service.QuestionService;
import com.utils.result.R;
import org.junit.Before;
import org.junit.Test;
import org.mybatis.spring.SqlSessionTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.script.DefaultRedisScript;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.UUID;
import java.util.concurrent.TimeUnit;
/**
* @Auther: Maple
* @Date: 2021/2/4
*/
@Service
public class QuestionServiceImpl implements QuestionService {
@Autowired
QuestionMapper questionMapper;
@Autowired
CollectionMapper collectionMapper;
@Autowired
RedisTemplate redisTemplate;
@Autowired
ObjectMapper objectMapper;
@Autowired
TagsMapper tagsMapper ;
/*@Before
public void before(){
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring.xml");
//System.out.println(userMapper);
SqlSessionTemplate sqlSession = (SqlSessionTemplate) context.getBean("sqlSession");
questionMapper = sqlSession.getMapper(QuestionMapper.class);
}*/
/* @Test
public void testQueryQuestions(){
Question question = new Question();
question.setTitle("标题");
question.setContent("内容");
question.setuId(1);
Result result = this.askQuestion(question);
System.out.println(result);
}*/
@Override
@Transactional
public Result askQuestion(Question question,Integer tagId) {
int count;
try {
count = questionMapper.askQuestion(question);
if(tagId!=null){
tagsMapper.insert(question.getId(),tagId);
}
}catch (Exception e){
return R.Error();
}
if(count == 1){
//缓存到redis
getQuestionByQid(question.getId());
return R.Ok();
}
return R.Error();
}
/* @Test
public void testQueryQuestions(){
Result result = this.delQuestion(3, 5);
System.out.println(result);
}*/
@Override
@Transactional
public Result delQuestion(Integer qId,Integer uId) {
int count = questionMapper.delQuestion(qId,uId);
if(count == 1){
collectionMapper.deCollectionByQid(qId);
redisTemplate.delete(""+qId);
return R.Ok();
}
return R.Error("删除失败");
}
/* @Test
public void testQueryQuestions(){
QueryQuestion query = new QueryQuestion();
query.setLimit(5);
query.setCurrent(0);
query.setqName("标题");
query.setSortType("1");
query.setType(1);
Result result = this.queryQuestions(query);
System.out.println(result);
}*/
@Override
public Result queryQuestions(QueryQuestion qQuery) {
Integer current = qQuery.getCurrent();
Integer limit = qQuery.getLimit();
qQuery.setCurrent((current-1)*limit);
String name = qQuery.getqName();
List list = null;
Integer size = null;
if(name == null || name.equals("")){
List<String> cache = new ArrayList();
//没有名字
cache = redisTemplate.opsForList().range("home_page_list", 0, -1);
if(cache ==null || cache.size() <= 0){//没缓存
String id = UUID.randomUUID().toString();
Boolean flag = redisTemplate.opsForValue().setIfAbsent("lock_"+"home_page_list", id, 5, TimeUnit.SECONDS);//5s
if(flag == true){
list = questionMapper.getAll(qQuery);
if(list == null || list.size() == 0) {
//没有搜到
//释放锁 返回empty
DefaultRedisScript script = new DefaultRedisScript();
String text = "if redis.call('get', KEYS[1]) == ARGV[1] then return redis.call('del', KEYS[1]) else return 0 end";
script.setScriptText(text);
redisTemplate.execute(script, Arrays.asList("lock_"+"home_page_list"),id);
return R.Empty();
}
for (Object o : list) {
try {
cache.add(objectMapper.writeValueAsString(o));
} catch (JsonProcessingException e) {
e.printStackTrace();
}
}
redisTemplate.opsForList().rightPushAll("home_page_list",cache);
redisTemplate.expire("home_page_list",2,TimeUnit.SECONDS);
}else{
try {
Thread.sleep(1000);
return queryQuestions(qQuery);
} catch (InterruptedException e) {
e.printStackTrace();
return R.Error();
}
}
}else{//有缓存
list = new ArrayList();
for (String s : cache) {
try {
list.add(objectMapper.readValue(s,Question.class));
} catch (IOException e) {
e.printStackTrace();
}
}
}
size = questionMapper.getAllSize();
}else {
if(qQuery.getType() == 1){
switch (qQuery.getSortType()){
case "1":qQuery.setSortType("order by update_time desc");break;
case "2":qQuery.setSortType("order by like_num desc");
}
}
//有名字
list = questionMapper.getAllByqQuery(qQuery);
size = questionMapper.getAllByqQuerySize(qQuery);
}
if (list == null || list.size() == 0){
return R.Empty();
}else {
size = size == null ? 0 : size;
return R.Ok().add("data",list).add("size",size);
}
}
/* @Test
public void testSupport(){
Result support = this.support(1, false);
System.out.println(support);
}*/
@Override
public Result support(Integer qId, Boolean flag) {
int count = 0;
if (flag == true){
//点赞
count = 1;
}else {
//取消点赞
count = -1;
}
count = questionMapper.support(qId,count);
if(count == 1){
return R.Ok();
}
return R.Error("点赞失败");
}
//此方法已经删除
@Override
public Result getQuestionByQid(Integer qid) {
//从缓存中读取
Object o = redisTemplate.opsForValue().get(qid+"");
if(o != null){
try {
//重置时间
redisTemplate.expire(qid+"",60,TimeUnit.MINUTES);
return R.Ok().add("data",objectMapper.readValue((String) o,Question.class));
} catch (IOException e) {
return R.Error();
}
}
Question question = questionMapper.getQuestionByQid(qid);
if (question == null){
return R.Empty();
}
//缓存到redis id 为key
try {
redisTemplate.opsForValue().set(""+question.getId(),objectMapper.writeValueAsString(question),60, TimeUnit.MINUTES);
} catch (JsonProcessingException e) {
e.printStackTrace();
}
return R.Ok().add("data",question);
}
@Override
public Result getQuestionByUid(Integer uid) {
List<Question> list = questionMapper.getQuestionByUid(uid);
if (list == null || list.size() == 0){
return R.Empty();
}
return R.Ok().add("data",list);
}
@Override
public Result scan(int qId) {
int count = questionMapper.scan(qId);
if(count == 0) return R.Error();
return R.Ok();
}
}
| [
"1193569029@qq.com"
] | 1193569029@qq.com |
a22816d3e30d79a70635dba5d745cc2cbf01a9b2 | b80a17e3646a64fad4001a5da7c44ac97da58afa | /ProjectAlmacenesJuegos/src/main/java/com/prueba/tecnica/projectalmacenesjuegos/persistence/AlmacenesFacadeLocal.java | b086889bc1c2547b235d7ea4803d0d9e80e7fa2a | [] | no_license | monik23/AlmacenesJuegos | cd18d5071c682de9d475623da3a8831e1ad21b37 | eb6892b077af05f3316f218ab356f48795d4e97a | refs/heads/master | 2022-12-11T23:03:32.435798 | 2020-09-15T02:07:47 | 2020-09-15T02:07:47 | 295,578,987 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 688 | 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 com.prueba.tecnica.projectalmacenesjuegos.persistence;
import com.prueba.tecnica.projectalmacenesjuegos.entities.Almacenes;
import java.util.List;
import javax.ejb.Local;
/**
*
* @author Mon
*/
@Local
public interface AlmacenesFacadeLocal {
void create(Almacenes almacenes);
void edit(Almacenes almacenes);
void remove(Almacenes almacenes);
Almacenes find(Object id);
List<Almacenes> findAll();
List<Almacenes> findRange(int[] range);
int count();
}
| [
"aine24@gmail.com"
] | aine24@gmail.com |
e48a1cce56a4c824d1f4dca882e3b5589281e3d7 | 6d0969646df6b9bfa7d9f4775b7f88239eb6fa6c | /Backend/backend/src/main/java/com/jedago/practica_dss/backend/EmailServiceImpl.java | 037f1b29bebe51cced805344117495f49e34b555 | [
"MIT"
] | permissive | gonzalouli/dss2020-2021-GonJeDav | 7b31b852ac3b4404eb06e1d1217f45d75ee0e340 | 44e5713e3258d28c952478d9188ee78f0f713c9a | refs/heads/main | 2023-06-03T19:39:45.967719 | 2021-06-07T12:34:10 | 2021-06-07T12:34:10 | 344,438,892 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,867 | java | package com.jedago.practica_dss.backend;
import java.util.Map;
import java.util.Properties;
import javax.mail.internet.MimeMessage;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.JavaMailSenderImpl;
import org.springframework.stereotype.Component;
import com.jedago.practica_dss.core.Order;
import com.jedago.practica_dss.core.OrderLine;
import it.ozimov.springboot.mail.model.Email;
import it.ozimov.springboot.mail.model.InlinePicture;
import it.ozimov.springboot.mail.service.EmailService;
import it.ozimov.springboot.mail.service.exception.CannotSendEmailException;
@Component
public class EmailServiceImpl implements EmailService {
public void sendSimpleMessage( Order order, JavaMailSender emailSender) {
String msg = new String();
StringBuilder totalmsg = new StringBuilder();
for(OrderLine o: order.getProducts())
{
msg = o.getProductName()+" "+o.getAmount()+"\n";
totalmsg.append(msg);
}
SimpleMailMessage message = new SimpleMailMessage();
//message.setFrom("cafejedago@gmail.com");
message.setTo("cafejedago@gmail.com");
message.setSubject("Pedido numero:"+order.getId_order());
message.setText(totalmsg.toString());
emailSender.send(message);
}
@Override
public MimeMessage send(Email mimeEmail) {
// TODO Auto-generated method stub
return null;
}
@Override
public MimeMessage send(Email mimeEmail, String template, Map<String, Object> modelObject,
InlinePicture... inlinePictures) throws CannotSendEmailException {
// TODO Auto-generated method stub
return null;
}
}
| [
"43575107+gonzalouli@users.noreply.github.com"
] | 43575107+gonzalouli@users.noreply.github.com |
5fc8b10dfe3469fa1194a2f75eb956aadc92d6fd | 9003aa023e7a5d9b96c8315a5268f1dbfe531df2 | /src/main/java/com/qsl/cursomc/domain/ItemPedido.java | 72930beccd97e759ec6fbe875a9c8ad37e9786e0 | [] | no_license | rscussel/cursomc | f936b6a292213875b9046445663b5132362c8d21 | e42b7d41da446003b30fbe5d980da74b9c26a22d | refs/heads/master | 2020-03-19T15:01:11.156075 | 2018-06-19T19:50:48 | 2018-06-19T19:50:48 | 136,652,197 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,860 | java | package com.qsl.cursomc.domain;
import java.io.Serializable;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import com.fasterxml.jackson.annotation.JsonIgnore;
@Entity
public class ItemPedido implements Serializable {
private static final long serialVersionUID = 1L;
@JsonIgnore
@EmbeddedId
private ItemPedidoPK id = new ItemPedidoPK();
private Double desconto;
private Integer quantidade;
private Double preco;
public ItemPedido() {
}
public ItemPedido(Pedido pedido, Produto produto, Double desconto, Integer quantidade, Double preco) {
super();
id.setPedido(pedido);
id.setProduto(produto);
this.desconto = desconto;
this.quantidade = quantidade;
this.preco = preco;
}
@JsonIgnore
public Pedido getPedido() {
return id.getPedido();
}
public Produto getProduto() {
return id.getProduto();
}
public ItemPedidoPK getId() {
return id;
}
public void setId(ItemPedidoPK id) {
this.id = id;
}
public Double getDesconto() {
return desconto;
}
public void setDesconto(Double desconto) {
this.desconto = desconto;
}
public Integer getQuantidade() {
return quantidade;
}
public void setQuantidade(Integer quantidade) {
this.quantidade = quantidade;
}
public Double getPreco() {
return preco;
}
public void setPreco(Double preco) {
this.preco = preco;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((id == null) ? 0 : id.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;
ItemPedido other = (ItemPedido) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
return true;
}
}
| [
"scussel.ricardo@gmail.com"
] | scussel.ricardo@gmail.com |
3056615a042a59ab1f990d91a9da3d995b304260 | 651e310f79a4ab053d4d6f2a5b79cd6c88de974e | /AngelaAPPa/AngelaAPPa.Android/obj/Debug/MonoAndroid81/android/src/android/support/mediacompat/R.java | 2fcebfb1e304e765b2114d7731ce5b295d4be744 | [] | no_license | Abicklzito0/AppAngela | ed9959bbadb08f3fb601bcc98c5dbd2751aae44e | 85bf89cc5f7602f3349ac647484354f97d1985c2 | refs/heads/master | 2020-06-17T21:26:35.761651 | 2019-07-09T18:09:53 | 2019-07-09T18:09:53 | 196,060,005 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 676,339 | 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.mediacompat;
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=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 actionBarItemBackground=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarPopupTheme=0x7f010065;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static int actionBarSize=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarSplitStyle=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarStyle=0x7f010066;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabBarStyle=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabStyle=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabTextStyle=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTheme=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarWidgetTheme=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionButtonStyle=0x7f010086;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionDropDownStyle=0x7f010082;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionLayout=0x7f0100dd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionMenuTextAppearance=0x7f01006d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int actionMenuTextColor=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeBackground=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCloseButtonStyle=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCloseDrawable=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCopyDrawable=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCutDrawable=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeFindDrawable=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModePasteDrawable=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModePopupWindowStyle=0x7f01007b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeSelectAllDrawable=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeShareDrawable=0x7f010078;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeSplitBackground=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeStyle=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeWebSearchDrawable=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowButtonStyle=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowMenuStyle=0x7f010064;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int actionProviderClass=0x7f0100df;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int actionViewClass=0x7f0100de;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int activityChooserViewStyle=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogButtonGroupStyle=0x7f0100b3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int alertDialogCenterButtons=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogStyle=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogTheme=0x7f0100b5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int allowStacking=0x7f0100cb;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int alpha=0x7f0100cc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static int alphabeticModifiers=0x7f0100da;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowHeadLength=0x7f0100d3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowShaftLength=0x7f0100d4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoCompleteTextViewStyle=0x7f0100ba;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeMaxTextSize=0x7f010054;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeMinTextSize=0x7f010053;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoSizePresetSizes=0x7f010052;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeStepGranularity=0x7f010051;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
*/
public static int autoSizeTextType=0x7f010050;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int background=0x7f01002e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int backgroundSplit=0x7f010030;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int backgroundStacked=0x7f01002f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int backgroundTint=0x7f010116;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int backgroundTintMode=0x7f010117;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int barLength=0x7f0100d5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_autoHide=0x7f010141;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_hideable=0x7f01011e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_overlapTop=0x7f01014a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static int behavior_peekHeight=0x7f01011d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_skipCollapsed=0x7f01011f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int borderWidth=0x7f01013f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int borderlessButtonStyle=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetDialogTheme=0x7f010139;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetStyle=0x7f01013a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarButtonStyle=0x7f010088;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNegativeButtonStyle=0x7f0100b8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNeutralButtonStyle=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarPositiveButtonStyle=0x7f0100b7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarStyle=0x7f010087;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static int buttonGravity=0x7f01010b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonPanelSideLayout=0x7f010043;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonStyle=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonStyleSmall=0x7f0100bc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int buttonTint=0x7f0100cd;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int buttonTintMode=0x7f0100ce;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardBackgroundColor=0x7f010017;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardCornerRadius=0x7f010018;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardElevation=0x7f010019;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardMaxElevation=0x7f01001a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardPreventCornerOverlap=0x7f01001c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardUseCompatPadding=0x7f01001b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkboxStyle=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkedTextViewStyle=0x7f0100be;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeIcon=0x7f0100ee;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeItemLayout=0x7f010040;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int collapseContentDescription=0x7f01010d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapseIcon=0x7f01010c;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int collapsedTitleGravity=0x7f01012c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapsedTitleTextAppearance=0x7f010126;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int color=0x7f0100cf;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorAccent=0x7f0100aa;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorBackgroundFloating=0x7f0100b1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorButtonNormal=0x7f0100ae;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlActivated=0x7f0100ac;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlHighlight=0x7f0100ad;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlNormal=0x7f0100ab;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int colorError=0x7f0100ca;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorPrimary=0x7f0100a8;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorPrimaryDark=0x7f0100a9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorSwitchThumbNormal=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int commitIcon=0x7f0100f3;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentDescription=0x7f0100e0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetEnd=0x7f010039;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetEndWithActions=0x7f01003d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetLeft=0x7f01003a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetRight=0x7f01003b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetStart=0x7f010038;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetStartWithNavigation=0x7f01003c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPadding=0x7f01001d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingBottom=0x7f010021;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingLeft=0x7f01001e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingRight=0x7f01001f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingTop=0x7f010020;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentScrim=0x7f010127;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int controlBackground=0x7f0100b0;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int counterEnabled=0x7f010160;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int counterMaxLength=0x7f010161;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterOverflowTextAppearance=0x7f010163;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterTextAppearance=0x7f010162;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int customNavigationLayout=0x7f010031;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int defaultQueryHint=0x7f0100ed;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dialogPreferredPadding=0x7f010080;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dialogTheme=0x7f01007f;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static int displayOptions=0x7f010027;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int divider=0x7f01002d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerHorizontal=0x7f01008d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dividerPadding=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerVertical=0x7f01008c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int drawableSize=0x7f0100d1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int drawerArrowStyle=0x7f010022;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dropDownListViewStyle=0x7f01009f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dropdownListPreferredItemHeight=0x7f010083;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextBackground=0x7f010094;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int editTextColor=0x7f010093;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextStyle=0x7f0100bf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int elevation=0x7f01003e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int errorEnabled=0x7f01015e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int errorTextAppearance=0x7f01015f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandActivityOverflowButtonDrawable=0x7f010042;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expanded=0x7f010118;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int expandedTitleGravity=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMargin=0x7f010120;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginBottom=0x7f010124;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginEnd=0x7f010123;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginStart=0x7f010121;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginTop=0x7f010122;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandedTitleTextAppearance=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int externalRouteEnabledDrawable=0x7f010015;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fabSize=0x7f01013d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static 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=0x7f010171;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontFamily=0x7f010055;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderAuthority=0x7f01016a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fontProviderCerts=0x7f01016d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fontProviderFetchStrategy=0x7f01016e;
/** <p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
*/
public static int fontProviderFetchTimeout=0x7f01016f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderPackage=0x7f01016b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderQuery=0x7f01016c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fontStyle=0x7f010170;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontWeight=0x7f010172;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int foregroundInsidePadding=0x7f010142;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int gapBetweenBars=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int goIcon=0x7f0100ef;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int headerLayout=0x7f010148;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int height=0x7f010023;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hideOnContentScroll=0x7f010037;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hintAnimationEnabled=0x7f010164;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hintEnabled=0x7f01015d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int hintTextAppearance=0x7f01015c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeAsUpIndicator=0x7f010085;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeLayout=0x7f010032;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int icon=0x7f01002b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int iconTint=0x7f0100e2;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int iconTintMode=0x7f0100e3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int iconifiedByDefault=0x7f0100eb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int imageButtonStyle=0x7f010095;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int indeterminateProgressStyle=0x7f010034;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int initialActivityCount=0x7f010041;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int insetForeground=0x7f010149;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int isLightTheme=0x7f010024;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemBackground=0x7f010146;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemIconTint=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemPadding=0x7f010036;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemTextAppearance=0x7f010147;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemTextColor=0x7f010145;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int keylines=0x7f010131;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout=0x7f0100ea;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static 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=0x7f010134;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int layout_anchorGravity=0x7f010136;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_behavior=0x7f010133;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static int layout_collapseMode=0x7f01012f;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_collapseParallaxMultiplier=0x7f010130;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static int layout_dodgeInsetEdges=0x7f010138;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int layout_insetEdge=0x7f010137;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_keyline=0x7f010135;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static int layout_scrollFlags=0x7f01011b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout_scrollInterpolator=0x7f01011c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listChoiceBackgroundIndicator=0x7f0100a7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listDividerAlertDialog=0x7f010081;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listItemLayout=0x7f010047;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listLayout=0x7f010044;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listMenuViewStyle=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listPopupWindowStyle=0x7f0100a0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeight=0x7f01009a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightLarge=0x7f01009c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightSmall=0x7f01009b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingLeft=0x7f01009d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingRight=0x7f01009e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int logo=0x7f01002c;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int logoDescription=0x7f010110;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxActionInlineWidth=0x7f01014b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxButtonHeight=0x7f01010a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int measureWithLargestChild=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteAudioTrackDrawable=0x7f010009;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteButtonStyle=0x7f01000a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int mediaRouteButtonTint=0x7f010016;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteCloseDrawable=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteControlPanelThemeOverlay=0x7f01000c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteDefaultIconDrawable=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRoutePauseDrawable=0x7f01000e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRoutePlayDrawable=0x7f01000f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteSpeakerGroupIconDrawable=0x7f010010;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteSpeakerIconDrawable=0x7f010011;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteStopDrawable=0x7f010012;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteTheme=0x7f010013;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteTvIconDrawable=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int menu=0x7f010143;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int multiChoiceItemLayout=0x7f010045;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int navigationContentDescription=0x7f01010f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int navigationIcon=0x7f01010e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static int navigationMode=0x7f010026;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static int numericModifiers=0x7f0100db;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int overlapAnchor=0x7f0100e6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingBottomNoButtons=0x7f0100e8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingEnd=0x7f010114;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingStart=0x7f010113;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingTopNoTitle=0x7f0100e9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelBackground=0x7f0100a4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelMenuListTheme=0x7f0100a6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int panelMenuListWidth=0x7f0100a5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleContentDescription=0x7f010167;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int passwordToggleDrawable=0x7f010166;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleEnabled=0x7f010165;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleTint=0x7f010168;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static int passwordToggleTintMode=0x7f010169;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupMenuStyle=0x7f010091;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupTheme=0x7f01003f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupWindowStyle=0x7f010092;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int preserveIconSpacing=0x7f0100e4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int pressedTranslationZ=0x7f01013e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int progressBarPadding=0x7f010035;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int progressBarStyle=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int queryBackground=0x7f0100f5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int queryHint=0x7f0100ec;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int radioButtonStyle=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyle=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyleIndicator=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyleSmall=0x7f0100c3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static 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=0x7f01013c;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int scrimAnimationDuration=0x7f01012b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int scrimVisibleHeightTrigger=0x7f01012a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchHintIcon=0x7f0100f1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchIcon=0x7f0100f0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchViewStyle=0x7f010099;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int seekBarStyle=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int selectableItemBackground=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int selectableItemBackgroundBorderless=0x7f01008a;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static int showAsAction=0x7f0100dc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static int showDividers=0x7f0100d8;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int showText=0x7f010101;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int showTitle=0x7f010048;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int singleChoiceItemLayout=0x7f010046;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static 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=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 spinnerDropDownItemStyle=0x7f010084;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int spinnerStyle=0x7f0100c5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int splitTrack=0x7f010100;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int srcCompat=0x7f010049;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static 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=0x7f0100e7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_collapsed=0x7f010119;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_collapsible=0x7f01011a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int statusBarBackground=0x7f010132;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int statusBarScrim=0x7f010128;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subMenuArrow=0x7f0100e5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int submitBackground=0x7f0100f6;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int subtitle=0x7f010028;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextAppearance=0x7f010103;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int subtitleTextColor=0x7f010112;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextStyle=0x7f01002a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int suggestionRowLayout=0x7f0100f4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchMinWidth=0x7f0100fe;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchPadding=0x7f0100ff;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchStyle=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchTextAppearance=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabBackground=0x7f01014f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabContentStart=0x7f01014e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static int tabGravity=0x7f010151;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorColor=0x7f01014c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorHeight=0x7f01014d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMaxWidth=0x7f010153;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMinWidth=0x7f010152;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static int tabMode=0x7f010150;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPadding=0x7f01015b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingBottom=0x7f01015a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingEnd=0x7f010159;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingStart=0x7f010157;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingTop=0x7f010158;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabSelectedTextColor=0x7f010156;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabTextAppearance=0x7f010154;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabTextColor=0x7f010155;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static int textAllCaps=0x7f01004f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceLargePopupMenu=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItem=0x7f0100a1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItemSecondary=0x7f0100a2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItemSmall=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearancePopupMenuHeader=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSearchResultSubtitle=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSearchResultTitle=0x7f010096;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSmallPopupMenu=0x7f01007d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorAlertDialogListItem=0x7f0100b6;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorError=0x7f01013b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorSearchUrl=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int theme=0x7f010115;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thickness=0x7f0100d6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thumbTextPadding=0x7f0100fc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thumbTint=0x7f0100f7;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int thumbTintMode=0x7f0100f8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tickMark=0x7f01004c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tickMarkTint=0x7f01004d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int tickMarkTintMode=0x7f01004e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tint=0x7f01004a;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int tintMode=0x7f01004b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int title=0x7f010025;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleEnabled=0x7f01012e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMargin=0x7f010104;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginBottom=0x7f010108;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginEnd=0x7f010106;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginStart=0x7f010105;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginTop=0x7f010107;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMargins=0x7f010109;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextAppearance=0x7f010102;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleTextColor=0x7f010111;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextStyle=0x7f010029;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarId=0x7f010129;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarNavigationButtonStyle=0x7f010090;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarStyle=0x7f01008f;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int tooltipForegroundColor=0x7f0100c9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tooltipFrameBackground=0x7f0100c8;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tooltipText=0x7f0100e1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int track=0x7f0100f9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int trackTint=0x7f0100fa;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int trackTintMode=0x7f0100fb;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int useCompatPadding=0x7f010140;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int voiceIcon=0x7f0100f2;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBar=0x7f010056;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBarOverlay=0x7f010058;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionModeOverlay=0x7f010059;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedHeightMajor=0x7f01005d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedHeightMinor=0x7f01005b;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedWidthMajor=0x7f01005a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedWidthMinor=0x7f01005c;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowMinWidthMajor=0x7f01005e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowMinWidthMinor=0x7f01005f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowNoTitle=0x7f010057;
}
public static final class bool {
public static int abc_action_bar_embed_tabs=0x7f0e0000;
public static int abc_allow_stacked_button_bar=0x7f0e0001;
public static int abc_config_actionMenuItemAllCaps=0x7f0e0002;
public static int abc_config_closeDialogWhenTouchOutside=0x7f0e0003;
public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0e0004;
}
public static final class color {
public static int abc_background_cache_hint_selector_material_dark=0x7f0d004f;
public static int abc_background_cache_hint_selector_material_light=0x7f0d0050;
public static int abc_btn_colored_borderless_text_material=0x7f0d0051;
public static int abc_btn_colored_text_material=0x7f0d0052;
public static int abc_color_highlight_material=0x7f0d0053;
public static int abc_hint_foreground_material_dark=0x7f0d0054;
public static int abc_hint_foreground_material_light=0x7f0d0055;
public static int abc_input_method_navigation_guard=0x7f0d0004;
public static int abc_primary_text_disable_only_material_dark=0x7f0d0056;
public static int abc_primary_text_disable_only_material_light=0x7f0d0057;
public static int abc_primary_text_material_dark=0x7f0d0058;
public static int abc_primary_text_material_light=0x7f0d0059;
public static int abc_search_url_text=0x7f0d005a;
public static int abc_search_url_text_normal=0x7f0d0005;
public static int abc_search_url_text_pressed=0x7f0d0006;
public static int abc_search_url_text_selected=0x7f0d0007;
public static int abc_secondary_text_material_dark=0x7f0d005b;
public static int abc_secondary_text_material_light=0x7f0d005c;
public static int abc_tint_btn_checkable=0x7f0d005d;
public static int abc_tint_default=0x7f0d005e;
public static int abc_tint_edittext=0x7f0d005f;
public static int abc_tint_seek_thumb=0x7f0d0060;
public static int abc_tint_spinner=0x7f0d0061;
public static int abc_tint_switch_track=0x7f0d0062;
public static int accent_material_dark=0x7f0d0008;
public static int accent_material_light=0x7f0d0009;
public static int background_floating_material_dark=0x7f0d000a;
public static int background_floating_material_light=0x7f0d000b;
public static int background_material_dark=0x7f0d000c;
public static int background_material_light=0x7f0d000d;
public static int bright_foreground_disabled_material_dark=0x7f0d000e;
public static int bright_foreground_disabled_material_light=0x7f0d000f;
public static int bright_foreground_inverse_material_dark=0x7f0d0010;
public static int bright_foreground_inverse_material_light=0x7f0d0011;
public static int bright_foreground_material_dark=0x7f0d0012;
public static int bright_foreground_material_light=0x7f0d0013;
public static int button_material_dark=0x7f0d0014;
public static int button_material_light=0x7f0d0015;
public static int cardview_dark_background=0x7f0d0000;
public static int cardview_light_background=0x7f0d0001;
public static int cardview_shadow_end_color=0x7f0d0002;
public static int cardview_shadow_start_color=0x7f0d0003;
public static int colorAccent=0x7f0d004e;
public static int colorPrimary=0x7f0d004c;
public static int colorPrimaryDark=0x7f0d004d;
public static int design_bottom_navigation_shadow_color=0x7f0d0040;
public static int design_error=0x7f0d0063;
public static int design_fab_shadow_end_color=0x7f0d0041;
public static int design_fab_shadow_mid_color=0x7f0d0042;
public static int design_fab_shadow_start_color=0x7f0d0043;
public static int design_fab_stroke_end_inner_color=0x7f0d0044;
public static int design_fab_stroke_end_outer_color=0x7f0d0045;
public static int design_fab_stroke_top_inner_color=0x7f0d0046;
public static int design_fab_stroke_top_outer_color=0x7f0d0047;
public static int design_snackbar_background_color=0x7f0d0048;
public static int design_tint_password_toggle=0x7f0d0064;
public static int dim_foreground_disabled_material_dark=0x7f0d0016;
public static int dim_foreground_disabled_material_light=0x7f0d0017;
public static int dim_foreground_material_dark=0x7f0d0018;
public static int dim_foreground_material_light=0x7f0d0019;
public static int error_color_material=0x7f0d001a;
public static int foreground_material_dark=0x7f0d001b;
public static int foreground_material_light=0x7f0d001c;
public static int highlighted_text_material_dark=0x7f0d001d;
public static int highlighted_text_material_light=0x7f0d001e;
public static int launcher_background=0x7f0d004b;
public static int material_blue_grey_800=0x7f0d001f;
public static int material_blue_grey_900=0x7f0d0020;
public static int material_blue_grey_950=0x7f0d0021;
public static int material_deep_teal_200=0x7f0d0022;
public static int material_deep_teal_500=0x7f0d0023;
public static int material_grey_100=0x7f0d0024;
public static int material_grey_300=0x7f0d0025;
public static int material_grey_50=0x7f0d0026;
public static int material_grey_600=0x7f0d0027;
public static int material_grey_800=0x7f0d0028;
public static int material_grey_850=0x7f0d0029;
public static int material_grey_900=0x7f0d002a;
public static int notification_action_color_filter=0x7f0d0049;
public static int notification_icon_bg_color=0x7f0d004a;
public static int notification_material_background_media_default_color=0x7f0d003f;
public static int primary_dark_material_dark=0x7f0d002b;
public static int primary_dark_material_light=0x7f0d002c;
public static int primary_material_dark=0x7f0d002d;
public static int primary_material_light=0x7f0d002e;
public static int primary_text_default_material_dark=0x7f0d002f;
public static int primary_text_default_material_light=0x7f0d0030;
public static int primary_text_disabled_material_dark=0x7f0d0031;
public static int primary_text_disabled_material_light=0x7f0d0032;
public static int ripple_material_dark=0x7f0d0033;
public static int ripple_material_light=0x7f0d0034;
public static int secondary_text_default_material_dark=0x7f0d0035;
public static int secondary_text_default_material_light=0x7f0d0036;
public static int secondary_text_disabled_material_dark=0x7f0d0037;
public static int secondary_text_disabled_material_light=0x7f0d0038;
public static int switch_thumb_disabled_material_dark=0x7f0d0039;
public static int switch_thumb_disabled_material_light=0x7f0d003a;
public static int switch_thumb_material_dark=0x7f0d0065;
public static int switch_thumb_material_light=0x7f0d0066;
public static int switch_thumb_normal_material_dark=0x7f0d003b;
public static int switch_thumb_normal_material_light=0x7f0d003c;
public static int tooltip_background_dark=0x7f0d003d;
public static int tooltip_background_light=0x7f0d003e;
}
public static final class dimen {
public static int abc_action_bar_content_inset_material=0x7f08001b;
public static int abc_action_bar_content_inset_with_nav=0x7f08001c;
public static int abc_action_bar_default_height_material=0x7f080010;
public static int abc_action_bar_default_padding_end_material=0x7f08001d;
public static int abc_action_bar_default_padding_start_material=0x7f08001e;
public static int abc_action_bar_elevation_material=0x7f080020;
public static int abc_action_bar_icon_vertical_padding_material=0x7f080021;
public static int abc_action_bar_overflow_padding_end_material=0x7f080022;
public static int abc_action_bar_overflow_padding_start_material=0x7f080023;
public static int abc_action_bar_progress_bar_size=0x7f080011;
public static int abc_action_bar_stacked_max_height=0x7f080024;
public static int abc_action_bar_stacked_tab_max_width=0x7f080025;
public static int abc_action_bar_subtitle_bottom_margin_material=0x7f080026;
public static int abc_action_bar_subtitle_top_margin_material=0x7f080027;
public static int abc_action_button_min_height_material=0x7f080028;
public static int abc_action_button_min_width_material=0x7f080029;
public static int abc_action_button_min_width_overflow_material=0x7f08002a;
public static int abc_alert_dialog_button_bar_height=0x7f08000f;
public static int abc_button_inset_horizontal_material=0x7f08002b;
public static int abc_button_inset_vertical_material=0x7f08002c;
public static int abc_button_padding_horizontal_material=0x7f08002d;
public static int abc_button_padding_vertical_material=0x7f08002e;
public static int abc_cascading_menus_min_smallest_width=0x7f08002f;
public static int abc_config_prefDialogWidth=0x7f080014;
public static int abc_control_corner_material=0x7f080030;
public static int abc_control_inset_material=0x7f080031;
public static int abc_control_padding_material=0x7f080032;
public static int abc_dialog_fixed_height_major=0x7f080015;
public static int abc_dialog_fixed_height_minor=0x7f080016;
public static int abc_dialog_fixed_width_major=0x7f080017;
public static int abc_dialog_fixed_width_minor=0x7f080018;
public static int abc_dialog_list_padding_bottom_no_buttons=0x7f080033;
public static int abc_dialog_list_padding_top_no_title=0x7f080034;
public static int abc_dialog_min_width_major=0x7f080019;
public static int abc_dialog_min_width_minor=0x7f08001a;
public static int abc_dialog_padding_material=0x7f080035;
public static int abc_dialog_padding_top_material=0x7f080036;
public static int abc_dialog_title_divider_material=0x7f080037;
public static int abc_disabled_alpha_material_dark=0x7f080038;
public static int abc_disabled_alpha_material_light=0x7f080039;
public static int abc_dropdownitem_icon_width=0x7f08003a;
public static int abc_dropdownitem_text_padding_left=0x7f08003b;
public static int abc_dropdownitem_text_padding_right=0x7f08003c;
public static int abc_edit_text_inset_bottom_material=0x7f08003d;
public static int abc_edit_text_inset_horizontal_material=0x7f08003e;
public static int abc_edit_text_inset_top_material=0x7f08003f;
public static int abc_floating_window_z=0x7f080040;
public static int abc_list_item_padding_horizontal_material=0x7f080041;
public static int abc_panel_menu_list_width=0x7f080042;
public static int abc_progress_bar_height_material=0x7f080043;
public static int abc_search_view_preferred_height=0x7f080044;
public static int abc_search_view_preferred_width=0x7f080045;
public static int abc_seekbar_track_background_height_material=0x7f080046;
public static int abc_seekbar_track_progress_height_material=0x7f080047;
public static int abc_select_dialog_padding_start_material=0x7f080048;
public static int abc_switch_padding=0x7f08001f;
public static int abc_text_size_body_1_material=0x7f080049;
public static int abc_text_size_body_2_material=0x7f08004a;
public static int abc_text_size_button_material=0x7f08004b;
public static int abc_text_size_caption_material=0x7f08004c;
public static int abc_text_size_display_1_material=0x7f08004d;
public static int abc_text_size_display_2_material=0x7f08004e;
public static int abc_text_size_display_3_material=0x7f08004f;
public static int abc_text_size_display_4_material=0x7f080050;
public static int abc_text_size_headline_material=0x7f080051;
public static int abc_text_size_large_material=0x7f080052;
public static int abc_text_size_medium_material=0x7f080053;
public static int abc_text_size_menu_header_material=0x7f080054;
public static int abc_text_size_menu_material=0x7f080055;
public static int abc_text_size_small_material=0x7f080056;
public static int abc_text_size_subhead_material=0x7f080057;
public static int abc_text_size_subtitle_material_toolbar=0x7f080012;
public static int abc_text_size_title_material=0x7f080058;
public static int abc_text_size_title_material_toolbar=0x7f080013;
public static int cardview_compat_inset_shadow=0x7f08000c;
public static int cardview_default_elevation=0x7f08000d;
public static int cardview_default_radius=0x7f08000e;
public static int compat_button_inset_horizontal_material=0x7f080094;
public static int compat_button_inset_vertical_material=0x7f080095;
public static int compat_button_padding_horizontal_material=0x7f080096;
public static int compat_button_padding_vertical_material=0x7f080097;
public static int compat_control_corner_material=0x7f080098;
public static int design_appbar_elevation=0x7f080072;
public static int design_bottom_navigation_active_item_max_width=0x7f080073;
public static int design_bottom_navigation_active_text_size=0x7f080074;
public static int design_bottom_navigation_elevation=0x7f080075;
public static int design_bottom_navigation_height=0x7f080076;
public static int design_bottom_navigation_item_max_width=0x7f080077;
public static int design_bottom_navigation_item_min_width=0x7f080078;
public static int design_bottom_navigation_margin=0x7f080079;
public static int design_bottom_navigation_shadow_height=0x7f08007a;
public static int design_bottom_navigation_text_size=0x7f08007b;
public static int design_bottom_sheet_modal_elevation=0x7f08007c;
public static int design_bottom_sheet_peek_height_min=0x7f08007d;
public static int design_fab_border_width=0x7f08007e;
public static int design_fab_elevation=0x7f08007f;
public static int design_fab_image_size=0x7f080080;
public static int design_fab_size_mini=0x7f080081;
public static int design_fab_size_normal=0x7f080082;
public static int design_fab_translation_z_pressed=0x7f080083;
public static int design_navigation_elevation=0x7f080084;
public static int design_navigation_icon_padding=0x7f080085;
public static int design_navigation_icon_size=0x7f080086;
public static int design_navigation_max_width=0x7f08006a;
public static int design_navigation_padding_bottom=0x7f080087;
public static int design_navigation_separator_vertical_padding=0x7f080088;
public static int design_snackbar_action_inline_max_width=0x7f08006b;
public static int design_snackbar_background_corner_radius=0x7f08006c;
public static int design_snackbar_elevation=0x7f080089;
public static int design_snackbar_extra_spacing_horizontal=0x7f08006d;
public static int design_snackbar_max_width=0x7f08006e;
public static int design_snackbar_min_width=0x7f08006f;
public static int design_snackbar_padding_horizontal=0x7f08008a;
public static int design_snackbar_padding_vertical=0x7f08008b;
public static int design_snackbar_padding_vertical_2lines=0x7f080070;
public static int design_snackbar_text_size=0x7f08008c;
public static int design_tab_max_width=0x7f08008d;
public static int design_tab_scrollable_min_width=0x7f080071;
public static int design_tab_text_size=0x7f08008e;
public static int design_tab_text_size_2line=0x7f08008f;
public static int disabled_alpha_material_dark=0x7f080059;
public static int disabled_alpha_material_light=0x7f08005a;
public static int fastscroll_default_thickness=0x7f080000;
public static int fastscroll_margin=0x7f080001;
public static int fastscroll_minimum_range=0x7f080002;
public static int highlight_alpha_material_colored=0x7f08005b;
public static int highlight_alpha_material_dark=0x7f08005c;
public static int highlight_alpha_material_light=0x7f08005d;
public static int hint_alpha_material_dark=0x7f08005e;
public static int hint_alpha_material_light=0x7f08005f;
public static int hint_pressed_alpha_material_dark=0x7f080060;
public static int hint_pressed_alpha_material_light=0x7f080061;
public static int item_touch_helper_max_drag_scroll_per_frame=0x7f080003;
public static int item_touch_helper_swipe_escape_max_velocity=0x7f080004;
public static int item_touch_helper_swipe_escape_velocity=0x7f080005;
public static int mr_controller_volume_group_list_item_height=0x7f080006;
public static int mr_controller_volume_group_list_item_icon_size=0x7f080007;
public static int mr_controller_volume_group_list_max_height=0x7f080008;
public static int mr_controller_volume_group_list_padding_top=0x7f08000b;
public static int mr_dialog_fixed_width_major=0x7f080009;
public static int mr_dialog_fixed_width_minor=0x7f08000a;
public static int notification_action_icon_size=0x7f080099;
public static int notification_action_text_size=0x7f08009a;
public static int notification_big_circle_margin=0x7f08009b;
public static int notification_content_margin_start=0x7f080091;
public static int notification_large_icon_height=0x7f08009c;
public static int notification_large_icon_width=0x7f08009d;
public static int notification_main_column_padding_top=0x7f080092;
public static int notification_media_narrow_margin=0x7f080093;
public static int notification_right_icon_size=0x7f08009e;
public static int notification_right_side_padding_top=0x7f080090;
public static int notification_small_icon_background_padding=0x7f08009f;
public static int notification_small_icon_size_as_large=0x7f0800a0;
public static int notification_subtext_size=0x7f0800a1;
public static int notification_top_pad=0x7f0800a2;
public static int notification_top_pad_large_text=0x7f0800a3;
public static int tooltip_corner_radius=0x7f080062;
public static int tooltip_horizontal_padding=0x7f080063;
public static int tooltip_margin=0x7f080064;
public static int tooltip_precise_anchor_extra_offset=0x7f080065;
public static int tooltip_precise_anchor_threshold=0x7f080066;
public static int tooltip_vertical_padding=0x7f080067;
public static int tooltip_y_offset_non_touch=0x7f080068;
public static int tooltip_y_offset_touch=0x7f080069;
}
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=0x7f02012f;
public static int avd_hide_password_2=0x7f020130;
public static int avd_hide_password_3=0x7f020131;
public static int avd_show_password=0x7f020054;
public static int avd_show_password_1=0x7f020132;
public static int avd_show_password_2=0x7f020133;
public static int avd_show_password_3=0x7f020134;
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 ic_audiotrack_dark=0x7f02005b;
public static int ic_audiotrack_light=0x7f02005c;
public static int ic_dialog_close_dark=0x7f02005d;
public static int ic_dialog_close_light=0x7f02005e;
public static int ic_group_collapse_00=0x7f02005f;
public static int ic_group_collapse_01=0x7f020060;
public static int ic_group_collapse_02=0x7f020061;
public static int ic_group_collapse_03=0x7f020062;
public static int ic_group_collapse_04=0x7f020063;
public static int ic_group_collapse_05=0x7f020064;
public static int ic_group_collapse_06=0x7f020065;
public static int ic_group_collapse_07=0x7f020066;
public static int ic_group_collapse_08=0x7f020067;
public static int ic_group_collapse_09=0x7f020068;
public static int ic_group_collapse_10=0x7f020069;
public static int ic_group_collapse_11=0x7f02006a;
public static int ic_group_collapse_12=0x7f02006b;
public static int ic_group_collapse_13=0x7f02006c;
public static int ic_group_collapse_14=0x7f02006d;
public static int ic_group_collapse_15=0x7f02006e;
public static int ic_group_expand_00=0x7f02006f;
public static int ic_group_expand_01=0x7f020070;
public static int ic_group_expand_02=0x7f020071;
public static int ic_group_expand_03=0x7f020072;
public static int ic_group_expand_04=0x7f020073;
public static int ic_group_expand_05=0x7f020074;
public static int ic_group_expand_06=0x7f020075;
public static int ic_group_expand_07=0x7f020076;
public static int ic_group_expand_08=0x7f020077;
public static int ic_group_expand_09=0x7f020078;
public static int ic_group_expand_10=0x7f020079;
public static int ic_group_expand_11=0x7f02007a;
public static int ic_group_expand_12=0x7f02007b;
public static int ic_group_expand_13=0x7f02007c;
public static int ic_group_expand_14=0x7f02007d;
public static int ic_group_expand_15=0x7f02007e;
public static int ic_media_pause_dark=0x7f02007f;
public static int ic_media_pause_light=0x7f020080;
public static int ic_media_play_dark=0x7f020081;
public static int ic_media_play_light=0x7f020082;
public static int ic_media_stop_dark=0x7f020083;
public static int ic_media_stop_light=0x7f020084;
public static int ic_mr_button_connected_00_dark=0x7f020085;
public static int ic_mr_button_connected_00_light=0x7f020086;
public static int ic_mr_button_connected_01_dark=0x7f020087;
public static int ic_mr_button_connected_01_light=0x7f020088;
public static int ic_mr_button_connected_02_dark=0x7f020089;
public static int ic_mr_button_connected_02_light=0x7f02008a;
public static int ic_mr_button_connected_03_dark=0x7f02008b;
public static int ic_mr_button_connected_03_light=0x7f02008c;
public static int ic_mr_button_connected_04_dark=0x7f02008d;
public static int ic_mr_button_connected_04_light=0x7f02008e;
public static int ic_mr_button_connected_05_dark=0x7f02008f;
public static int ic_mr_button_connected_05_light=0x7f020090;
public static int ic_mr_button_connected_06_dark=0x7f020091;
public static int ic_mr_button_connected_06_light=0x7f020092;
public static int ic_mr_button_connected_07_dark=0x7f020093;
public static int ic_mr_button_connected_07_light=0x7f020094;
public static int ic_mr_button_connected_08_dark=0x7f020095;
public static int ic_mr_button_connected_08_light=0x7f020096;
public static int ic_mr_button_connected_09_dark=0x7f020097;
public static int ic_mr_button_connected_09_light=0x7f020098;
public static int ic_mr_button_connected_10_dark=0x7f020099;
public static int ic_mr_button_connected_10_light=0x7f02009a;
public static int ic_mr_button_connected_11_dark=0x7f02009b;
public static int ic_mr_button_connected_11_light=0x7f02009c;
public static int ic_mr_button_connected_12_dark=0x7f02009d;
public static int ic_mr_button_connected_12_light=0x7f02009e;
public static int ic_mr_button_connected_13_dark=0x7f02009f;
public static int ic_mr_button_connected_13_light=0x7f0200a0;
public static int ic_mr_button_connected_14_dark=0x7f0200a1;
public static int ic_mr_button_connected_14_light=0x7f0200a2;
public static int ic_mr_button_connected_15_dark=0x7f0200a3;
public static int ic_mr_button_connected_15_light=0x7f0200a4;
public static int ic_mr_button_connected_16_dark=0x7f0200a5;
public static int ic_mr_button_connected_16_light=0x7f0200a6;
public static int ic_mr_button_connected_17_dark=0x7f0200a7;
public static int ic_mr_button_connected_17_light=0x7f0200a8;
public static int ic_mr_button_connected_18_dark=0x7f0200a9;
public static int ic_mr_button_connected_18_light=0x7f0200aa;
public static int ic_mr_button_connected_19_dark=0x7f0200ab;
public static int ic_mr_button_connected_19_light=0x7f0200ac;
public static int ic_mr_button_connected_20_dark=0x7f0200ad;
public static int ic_mr_button_connected_20_light=0x7f0200ae;
public static int ic_mr_button_connected_21_dark=0x7f0200af;
public static int ic_mr_button_connected_21_light=0x7f0200b0;
public static int ic_mr_button_connected_22_dark=0x7f0200b1;
public static int ic_mr_button_connected_22_light=0x7f0200b2;
public static int ic_mr_button_connected_23_dark=0x7f0200b3;
public static int ic_mr_button_connected_23_light=0x7f0200b4;
public static int ic_mr_button_connected_24_dark=0x7f0200b5;
public static int ic_mr_button_connected_24_light=0x7f0200b6;
public static int ic_mr_button_connected_25_dark=0x7f0200b7;
public static int ic_mr_button_connected_25_light=0x7f0200b8;
public static int ic_mr_button_connected_26_dark=0x7f0200b9;
public static int ic_mr_button_connected_26_light=0x7f0200ba;
public static int ic_mr_button_connected_27_dark=0x7f0200bb;
public static int ic_mr_button_connected_27_light=0x7f0200bc;
public static int ic_mr_button_connected_28_dark=0x7f0200bd;
public static int ic_mr_button_connected_28_light=0x7f0200be;
public static int ic_mr_button_connected_29_dark=0x7f0200bf;
public static int ic_mr_button_connected_29_light=0x7f0200c0;
public static int ic_mr_button_connected_30_dark=0x7f0200c1;
public static int ic_mr_button_connected_30_light=0x7f0200c2;
public static int ic_mr_button_connecting_00_dark=0x7f0200c3;
public static int ic_mr_button_connecting_00_light=0x7f0200c4;
public static int ic_mr_button_connecting_01_dark=0x7f0200c5;
public static int ic_mr_button_connecting_01_light=0x7f0200c6;
public static int ic_mr_button_connecting_02_dark=0x7f0200c7;
public static int ic_mr_button_connecting_02_light=0x7f0200c8;
public static int ic_mr_button_connecting_03_dark=0x7f0200c9;
public static int ic_mr_button_connecting_03_light=0x7f0200ca;
public static int ic_mr_button_connecting_04_dark=0x7f0200cb;
public static int ic_mr_button_connecting_04_light=0x7f0200cc;
public static int ic_mr_button_connecting_05_dark=0x7f0200cd;
public static int ic_mr_button_connecting_05_light=0x7f0200ce;
public static int ic_mr_button_connecting_06_dark=0x7f0200cf;
public static int ic_mr_button_connecting_06_light=0x7f0200d0;
public static int ic_mr_button_connecting_07_dark=0x7f0200d1;
public static int ic_mr_button_connecting_07_light=0x7f0200d2;
public static int ic_mr_button_connecting_08_dark=0x7f0200d3;
public static int ic_mr_button_connecting_08_light=0x7f0200d4;
public static int ic_mr_button_connecting_09_dark=0x7f0200d5;
public static int ic_mr_button_connecting_09_light=0x7f0200d6;
public static int ic_mr_button_connecting_10_dark=0x7f0200d7;
public static int ic_mr_button_connecting_10_light=0x7f0200d8;
public static int ic_mr_button_connecting_11_dark=0x7f0200d9;
public static int ic_mr_button_connecting_11_light=0x7f0200da;
public static int ic_mr_button_connecting_12_dark=0x7f0200db;
public static int ic_mr_button_connecting_12_light=0x7f0200dc;
public static int ic_mr_button_connecting_13_dark=0x7f0200dd;
public static int ic_mr_button_connecting_13_light=0x7f0200de;
public static int ic_mr_button_connecting_14_dark=0x7f0200df;
public static int ic_mr_button_connecting_14_light=0x7f0200e0;
public static int ic_mr_button_connecting_15_dark=0x7f0200e1;
public static int ic_mr_button_connecting_15_light=0x7f0200e2;
public static int ic_mr_button_connecting_16_dark=0x7f0200e3;
public static int ic_mr_button_connecting_16_light=0x7f0200e4;
public static int ic_mr_button_connecting_17_dark=0x7f0200e5;
public static int ic_mr_button_connecting_17_light=0x7f0200e6;
public static int ic_mr_button_connecting_18_dark=0x7f0200e7;
public static int ic_mr_button_connecting_18_light=0x7f0200e8;
public static int ic_mr_button_connecting_19_dark=0x7f0200e9;
public static int ic_mr_button_connecting_19_light=0x7f0200ea;
public static int ic_mr_button_connecting_20_dark=0x7f0200eb;
public static int ic_mr_button_connecting_20_light=0x7f0200ec;
public static int ic_mr_button_connecting_21_dark=0x7f0200ed;
public static int ic_mr_button_connecting_21_light=0x7f0200ee;
public static int ic_mr_button_connecting_22_dark=0x7f0200ef;
public static int ic_mr_button_connecting_22_light=0x7f0200f0;
public static int ic_mr_button_connecting_23_dark=0x7f0200f1;
public static int ic_mr_button_connecting_23_light=0x7f0200f2;
public static int ic_mr_button_connecting_24_dark=0x7f0200f3;
public static int ic_mr_button_connecting_24_light=0x7f0200f4;
public static int ic_mr_button_connecting_25_dark=0x7f0200f5;
public static int ic_mr_button_connecting_25_light=0x7f0200f6;
public static int ic_mr_button_connecting_26_dark=0x7f0200f7;
public static int ic_mr_button_connecting_26_light=0x7f0200f8;
public static int ic_mr_button_connecting_27_dark=0x7f0200f9;
public static int ic_mr_button_connecting_27_light=0x7f0200fa;
public static int ic_mr_button_connecting_28_dark=0x7f0200fb;
public static int ic_mr_button_connecting_28_light=0x7f0200fc;
public static int ic_mr_button_connecting_29_dark=0x7f0200fd;
public static int ic_mr_button_connecting_29_light=0x7f0200fe;
public static int ic_mr_button_connecting_30_dark=0x7f0200ff;
public static int ic_mr_button_connecting_30_light=0x7f020100;
public static int ic_mr_button_disabled_dark=0x7f020101;
public static int ic_mr_button_disabled_light=0x7f020102;
public static int ic_mr_button_disconnected_dark=0x7f020103;
public static int ic_mr_button_disconnected_light=0x7f020104;
public static int ic_mr_button_grey=0x7f020105;
public static int ic_vol_type_speaker_dark=0x7f020106;
public static int ic_vol_type_speaker_group_dark=0x7f020107;
public static int ic_vol_type_speaker_group_light=0x7f020108;
public static int ic_vol_type_speaker_light=0x7f020109;
public static int ic_vol_type_tv_dark=0x7f02010a;
public static int ic_vol_type_tv_light=0x7f02010b;
public static int mr_button_connected_dark=0x7f02010c;
public static int mr_button_connected_light=0x7f02010d;
public static int mr_button_connecting_dark=0x7f02010e;
public static int mr_button_connecting_light=0x7f02010f;
public static int mr_button_dark=0x7f020110;
public static int mr_button_light=0x7f020111;
public static int mr_dialog_close_dark=0x7f020112;
public static int mr_dialog_close_light=0x7f020113;
public static int mr_dialog_material_background_dark=0x7f020114;
public static int mr_dialog_material_background_light=0x7f020115;
public static int mr_group_collapse=0x7f020116;
public static int mr_group_expand=0x7f020117;
public static int mr_media_pause_dark=0x7f020118;
public static int mr_media_pause_light=0x7f020119;
public static int mr_media_play_dark=0x7f02011a;
public static int mr_media_play_light=0x7f02011b;
public static int mr_media_stop_dark=0x7f02011c;
public static int mr_media_stop_light=0x7f02011d;
public static int mr_vol_type_audiotrack_dark=0x7f02011e;
public static int mr_vol_type_audiotrack_light=0x7f02011f;
public static int navigation_empty_icon=0x7f020120;
public static int notification_action_background=0x7f020121;
public static int notification_bg=0x7f020122;
public static int notification_bg_low=0x7f020123;
public static int notification_bg_low_normal=0x7f020124;
public static int notification_bg_low_pressed=0x7f020125;
public static int notification_bg_normal=0x7f020126;
public static int notification_bg_normal_pressed=0x7f020127;
public static int notification_icon_background=0x7f020128;
public static int notification_template_icon_bg=0x7f02012d;
public static int notification_template_icon_low_bg=0x7f02012e;
public static int notification_tile_bg=0x7f020129;
public static int notify_panel_notification_icon_bg=0x7f02012a;
public static int tooltip_frame_dark=0x7f02012b;
public static int tooltip_frame_light=0x7f02012c;
}
public static final class id {
public static int ALT=0x7f090032;
public static int CTRL=0x7f090033;
public static int Editar=0x7f09009e;
public static int Eliminar=0x7f09009f;
public static int FUNCTION=0x7f090034;
public static int META=0x7f090035;
public static int SHIFT=0x7f090036;
public static int SYM=0x7f090037;
public static int action0=0x7f0900bd;
public static int action_bar=0x7f09007c;
public static int action_bar_activity_content=0x7f090001;
public static int action_bar_container=0x7f09007b;
public static int action_bar_root=0x7f090077;
public static int action_bar_spinner=0x7f090002;
public static int action_bar_subtitle=0x7f09005b;
public static int action_bar_title=0x7f09005a;
public static int action_container=0x7f0900ba;
public static int action_context_bar=0x7f09007d;
public static int action_divider=0x7f0900c1;
public static int action_image=0x7f0900bb;
public static int action_menu_divider=0x7f090003;
public static int action_menu_presenter=0x7f090004;
public static int action_mode_bar=0x7f090079;
public static int action_mode_bar_stub=0x7f090078;
public static int action_mode_close_button=0x7f09005c;
public static int action_text=0x7f0900bc;
public static int actions=0x7f0900ca;
public static int activity_chooser_view_content=0x7f09005d;
public static int add=0x7f090027;
public static int alertTitle=0x7f090070;
public static int all=0x7f090052;
public static int always=0x7f090038;
public static int async=0x7f090056;
public static int auto=0x7f090044;
public static int beginning=0x7f09002f;
public static int blocking=0x7f090057;
public static int bottom=0x7f09003d;
public static int btnAgregar=0x7f09009d;
public static int buttonPanel=0x7f090063;
public static int cancel_action=0x7f0900be;
public static int center=0x7f090045;
public static int center_horizontal=0x7f090046;
public static int center_vertical=0x7f090047;
public static int checkbox=0x7f090073;
public static int chronometer=0x7f0900c6;
public static int clip_horizontal=0x7f09004e;
public static int clip_vertical=0x7f09004f;
public static int collapseActionView=0x7f090039;
public static int container=0x7f09008d;
public static int contentPanel=0x7f090066;
public static int coordinator=0x7f09008e;
public static int custom=0x7f09006d;
public static int customPanel=0x7f09006c;
public static int decor_content_parent=0x7f09007a;
public static int default_activity_button=0x7f090060;
public static int design_bottom_sheet=0x7f090090;
public static int design_menu_item_action_area=0x7f090097;
public static int design_menu_item_action_area_stub=0x7f090096;
public static int design_menu_item_text=0x7f090095;
public static int design_navigation_view=0x7f090094;
public static int disableHome=0x7f090020;
public static int edit_query=0x7f09007e;
public static int end=0x7f090030;
public static int end_padder=0x7f0900cc;
public static int enterAlways=0x7f09003f;
public static int enterAlwaysCollapsed=0x7f090040;
public static int exitUntilCollapsed=0x7f090041;
public static int expand_activities_button=0x7f09005e;
public static int expanded_menu=0x7f090072;
public static int fill=0x7f090050;
public static int fill_horizontal=0x7f090051;
public static int fill_vertical=0x7f090048;
public static int fixed=0x7f090054;
public static int forever=0x7f090058;
public static int ghost_view=0x7f09000a;
public static int home=0x7f090005;
public static int homeAsUp=0x7f090021;
public static int icon=0x7f090062;
public static int icon_group=0x7f0900cb;
public static int ifRoom=0x7f09003a;
public static int image=0x7f09005f;
public static int info=0x7f0900c7;
public static int italic=0x7f090059;
public static int item_touch_helper_previous_elevation=0x7f090000;
public static int largeLabel=0x7f09008c;
public static int left=0x7f090049;
public static int line1=0x7f090017;
public static int line3=0x7f090018;
public static int listMode=0x7f09001d;
public static int list_item=0x7f090061;
public static int masked=0x7f0900cf;
public static int media_actions=0x7f0900c0;
public static int message=0x7f0900cd;
public static int middle=0x7f090031;
public static int mini=0x7f090053;
public static int mr_art=0x7f0900ac;
public static int mr_chooser_list=0x7f0900a1;
public static int mr_chooser_route_desc=0x7f0900a4;
public static int mr_chooser_route_icon=0x7f0900a2;
public static int mr_chooser_route_name=0x7f0900a3;
public static int mr_chooser_title=0x7f0900a0;
public static int mr_close=0x7f0900a9;
public static int mr_control_divider=0x7f0900af;
public static int mr_control_playback_ctrl=0x7f0900b5;
public static int mr_control_subtitle=0x7f0900b8;
public static int mr_control_title=0x7f0900b7;
public static int mr_control_title_container=0x7f0900b6;
public static int mr_custom_control=0x7f0900aa;
public static int mr_default_control=0x7f0900ab;
public static int mr_dialog_area=0x7f0900a6;
public static int mr_expandable_area=0x7f0900a5;
public static int mr_group_expand_collapse=0x7f0900b9;
public static int mr_media_main_control=0x7f0900ad;
public static int mr_name=0x7f0900a8;
public static int mr_playback_control=0x7f0900ae;
public static int mr_title_bar=0x7f0900a7;
public static int mr_volume_control=0x7f0900b0;
public static int mr_volume_group_list=0x7f0900b1;
public static int mr_volume_item_icon=0x7f0900b3;
public static int mr_volume_slider=0x7f0900b4;
public static int multiply=0x7f090028;
public static int navigation_header_container=0x7f090093;
public static int never=0x7f09003b;
public static int none=0x7f090022;
public static int normal=0x7f09001e;
public static int notification_background=0x7f0900c9;
public static int notification_main_column=0x7f0900c3;
public static int notification_main_column_container=0x7f0900c2;
public static int parallax=0x7f09004c;
public static int parentPanel=0x7f090065;
public static int parent_matrix=0x7f09000b;
public static int pin=0x7f09004d;
public static int progress_circular=0x7f090006;
public static int progress_horizontal=0x7f090007;
public static int radio=0x7f090075;
public static int right=0x7f09004a;
public static int right_icon=0x7f0900c8;
public static int right_side=0x7f0900c4;
public static int save_image_matrix=0x7f09000c;
public static int save_non_transition_alpha=0x7f09000d;
public static int save_scale_type=0x7f09000e;
public static int screen=0x7f090029;
public static int scroll=0x7f090042;
public static int scrollIndicatorDown=0x7f09006b;
public static int scrollIndicatorUp=0x7f090067;
public static int scrollView=0x7f090068;
public static int scrollable=0x7f090055;
public static int search_badge=0x7f090080;
public static int search_bar=0x7f09007f;
public static int search_button=0x7f090081;
public static int search_close_btn=0x7f090086;
public static int search_edit_frame=0x7f090082;
public static int search_go_btn=0x7f090088;
public static int search_mag_icon=0x7f090083;
public static int search_plate=0x7f090084;
public static int search_src_text=0x7f090085;
public static int search_voice_btn=0x7f090089;
public static int select_dialog_listview=0x7f09008a;
public static int shortcut=0x7f090074;
public static int showCustom=0x7f090023;
public static int showHome=0x7f090024;
public static int showTitle=0x7f090025;
public static int smallLabel=0x7f09008b;
public static int snackbar_action=0x7f090092;
public static int snackbar_text=0x7f090091;
public static int snap=0x7f090043;
public static int spacer=0x7f090064;
public static int split_action_bar=0x7f090008;
public static int src_atop=0x7f09002a;
public static int src_in=0x7f09002b;
public static int src_over=0x7f09002c;
public static int start=0x7f09004b;
public static int status_bar_latest_event_content=0x7f0900bf;
public static int submenuarrow=0x7f090076;
public static int submit_area=0x7f090087;
public static int tabMode=0x7f09001f;
public static int tag_transition_group=0x7f090019;
public static int text=0x7f09001a;
public static int text2=0x7f09001b;
public static int textSpacerNoButtons=0x7f09006a;
public static int textSpacerNoTitle=0x7f090069;
public static int text_input_password_toggle=0x7f090098;
public static int textinput_counter=0x7f090014;
public static int textinput_error=0x7f090015;
public static int time=0x7f0900c5;
public static int title=0x7f09001c;
public static int titleDividerNoCustom=0x7f090071;
public static int title_template=0x7f09006f;
public static int top=0x7f09003e;
public static int topPanel=0x7f09006e;
public static int touch_outside=0x7f09008f;
public static int transition_current_scene=0x7f09000f;
public static int transition_layout_save=0x7f090010;
public static int transition_position=0x7f090011;
public static int transition_scene_layoutid_cache=0x7f090012;
public static int transition_transform=0x7f090013;
public static int txtDireccion=0x7f09009b;
public static int txtID=0x7f090099;
public static int txtNombre=0x7f09009a;
public static int txtTelefono=0x7f09009c;
public static int uniform=0x7f09002d;
public static int up=0x7f090009;
public static int useLogo=0x7f090026;
public static int view_offset_helper=0x7f090016;
public static int visible=0x7f0900ce;
public static int volume_item_container=0x7f0900b2;
public static int withText=0x7f09003c;
public static int wrap_content=0x7f09002e;
}
public static final class integer {
public static int abc_config_activityDefaultDur=0x7f0b0003;
public static int abc_config_activityShortDur=0x7f0b0004;
public static int app_bar_elevation_anim_duration=0x7f0b0008;
public static int bottom_sheet_slide_duration=0x7f0b0009;
public static int cancel_button_image_alpha=0x7f0b0005;
public static int config_tooltipAnimTime=0x7f0b0006;
public static int design_snackbar_text_max_lines=0x7f0b0007;
public static int hide_password_duration=0x7f0b000a;
public static int mr_controller_volume_group_list_animation_duration_ms=0x7f0b0000;
public static int mr_controller_volume_group_list_fade_in_duration_ms=0x7f0b0001;
public static int mr_controller_volume_group_list_fade_out_duration_ms=0x7f0b0002;
public static int show_password_duration=0x7f0b000b;
public static int status_bar_notification_info_maxnum=0x7f0b000c;
}
public static final class interpolator {
public static int mr_fast_out_slow_in=0x7f070000;
public static int mr_linear_out_slow_in=0x7f070001;
}
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 design_bottom_navigation_item=0x7f04001a;
public static int design_bottom_sheet_dialog=0x7f04001b;
public static int design_layout_snackbar=0x7f04001c;
public static int design_layout_snackbar_include=0x7f04001d;
public static int design_layout_tab_icon=0x7f04001e;
public static int design_layout_tab_text=0x7f04001f;
public static int design_menu_item_action_area=0x7f040020;
public static int design_navigation_item=0x7f040021;
public static int design_navigation_item_header=0x7f040022;
public static int design_navigation_item_separator=0x7f040023;
public static int design_navigation_item_subheader=0x7f040024;
public static int design_navigation_menu=0x7f040025;
public static int design_navigation_menu_item=0x7f040026;
public static int design_text_input_password_icon=0x7f040027;
public static int listacliente=0x7f040028;
public static int maincliente=0x7f040029;
public static int mr_chooser_dialog=0x7f04002a;
public static int mr_chooser_list_item=0x7f04002b;
public static int mr_controller_material_dialog_b=0x7f04002c;
public static int mr_controller_volume_item=0x7f04002d;
public static int mr_playback_control=0x7f04002e;
public static int mr_volume_control=0x7f04002f;
public static int notification_action=0x7f040030;
public static int notification_action_tombstone=0x7f040031;
public static int notification_media_action=0x7f040032;
public static int notification_media_cancel_action=0x7f040033;
public static int notification_template_big_media=0x7f040034;
public static int notification_template_big_media_custom=0x7f040035;
public static int notification_template_big_media_narrow=0x7f040036;
public static int notification_template_big_media_narrow_custom=0x7f040037;
public static int notification_template_custom_big=0x7f040038;
public static int notification_template_icon_group=0x7f040039;
public static int notification_template_lines_media=0x7f04003a;
public static int notification_template_media=0x7f04003b;
public static int notification_template_media_custom=0x7f04003c;
public static int notification_template_part_chronometer=0x7f04003d;
public static int notification_template_part_time=0x7f04003e;
public static int select_dialog_item_material=0x7f04003f;
public static int select_dialog_multichoice_material=0x7f040040;
public static int select_dialog_singlechoice_material=0x7f040041;
public static int support_simple_spinner_dropdown_item=0x7f040042;
public static int tooltip=0x7f040043;
}
public static final class mipmap {
public static int icon=0x7f030000;
public static int icon_round=0x7f030001;
public static int launcher_foreground=0x7f030002;
}
public static final class string {
public static int abc_action_bar_home_description=0x7f0a0015;
public static int abc_action_bar_up_description=0x7f0a0016;
public static int abc_action_menu_overflow_description=0x7f0a0017;
public static int abc_action_mode_done=0x7f0a0018;
public static int abc_activity_chooser_view_see_all=0x7f0a0019;
public static int abc_activitychooserview_choose_application=0x7f0a001a;
public static int abc_capital_off=0x7f0a001b;
public static int abc_capital_on=0x7f0a001c;
public static int abc_font_family_body_1_material=0x7f0a0027;
public static int abc_font_family_body_2_material=0x7f0a0028;
public static int abc_font_family_button_material=0x7f0a0029;
public static int abc_font_family_caption_material=0x7f0a002a;
public static int abc_font_family_display_1_material=0x7f0a002b;
public static int abc_font_family_display_2_material=0x7f0a002c;
public static int abc_font_family_display_3_material=0x7f0a002d;
public static int abc_font_family_display_4_material=0x7f0a002e;
public static int abc_font_family_headline_material=0x7f0a002f;
public static int abc_font_family_menu_material=0x7f0a0030;
public static int abc_font_family_subhead_material=0x7f0a0031;
public static int abc_font_family_title_material=0x7f0a0032;
public static int abc_search_hint=0x7f0a001d;
public static int abc_searchview_description_clear=0x7f0a001e;
public static int abc_searchview_description_query=0x7f0a001f;
public static int abc_searchview_description_search=0x7f0a0020;
public static int abc_searchview_description_submit=0x7f0a0021;
public static int abc_searchview_description_voice=0x7f0a0022;
public static int abc_shareactionprovider_share_with=0x7f0a0023;
public static int abc_shareactionprovider_share_with_application=0x7f0a0024;
public static int abc_toolbar_collapse_description=0x7f0a0025;
public static int appbar_scrolling_view_behavior=0x7f0a0033;
public static int bottom_sheet_behavior=0x7f0a0034;
public static int character_counter_pattern=0x7f0a0035;
public static int mr_button_content_description=0x7f0a0000;
public static int mr_cast_button_connected=0x7f0a0001;
public static int mr_cast_button_connecting=0x7f0a0002;
public static int mr_cast_button_disconnected=0x7f0a0003;
public static int mr_chooser_searching=0x7f0a0004;
public static int mr_chooser_title=0x7f0a0005;
public static int mr_controller_album_art=0x7f0a0006;
public static int mr_controller_casting_screen=0x7f0a0007;
public static int mr_controller_close_description=0x7f0a0008;
public static int mr_controller_collapse_group=0x7f0a0009;
public static int mr_controller_disconnect=0x7f0a000a;
public static int mr_controller_expand_group=0x7f0a000b;
public static int mr_controller_no_info_available=0x7f0a000c;
public static int mr_controller_no_media_selected=0x7f0a000d;
public static int mr_controller_pause=0x7f0a000e;
public static int mr_controller_play=0x7f0a000f;
public static int mr_controller_stop=0x7f0a0010;
public static int mr_controller_stop_casting=0x7f0a0011;
public static int mr_controller_volume_slider=0x7f0a0012;
public static int mr_system_route_name=0x7f0a0013;
public static int mr_user_route_category_name=0x7f0a0014;
public static int password_toggle_content_description=0x7f0a0036;
public static int path_password_eye=0x7f0a0037;
public static int path_password_eye_mask_strike_through=0x7f0a0038;
public static int path_password_eye_mask_visible=0x7f0a0039;
public static int path_password_strike_through=0x7f0a003a;
public static int search_menu_title=0x7f0a0026;
public static int status_bar_notification_info_overflow=0x7f0a003b;
}
public static final class style {
public static int AlertDialog_AppCompat=0x7f0c00a4;
public static int AlertDialog_AppCompat_Light=0x7f0c00a5;
public static int Animation_AppCompat_Dialog=0x7f0c00a6;
public static int Animation_AppCompat_DropDownUp=0x7f0c00a7;
public static int Animation_AppCompat_Tooltip=0x7f0c00a8;
public static int Animation_Design_BottomSheetDialog=0x7f0c016e;
public static int AppCompatDialogStyle=0x7f0c0191;
public static int Base_AlertDialog_AppCompat=0x7f0c00a9;
public static int Base_AlertDialog_AppCompat_Light=0x7f0c00aa;
public static int Base_Animation_AppCompat_Dialog=0x7f0c00ab;
public static int Base_Animation_AppCompat_DropDownUp=0x7f0c00ac;
public static int Base_Animation_AppCompat_Tooltip=0x7f0c00ad;
public static int Base_CardView=0x7f0c000c;
public static int Base_DialogWindowTitle_AppCompat=0x7f0c00ae;
public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0c00af;
public static int Base_TextAppearance_AppCompat=0x7f0c0048;
public static int Base_TextAppearance_AppCompat_Body1=0x7f0c0049;
public static int Base_TextAppearance_AppCompat_Body2=0x7f0c004a;
public static int Base_TextAppearance_AppCompat_Button=0x7f0c0036;
public static int Base_TextAppearance_AppCompat_Caption=0x7f0c004b;
public static int Base_TextAppearance_AppCompat_Display1=0x7f0c004c;
public static int Base_TextAppearance_AppCompat_Display2=0x7f0c004d;
public static int Base_TextAppearance_AppCompat_Display3=0x7f0c004e;
public static int Base_TextAppearance_AppCompat_Display4=0x7f0c004f;
public static int Base_TextAppearance_AppCompat_Headline=0x7f0c0050;
public static int Base_TextAppearance_AppCompat_Inverse=0x7f0c001a;
public static int Base_TextAppearance_AppCompat_Large=0x7f0c0051;
public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c001b;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c0052;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c0053;
public static int Base_TextAppearance_AppCompat_Medium=0x7f0c0054;
public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c001c;
public static int Base_TextAppearance_AppCompat_Menu=0x7f0c0055;
public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0c00b0;
public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0056;
public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c0057;
public static int Base_TextAppearance_AppCompat_Small=0x7f0c0058;
public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c001d;
public static int Base_TextAppearance_AppCompat_Subhead=0x7f0c0059;
public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c001e;
public static int Base_TextAppearance_AppCompat_Title=0x7f0c005a;
public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c001f;
public static int Base_TextAppearance_AppCompat_Tooltip=0x7f0c00b1;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c0095;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c005b;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c005c;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c005d;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c005e;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c005f;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c0060;
public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f0c0061;
public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c009c;
public static int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c009d;
public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c0096;
public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00b2;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0062;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0063;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0064;
public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c0065;
public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0066;
public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c00b3;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0067;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0068;
public static int Base_Theme_AppCompat=0x7f0c0069;
public static int Base_Theme_AppCompat_CompactMenu=0x7f0c00b4;
public static int Base_Theme_AppCompat_Dialog=0x7f0c0020;
public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0c0021;
public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c00b5;
public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0c0022;
public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c0010;
public static int Base_Theme_AppCompat_Light=0x7f0c006a;
public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c00b6;
public static int Base_Theme_AppCompat_Light_Dialog=0x7f0c0023;
public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0c0024;
public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c00b7;
public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0025;
public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0011;
public static int Base_ThemeOverlay_AppCompat=0x7f0c00b8;
public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c00b9;
public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0c00ba;
public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c00bb;
public static int Base_ThemeOverlay_AppCompat_Dialog=0x7f0c0026;
public static int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0027;
public static int Base_ThemeOverlay_AppCompat_Light=0x7f0c00bc;
public static int Base_V11_Theme_AppCompat_Dialog=0x7f0c0028;
public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0c0029;
public static int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0c002a;
public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0c0032;
public static int Base_V12_Widget_AppCompat_EditText=0x7f0c0033;
public static int Base_V14_Widget_Design_AppBarLayout=0x7f0c016f;
public static int Base_V21_Theme_AppCompat=0x7f0c006b;
public static int Base_V21_Theme_AppCompat_Dialog=0x7f0c006c;
public static int Base_V21_Theme_AppCompat_Light=0x7f0c006d;
public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c006e;
public static int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0c006f;
public static int Base_V21_Widget_Design_AppBarLayout=0x7f0c016b;
public static int Base_V22_Theme_AppCompat=0x7f0c0093;
public static int Base_V22_Theme_AppCompat_Light=0x7f0c0094;
public static int Base_V23_Theme_AppCompat=0x7f0c0097;
public static int Base_V23_Theme_AppCompat_Light=0x7f0c0098;
public static int Base_V26_Theme_AppCompat=0x7f0c00a0;
public static int Base_V26_Theme_AppCompat_Light=0x7f0c00a1;
public static int Base_V26_Widget_AppCompat_Toolbar=0x7f0c00a2;
public static int Base_V26_Widget_Design_AppBarLayout=0x7f0c016d;
public static int Base_V7_Theme_AppCompat=0x7f0c00bd;
public static int Base_V7_Theme_AppCompat_Dialog=0x7f0c00be;
public static int Base_V7_Theme_AppCompat_Light=0x7f0c00bf;
public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0c00c0;
public static int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0c00c1;
public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0c00c2;
public static int Base_V7_Widget_AppCompat_EditText=0x7f0c00c3;
public static int Base_V7_Widget_AppCompat_Toolbar=0x7f0c00c4;
public static int Base_Widget_AppCompat_ActionBar=0x7f0c00c5;
public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c00c6;
public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c00c7;
public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c0070;
public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c0071;
public static int Base_Widget_AppCompat_ActionButton=0x7f0c0072;
public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c0073;
public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c0074;
public static int Base_Widget_AppCompat_ActionMode=0x7f0c00c8;
public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0c00c9;
public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0034;
public static int Base_Widget_AppCompat_Button=0x7f0c0075;
public static int Base_Widget_AppCompat_Button_Borderless=0x7f0c0076;
public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0c0077;
public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c00ca;
public static int Base_Widget_AppCompat_Button_Colored=0x7f0c0099;
public static int Base_Widget_AppCompat_Button_Small=0x7f0c0078;
public static int Base_Widget_AppCompat_ButtonBar=0x7f0c0079;
public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c00cb;
public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0c007a;
public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0c007b;
public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c00cc;
public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c000f;
public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c00cd;
public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c007c;
public static int Base_Widget_AppCompat_EditText=0x7f0c0035;
public static int Base_Widget_AppCompat_ImageButton=0x7f0c007d;
public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0c00ce;
public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c00cf;
public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c00d0;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c007e;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c007f;
public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0080;
public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c0081;
public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0082;
public static int Base_Widget_AppCompat_ListMenuView=0x7f0c00d1;
public static int Base_Widget_AppCompat_ListPopupWindow=0x7f0c0083;
public static int Base_Widget_AppCompat_ListView=0x7f0c0084;
public static int Base_Widget_AppCompat_ListView_DropDown=0x7f0c0085;
public static int Base_Widget_AppCompat_ListView_Menu=0x7f0c0086;
public static int Base_Widget_AppCompat_PopupMenu=0x7f0c0087;
public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0088;
public static int Base_Widget_AppCompat_PopupWindow=0x7f0c00d2;
public static int Base_Widget_AppCompat_ProgressBar=0x7f0c002b;
public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c002c;
public static int Base_Widget_AppCompat_RatingBar=0x7f0c0089;
public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0c009a;
public static int Base_Widget_AppCompat_RatingBar_Small=0x7f0c009b;
public static int Base_Widget_AppCompat_SearchView=0x7f0c00d3;
public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0c00d4;
public static int Base_Widget_AppCompat_SeekBar=0x7f0c008a;
public static int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0c00d5;
public static int Base_Widget_AppCompat_Spinner=0x7f0c008b;
public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c0012;
public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c008c;
public static int Base_Widget_AppCompat_Toolbar=0x7f0c00a3;
public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c008d;
public static int Base_Widget_Design_AppBarLayout=0x7f0c016c;
public static int Base_Widget_Design_TabLayout=0x7f0c0170;
public static int CardView=0x7f0c000b;
public static int CardView_Dark=0x7f0c000d;
public static int CardView_Light=0x7f0c000e;
public static int MainTheme=0x7f0c018f;
/** Base theme applied no matter what API
*/
public static int MainTheme_Base=0x7f0c0190;
public static int Platform_AppCompat=0x7f0c002d;
public static int Platform_AppCompat_Light=0x7f0c002e;
public static int Platform_ThemeOverlay_AppCompat=0x7f0c008e;
public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f0c008f;
public static int Platform_ThemeOverlay_AppCompat_Light=0x7f0c0090;
public static int Platform_V11_AppCompat=0x7f0c002f;
public static int Platform_V11_AppCompat_Light=0x7f0c0030;
public static int Platform_V14_AppCompat=0x7f0c0037;
public static int Platform_V14_AppCompat_Light=0x7f0c0038;
public static int Platform_V21_AppCompat=0x7f0c0091;
public static int Platform_V21_AppCompat_Light=0x7f0c0092;
public static int Platform_V25_AppCompat=0x7f0c009e;
public static int Platform_V25_AppCompat_Light=0x7f0c009f;
public static int Platform_Widget_AppCompat_Spinner=0x7f0c0031;
public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0c003a;
public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c003b;
public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0c003c;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c003d;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c003e;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c003f;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c0040;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c0041;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c0042;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c0043;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c0044;
public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c0045;
public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0c0046;
public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c0047;
public static int TextAppearance_AppCompat=0x7f0c00d6;
public static int TextAppearance_AppCompat_Body1=0x7f0c00d7;
public static int TextAppearance_AppCompat_Body2=0x7f0c00d8;
public static int TextAppearance_AppCompat_Button=0x7f0c00d9;
public static int TextAppearance_AppCompat_Caption=0x7f0c00da;
public static int TextAppearance_AppCompat_Display1=0x7f0c00db;
public static int TextAppearance_AppCompat_Display2=0x7f0c00dc;
public static int TextAppearance_AppCompat_Display3=0x7f0c00dd;
public static int TextAppearance_AppCompat_Display4=0x7f0c00de;
public static int TextAppearance_AppCompat_Headline=0x7f0c00df;
public static int TextAppearance_AppCompat_Inverse=0x7f0c00e0;
public static int TextAppearance_AppCompat_Large=0x7f0c00e1;
public static int TextAppearance_AppCompat_Large_Inverse=0x7f0c00e2;
public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c00e3;
public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c00e4;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c00e5;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c00e6;
public static int TextAppearance_AppCompat_Medium=0x7f0c00e7;
public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0c00e8;
public static int TextAppearance_AppCompat_Menu=0x7f0c00e9;
public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c00ea;
public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0c00eb;
public static int TextAppearance_AppCompat_Small=0x7f0c00ec;
public static int TextAppearance_AppCompat_Small_Inverse=0x7f0c00ed;
public static int TextAppearance_AppCompat_Subhead=0x7f0c00ee;
public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00ef;
public static int TextAppearance_AppCompat_Title=0x7f0c00f0;
public static int TextAppearance_AppCompat_Title_Inverse=0x7f0c00f1;
public static int TextAppearance_AppCompat_Tooltip=0x7f0c0039;
public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c00f2;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c00f3;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c00f4;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c00f5;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c00f6;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c00f7;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c00f8;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c00f9;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c00fa;
public static int TextAppearance_AppCompat_Widget_Button=0x7f0c00fb;
public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c00fc;
public static int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c00fd;
public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c00fe;
public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00ff;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0100;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0101;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0102;
public static int TextAppearance_AppCompat_Widget_Switch=0x7f0c0103;
public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0104;
public static int TextAppearance_Compat_Notification=0x7f0c0188;
public static int TextAppearance_Compat_Notification_Info=0x7f0c0189;
public static int TextAppearance_Compat_Notification_Info_Media=0x7f0c0165;
public static int TextAppearance_Compat_Notification_Line2=0x7f0c018e;
public static int TextAppearance_Compat_Notification_Line2_Media=0x7f0c0169;
public static int TextAppearance_Compat_Notification_Media=0x7f0c0166;
public static int TextAppearance_Compat_Notification_Time=0x7f0c018a;
public static int TextAppearance_Compat_Notification_Time_Media=0x7f0c0167;
public static int TextAppearance_Compat_Notification_Title=0x7f0c018b;
public static int TextAppearance_Compat_Notification_Title_Media=0x7f0c0168;
public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0c0171;
public static int TextAppearance_Design_Counter=0x7f0c0172;
public static int TextAppearance_Design_Counter_Overflow=0x7f0c0173;
public static int TextAppearance_Design_Error=0x7f0c0174;
public static int TextAppearance_Design_Hint=0x7f0c0175;
public static int TextAppearance_Design_Snackbar_Message=0x7f0c0176;
public static int TextAppearance_Design_Tab=0x7f0c0177;
public static int TextAppearance_MediaRouter_PrimaryText=0x7f0c0000;
public static int TextAppearance_MediaRouter_SecondaryText=0x7f0c0001;
public static int TextAppearance_MediaRouter_Title=0x7f0c0002;
public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c0105;
public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0106;
public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0107;
public static int Theme_AppCompat=0x7f0c0108;
public static int Theme_AppCompat_CompactMenu=0x7f0c0109;
public static int Theme_AppCompat_DayNight=0x7f0c0013;
public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f0c0014;
public static int Theme_AppCompat_DayNight_Dialog=0x7f0c0015;
public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0c0016;
public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0c0017;
public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0c0018;
public static int Theme_AppCompat_DayNight_NoActionBar=0x7f0c0019;
public static int Theme_AppCompat_Dialog=0x7f0c010a;
public static int Theme_AppCompat_Dialog_Alert=0x7f0c010b;
public static int Theme_AppCompat_Dialog_MinWidth=0x7f0c010c;
public static int Theme_AppCompat_DialogWhenLarge=0x7f0c010d;
public static int Theme_AppCompat_Light=0x7f0c010e;
public static int Theme_AppCompat_Light_DarkActionBar=0x7f0c010f;
public static int Theme_AppCompat_Light_Dialog=0x7f0c0110;
public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0c0111;
public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0112;
public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0113;
public static int Theme_AppCompat_Light_NoActionBar=0x7f0c0114;
public static int Theme_AppCompat_NoActionBar=0x7f0c0115;
public static int Theme_Design=0x7f0c0178;
public static int Theme_Design_BottomSheetDialog=0x7f0c0179;
public static int Theme_Design_Light=0x7f0c017a;
public static int Theme_Design_Light_BottomSheetDialog=0x7f0c017b;
public static int Theme_Design_Light_NoActionBar=0x7f0c017c;
public static int Theme_Design_NoActionBar=0x7f0c017d;
public static int Theme_MediaRouter=0x7f0c0003;
public static int Theme_MediaRouter_Light=0x7f0c0004;
public static int Theme_MediaRouter_Light_DarkControlPanel=0x7f0c0005;
public static int Theme_MediaRouter_LightControlPanel=0x7f0c0006;
public static int ThemeOverlay_AppCompat=0x7f0c0116;
public static int ThemeOverlay_AppCompat_ActionBar=0x7f0c0117;
public static int ThemeOverlay_AppCompat_Dark=0x7f0c0118;
public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c0119;
public static int ThemeOverlay_AppCompat_Dialog=0x7f0c011a;
public static int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c011b;
public static int ThemeOverlay_AppCompat_Light=0x7f0c011c;
public static int ThemeOverlay_MediaRouter_Dark=0x7f0c0007;
public static int ThemeOverlay_MediaRouter_Light=0x7f0c0008;
public static int Widget_AppCompat_ActionBar=0x7f0c011d;
public static int Widget_AppCompat_ActionBar_Solid=0x7f0c011e;
public static int Widget_AppCompat_ActionBar_TabBar=0x7f0c011f;
public static int Widget_AppCompat_ActionBar_TabText=0x7f0c0120;
public static int Widget_AppCompat_ActionBar_TabView=0x7f0c0121;
public static int Widget_AppCompat_ActionButton=0x7f0c0122;
public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0c0123;
public static int Widget_AppCompat_ActionButton_Overflow=0x7f0c0124;
public static int Widget_AppCompat_ActionMode=0x7f0c0125;
public static int Widget_AppCompat_ActivityChooserView=0x7f0c0126;
public static int Widget_AppCompat_AutoCompleteTextView=0x7f0c0127;
public static int Widget_AppCompat_Button=0x7f0c0128;
public static int Widget_AppCompat_Button_Borderless=0x7f0c0129;
public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0c012a;
public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c012b;
public static int Widget_AppCompat_Button_Colored=0x7f0c012c;
public static int Widget_AppCompat_Button_Small=0x7f0c012d;
public static int Widget_AppCompat_ButtonBar=0x7f0c012e;
public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c012f;
public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f0c0130;
public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f0c0131;
public static int Widget_AppCompat_CompoundButton_Switch=0x7f0c0132;
public static int Widget_AppCompat_DrawerArrowToggle=0x7f0c0133;
public static int Widget_AppCompat_DropDownItem_Spinner=0x7f0c0134;
public static int Widget_AppCompat_EditText=0x7f0c0135;
public static int Widget_AppCompat_ImageButton=0x7f0c0136;
public static int Widget_AppCompat_Light_ActionBar=0x7f0c0137;
public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0138;
public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c0139;
public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c013a;
public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c013b;
public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c013c;
public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c013d;
public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c013e;
public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c013f;
public static int Widget_AppCompat_Light_ActionButton=0x7f0c0140;
public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c0141;
public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c0142;
public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c0143;
public static int Widget_AppCompat_Light_ActivityChooserView=0x7f0c0144;
public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c0145;
public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c0146;
public static int Widget_AppCompat_Light_ListPopupWindow=0x7f0c0147;
public static int Widget_AppCompat_Light_ListView_DropDown=0x7f0c0148;
public static int Widget_AppCompat_Light_PopupMenu=0x7f0c0149;
public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c014a;
public static int Widget_AppCompat_Light_SearchView=0x7f0c014b;
public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c014c;
public static int Widget_AppCompat_ListMenuView=0x7f0c014d;
public static int Widget_AppCompat_ListPopupWindow=0x7f0c014e;
public static int Widget_AppCompat_ListView=0x7f0c014f;
public static int Widget_AppCompat_ListView_DropDown=0x7f0c0150;
public static int Widget_AppCompat_ListView_Menu=0x7f0c0151;
public static int Widget_AppCompat_PopupMenu=0x7f0c0152;
public static int Widget_AppCompat_PopupMenu_Overflow=0x7f0c0153;
public static int Widget_AppCompat_PopupWindow=0x7f0c0154;
public static int Widget_AppCompat_ProgressBar=0x7f0c0155;
public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0156;
public static int Widget_AppCompat_RatingBar=0x7f0c0157;
public static int Widget_AppCompat_RatingBar_Indicator=0x7f0c0158;
public static int Widget_AppCompat_RatingBar_Small=0x7f0c0159;
public static int Widget_AppCompat_SearchView=0x7f0c015a;
public static int Widget_AppCompat_SearchView_ActionBar=0x7f0c015b;
public static int Widget_AppCompat_SeekBar=0x7f0c015c;
public static int Widget_AppCompat_SeekBar_Discrete=0x7f0c015d;
public static int Widget_AppCompat_Spinner=0x7f0c015e;
public static int Widget_AppCompat_Spinner_DropDown=0x7f0c015f;
public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c0160;
public static int Widget_AppCompat_Spinner_Underlined=0x7f0c0161;
public static int Widget_AppCompat_TextView_SpinnerItem=0x7f0c0162;
public static int Widget_AppCompat_Toolbar=0x7f0c0163;
public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c0164;
public static int Widget_Compat_NotificationActionContainer=0x7f0c018c;
public static int Widget_Compat_NotificationActionText=0x7f0c018d;
public static int Widget_Design_AppBarLayout=0x7f0c017e;
public static int Widget_Design_BottomNavigationView=0x7f0c017f;
public static int Widget_Design_BottomSheet_Modal=0x7f0c0180;
public static int Widget_Design_CollapsingToolbar=0x7f0c0181;
public static int Widget_Design_CoordinatorLayout=0x7f0c0182;
public static int Widget_Design_FloatingActionButton=0x7f0c0183;
public static int Widget_Design_NavigationView=0x7f0c0184;
public static int Widget_Design_ScrimInsetsFrameLayout=0x7f0c0185;
public static int Widget_Design_Snackbar=0x7f0c0186;
public static int Widget_Design_TabLayout=0x7f0c016a;
public static int Widget_Design_TextInputLayout=0x7f0c0187;
public static int Widget_MediaRouter_Light_MediaRouteButton=0x7f0c0009;
public static int Widget_MediaRouter_MediaRouteButton=0x7f0c000a;
}
public static final class styleable {
/** Attributes that can be used with a ActionBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background android.support.mediacompat:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit android.support.mediacompat:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked android.support.mediacompat:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd android.support.mediacompat:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions android.support.mediacompat:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft android.support.mediacompat:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight android.support.mediacompat:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart android.support.mediacompat:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation android.support.mediacompat:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout android.support.mediacompat:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions android.support.mediacompat:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider android.support.mediacompat:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation android.support.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height android.support.mediacompat:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll android.support.mediacompat:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator android.support.mediacompat:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout android.support.mediacompat:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon android.support.mediacompat:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle android.support.mediacompat:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding android.support.mediacompat:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo android.support.mediacompat:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode android.support.mediacompat:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme android.support.mediacompat:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding android.support.mediacompat:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle android.support.mediacompat:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle android.support.mediacompat:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle android.support.mediacompat:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title android.support.mediacompat:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle android.support.mediacompat:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetEndWithActions
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@see #ActionBar_contentInsetStartWithNavigation
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_elevation
@see #ActionBar_height
@see #ActionBar_hideOnContentScroll
@see #ActionBar_homeAsUpIndicator
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_popupTheme
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f010023, 0x7f010025, 0x7f010026, 0x7f010027,
0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b,
0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f,
0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033,
0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037,
0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b,
0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010085
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:background
*/
public static int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:backgroundSplit
*/
public static int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:backgroundStacked
*/
public static int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetEnd
*/
public static int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetEndWithActions
*/
public static int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetLeft
*/
public static int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetRight
*/
public static int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetStart
*/
public static int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetStartWithNavigation
*/
public static int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:customNavigationLayout
*/
public static int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:displayOptions
*/
public static int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:divider
*/
public static int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:elevation
*/
public static int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:height
*/
public static int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:hideOnContentScroll
*/
public static int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:homeAsUpIndicator
*/
public static int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:homeLayout
*/
public static int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:icon
*/
public static int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:indeterminateProgressStyle
*/
public static int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:itemPadding
*/
public static int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:logo
*/
public static int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:navigationMode
*/
public static int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:popupTheme
*/
public static int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:progressBarPadding
*/
public static int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:progressBarStyle
*/
public static int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:subtitle
*/
public static int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:subtitleTextStyle
*/
public static int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:title
*/
public static int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit android.support.mediacompat:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout android.support.mediacompat:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height android.support.mediacompat:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle android.support.mediacompat:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle android.support.mediacompat:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionMode_background
@see #ActionMode_backgroundSplit
@see #ActionMode_closeItemLayout
@see #ActionMode_height
@see #ActionMode_subtitleTextStyle
@see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode = {
0x7f010023, 0x7f010029, 0x7f01002a, 0x7f01002e,
0x7f010030, 0x7f010040
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:background
*/
public static int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:backgroundSplit
*/
public static int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:closeItemLayout
*/
public static int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:height
*/
public static int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:subtitleTextStyle
*/
public static int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount android.support.mediacompat:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010041, 0x7f010042
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:expandActivityOverflowButtonDrawable
*/
public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout android.support.mediacompat:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout android.support.mediacompat:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout android.support.mediacompat:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle android.support.mediacompat:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout android.support.mediacompat:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_showTitle
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f010043, 0x7f010044, 0x7f010045,
0x7f010046, 0x7f010047, 0x7f010048
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:buttonPanelSideLayout
*/
public static int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listItemLayout
*/
public static int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listLayout
*/
public static int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:multiChoiceItemLayout
*/
public static int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:showTitle
*/
public static int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded android.support.mediacompat:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_android_keyboardNavigationCluster
@see #AppBarLayout_android_touchscreenBlocksFocus
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x0101048f, 0x01010540, 0x7f01003e,
0x7f010118
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static 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.mediacompat.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.mediacompat:elevation
*/
public static int AppBarLayout_elevation = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible android.support.mediacompat:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010119, 0x7f01011a
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:state_collapsed
*/
public static int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator android.support.mediacompat:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f01011b, 0x7f01011c
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:layout_scrollFlags
*/
public static int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint android.support.mediacompat:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode android.support.mediacompat:tintMode}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
@see #AppCompatImageView_tint
@see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010049, 0x7f01004a, 0x7f01004b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:srcCompat
*/
public static int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tint
*/
public static int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint android.support.mediacompat:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode android.support.mediacompat:tickMarkTintMode}</code></td><td></td></tr>
</table>
@see #AppCompatSeekBar_android_thumb
@see #AppCompatSeekBar_tickMark
@see #AppCompatSeekBar_tickMarkTint
@see #AppCompatSeekBar_tickMarkTintMode
*/
public static final int[] AppCompatSeekBar = {
0x01010142, 0x7f01004c, 0x7f01004d, 0x7f01004e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tickMark
*/
public static int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tickMarkTint
*/
public static int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:autoSizeMaxTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize android.support.mediacompat:autoSizeMinTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes android.support.mediacompat:autoSizePresetSizes}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity android.support.mediacompat:autoSizeStepGranularity}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeTextType android.support.mediacompat:autoSizeTextType}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_fontFamily android.support.mediacompat:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps android.support.mediacompat:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_autoSizeMaxTextSize
@see #AppCompatTextView_autoSizeMinTextSize
@see #AppCompatTextView_autoSizePresetSizes
@see #AppCompatTextView_autoSizeStepGranularity
@see #AppCompatTextView_autoSizeTextType
@see #AppCompatTextView_fontFamily
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f01004f, 0x7f010050, 0x7f010051,
0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:autoSizeMaxTextSize
*/
public static int AppCompatTextView_autoSizeMaxTextSize = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:autoSizeMinTextSize
*/
public static int AppCompatTextView_autoSizeMinTextSize = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:autoSizePresetSizes
*/
public static int AppCompatTextView_autoSizePresetSizes = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:autoSizeStepGranularity
*/
public static int AppCompatTextView_autoSizeStepGranularity = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:autoSizeTextType
*/
public static int AppCompatTextView_autoSizeTextType = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fontFamily
*/
public static int AppCompatTextView_fontFamily = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground android.support.mediacompat:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme android.support.mediacompat:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize android.support.mediacompat:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle android.support.mediacompat:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle android.support.mediacompat:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle android.support.mediacompat:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle android.support.mediacompat:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle android.support.mediacompat:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme android.support.mediacompat:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme android.support.mediacompat:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle android.support.mediacompat:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle android.support.mediacompat:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance android.support.mediacompat:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor android.support.mediacompat:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground android.support.mediacompat:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.mediacompat:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable android.support.mediacompat:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable android.support.mediacompat:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable android.support.mediacompat:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable android.support.mediacompat:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable android.support.mediacompat:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle android.support.mediacompat:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.mediacompat:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable android.support.mediacompat:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground android.support.mediacompat:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle android.support.mediacompat:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.mediacompat:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle android.support.mediacompat:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle android.support.mediacompat:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle android.support.mediacompat:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.mediacompat:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons android.support.mediacompat:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle android.support.mediacompat:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme android.support.mediacompat: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.mediacompat:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle android.support.mediacompat:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle android.support.mediacompat:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.mediacompat:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.mediacompat:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.mediacompat:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle android.support.mediacompat:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle android.support.mediacompat:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall android.support.mediacompat:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle android.support.mediacompat:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle android.support.mediacompat:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent android.support.mediacompat:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating android.support.mediacompat:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal android.support.mediacompat:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated android.support.mediacompat:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight android.support.mediacompat:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal android.support.mediacompat:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorError android.support.mediacompat:colorError}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary android.support.mediacompat:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark android.support.mediacompat:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal android.support.mediacompat:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground android.support.mediacompat:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding android.support.mediacompat:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme android.support.mediacompat:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal android.support.mediacompat:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical android.support.mediacompat:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle android.support.mediacompat:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.mediacompat:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground android.support.mediacompat:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor android.support.mediacompat:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle android.support.mediacompat:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator android.support.mediacompat:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle android.support.mediacompat:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.mediacompat:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog android.support.mediacompat:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle android.support.mediacompat:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle android.support.mediacompat:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight android.support.mediacompat:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.mediacompat:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.mediacompat:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.mediacompat:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.mediacompat:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground android.support.mediacompat:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme android.support.mediacompat:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth android.support.mediacompat:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle android.support.mediacompat:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle android.support.mediacompat:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle android.support.mediacompat:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle android.support.mediacompat:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator android.support.mediacompat:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall android.support.mediacompat:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle android.support.mediacompat:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle android.support.mediacompat:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground android.support.mediacompat:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.mediacompat:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.mediacompat:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle android.support.mediacompat:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle android.support.mediacompat:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.mediacompat:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem android.support.mediacompat:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary android.support.mediacompat:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall android.support.mediacompat:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader android.support.mediacompat:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.mediacompat:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.mediacompat:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.mediacompat:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem android.support.mediacompat:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl android.support.mediacompat:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.mediacompat:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle android.support.mediacompat:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor android.support.mediacompat:tooltipForegroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground android.support.mediacompat:tooltipFrameBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar android.support.mediacompat:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay android.support.mediacompat:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay android.support.mediacompat:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor android.support.mediacompat:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor android.support.mediacompat:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor android.support.mediacompat:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor android.support.mediacompat:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor android.support.mediacompat:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor android.support.mediacompat:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle android.support.mediacompat:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorError
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_tooltipForegroundColor
@see #AppCompatTheme_tooltipFrameBackground
@see #AppCompatTheme_windowActionBar
@see #AppCompatTheme_windowActionBarOverlay
@see #AppCompatTheme_windowActionModeOverlay
@see #AppCompatTheme_windowFixedHeightMajor
@see #AppCompatTheme_windowFixedHeightMinor
@see #AppCompatTheme_windowFixedWidthMajor
@see #AppCompatTheme_windowFixedWidthMinor
@see #AppCompatTheme_windowMinWidthMajor
@see #AppCompatTheme_windowMinWidthMinor
@see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme = {
0x01010057, 0x010100ae, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7,
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3,
0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7,
0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb,
0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf,
0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3,
0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7,
0x7f0100c8, 0x7f0100c9, 0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarDivider
*/
public static int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarItemBackground
*/
public static int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarPopupTheme
*/
public static int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarSize
*/
public static int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarSplitStyle
*/
public static int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarStyle
*/
public static int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarTabBarStyle
*/
public static int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarTabStyle
*/
public static int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarTabTextStyle
*/
public static int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarTheme
*/
public static int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionBarWidgetTheme
*/
public static int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionButtonStyle
*/
public static int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionDropDownStyle
*/
public static int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionMenuTextAppearance
*/
public static int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionMenuTextColor
*/
public static int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeBackground
*/
public static int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeCloseButtonStyle
*/
public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeCloseDrawable
*/
public static int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeCopyDrawable
*/
public static int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeCutDrawable
*/
public static int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeFindDrawable
*/
public static int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModePasteDrawable
*/
public static int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModePopupWindowStyle
*/
public static int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeSelectAllDrawable
*/
public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeShareDrawable
*/
public static int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeSplitBackground
*/
public static int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeStyle
*/
public static int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionModeWebSearchDrawable
*/
public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionOverflowButtonStyle
*/
public static int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionOverflowMenuStyle
*/
public static int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:activityChooserViewStyle
*/
public static int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:alertDialogButtonGroupStyle
*/
public static int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:alertDialogCenterButtons
*/
public static int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:alertDialogStyle
*/
public static int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat.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.mediacompat:autoCompleteTextViewStyle
*/
public static int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:borderlessButtonStyle
*/
public static int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:buttonBarButtonStyle
*/
public static int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:buttonBarNegativeButtonStyle
*/
public static int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:buttonBarNeutralButtonStyle
*/
public static int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:buttonBarPositiveButtonStyle
*/
public static int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:buttonBarStyle
*/
public static int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:buttonStyle
*/
public static int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:buttonStyleSmall
*/
public static int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:checkboxStyle
*/
public static int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:checkedTextViewStyle
*/
public static int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:colorAccent
*/
public static int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:colorBackgroundFloating
*/
public static int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:colorButtonNormal
*/
public static int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:colorControlActivated
*/
public static int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:colorControlHighlight
*/
public static int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:colorControlNormal
*/
public static int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:colorError
*/
public static int AppCompatTheme_colorError = 118;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:colorPrimary
*/
public static int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:colorPrimaryDark
*/
public static int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:colorSwitchThumbNormal
*/
public static int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:controlBackground
*/
public static int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:dialogPreferredPadding
*/
public static int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:dialogTheme
*/
public static int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:dividerHorizontal
*/
public static int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:dividerVertical
*/
public static int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:dropDownListViewStyle
*/
public static int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:dropdownListPreferredItemHeight
*/
public static int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:editTextBackground
*/
public static int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:editTextColor
*/
public static int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:editTextStyle
*/
public static int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:homeAsUpIndicator
*/
public static int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:imageButtonStyle
*/
public static int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listChoiceBackgroundIndicator
*/
public static int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listDividerAlertDialog
*/
public static int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listMenuViewStyle
*/
public static int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listPopupWindowStyle
*/
public static int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listPreferredItemHeight
*/
public static int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listPreferredItemHeightLarge
*/
public static int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listPreferredItemHeightSmall
*/
public static int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listPreferredItemPaddingLeft
*/
public static int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:listPreferredItemPaddingRight
*/
public static int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:panelBackground
*/
public static int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:panelMenuListTheme
*/
public static int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:panelMenuListWidth
*/
public static int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:popupMenuStyle
*/
public static int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:popupWindowStyle
*/
public static int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:radioButtonStyle
*/
public static int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:ratingBarStyle
*/
public static int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:ratingBarStyleIndicator
*/
public static int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:ratingBarStyleSmall
*/
public static int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:searchViewStyle
*/
public static int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:seekBarStyle
*/
public static int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:selectableItemBackground
*/
public static int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:selectableItemBackgroundBorderless
*/
public static int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:spinnerDropDownItemStyle
*/
public static int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:spinnerStyle
*/
public static int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:switchStyle
*/
public static int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:textAppearanceLargePopupMenu
*/
public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:textAppearanceListItem
*/
public static int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:textAppearanceListItemSecondary
*/
public static int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:textAppearanceListItemSmall
*/
public static int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:textAppearancePopupMenuHeader
*/
public static int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:textAppearanceSearchResultSubtitle
*/
public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:textAppearanceSearchResultTitle
*/
public static int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:textAppearanceSmallPopupMenu
*/
public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:textColorAlertDialogListItem
*/
public static int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:textColorSearchUrl
*/
public static int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:toolbarNavigationButtonStyle
*/
public static int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:toolbarStyle
*/
public static int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tooltipForegroundColor
*/
public static int AppCompatTheme_tooltipForegroundColor = 117;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tooltipFrameBackground
*/
public static int AppCompatTheme_tooltipFrameBackground = 116;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:windowActionBar
*/
public static int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:windowActionBarOverlay
*/
public static int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:windowActionModeOverlay
*/
public static int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:windowFixedHeightMajor
*/
public static int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:windowFixedHeightMinor
*/
public static int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:windowFixedWidthMajor
*/
public static int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:windowFixedWidthMinor
*/
public static int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:windowMinWidthMajor
*/
public static int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:windowMinWidthMinor
*/
public static int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground android.support.mediacompat:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint android.support.mediacompat:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor android.support.mediacompat:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu android.support.mediacompat:menu}</code></td><td></td></tr>
</table>
@see #BottomNavigationView_elevation
@see #BottomNavigationView_itemBackground
@see #BottomNavigationView_itemIconTint
@see #BottomNavigationView_itemTextColor
@see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView = {
0x7f01003e, 0x7f010143, 0x7f010144, 0x7f010145,
0x7f010146
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:elevation
*/
public static int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:itemBackground
*/
public static int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:itemIconTint
*/
public static int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:itemTextColor
*/
public static int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight android.support.mediacompat:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed android.support.mediacompat:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f01011d, 0x7f01011e, 0x7f01011f
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:behavior_hideable
*/
public static int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:behavior_peekHeight
*/
public static int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100cb
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:allowStacking
*/
public static int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CardView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardBackgroundColor android.support.mediacompat:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius android.support.mediacompat:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation android.support.mediacompat:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation android.support.mediacompat:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap android.support.mediacompat:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding android.support.mediacompat:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding android.support.mediacompat:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom android.support.mediacompat:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft android.support.mediacompat:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight android.support.mediacompat:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop android.support.mediacompat:contentPaddingTop}</code></td><td></td></tr>
</table>
@see #CardView_android_minHeight
@see #CardView_android_minWidth
@see #CardView_cardBackgroundColor
@see #CardView_cardCornerRadius
@see #CardView_cardElevation
@see #CardView_cardMaxElevation
@see #CardView_cardPreventCornerOverlap
@see #CardView_cardUseCompatPadding
@see #CardView_contentPadding
@see #CardView_contentPaddingBottom
@see #CardView_contentPaddingLeft
@see #CardView_contentPaddingRight
@see #CardView_contentPaddingTop
*/
public static final int[] CardView = {
0x0101013f, 0x01010140, 0x7f010017, 0x7f010018,
0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
0x7f010021
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minHeight
*/
public static int CardView_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minWidth
*/
public static int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardBackgroundColor}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardBackgroundColor
*/
public static int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardCornerRadius}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardCornerRadius
*/
public static int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardElevation
*/
public static int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardMaxElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardMaxElevation
*/
public static int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardPreventCornerOverlap}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardPreventCornerOverlap
*/
public static int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#cardUseCompatPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:cardUseCompatPadding
*/
public static int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentPadding
*/
public static int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentPaddingBottom}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentPaddingBottom
*/
public static int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentPaddingLeft}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentPaddingLeft
*/
public static int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentPaddingRight}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentPaddingRight
*/
public static int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#contentPaddingTop}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:contentPaddingTop
*/
public static int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.mediacompat:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.mediacompat:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim android.support.mediacompat:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.mediacompat:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.mediacompat:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.mediacompat:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.mediacompat:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.mediacompat:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.mediacompat:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.mediacompat:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration android.support.mediacompat:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger android.support.mediacompat:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim android.support.mediacompat:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title android.support.mediacompat:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled android.support.mediacompat:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId android.support.mediacompat:toolbarId}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_collapsedTitleGravity
@see #CollapsingToolbarLayout_collapsedTitleTextAppearance
@see #CollapsingToolbarLayout_contentScrim
@see #CollapsingToolbarLayout_expandedTitleGravity
@see #CollapsingToolbarLayout_expandedTitleMargin
@see #CollapsingToolbarLayout_expandedTitleMarginBottom
@see #CollapsingToolbarLayout_expandedTitleMarginEnd
@see #CollapsingToolbarLayout_expandedTitleMarginStart
@see #CollapsingToolbarLayout_expandedTitleMarginTop
@see #CollapsingToolbarLayout_expandedTitleTextAppearance
@see #CollapsingToolbarLayout_scrimAnimationDuration
@see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
@see #CollapsingToolbarLayout_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f010025, 0x7f010120, 0x7f010121, 0x7f010122,
0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126,
0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a,
0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:collapsedTitleGravity
*/
public static int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:collapsedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentScrim
*/
public static int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:expandedTitleGravity
*/
public static int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:expandedTitleMargin
*/
public static int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:expandedTitleMarginBottom
*/
public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:expandedTitleMarginEnd
*/
public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:expandedTitleMarginStart
*/
public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:expandedTitleMarginTop
*/
public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:expandedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:scrimAnimationDuration
*/
public static int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:scrimVisibleHeightTrigger
*/
public static int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:statusBarScrim
*/
public static int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:title
*/
public static int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:titleEnabled
*/
public static int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier android.support.mediacompat:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f01012f, 0x7f010130
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:layout_collapseMode
*/
public static int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100cc
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode android.support.mediacompat:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100cd, 0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:buttonTint
*/
public static int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground android.support.mediacompat:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010131, 0x7f010132
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:keylines
*/
public static int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity android.support.mediacompat:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior android.support.mediacompat:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges android.support.mediacompat:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge android.support.mediacompat:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline android.support.mediacompat:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_Layout_android_layout_gravity
@see #CoordinatorLayout_Layout_layout_anchor
@see #CoordinatorLayout_Layout_layout_anchorGravity
@see #CoordinatorLayout_Layout_layout_behavior
@see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
@see #CoordinatorLayout_Layout_layout_insetEdge
@see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout = {
0x010100b3, 0x7f010133, 0x7f010134, 0x7f010135,
0x7f010136, 0x7f010137, 0x7f010138
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:layout_anchor
*/
public static int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:layout_anchorGravity
*/
public static int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:layout_behavior
*/
public static int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:layout_dodgeInsetEdges
*/
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:layout_insetEdge
*/
public static int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle android.support.mediacompat:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError android.support.mediacompat:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010139, 0x7f01013a, 0x7f01013b
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:bottomSheetDialogTheme
*/
public static int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:bottomSheetStyle
*/
public static int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength android.support.mediacompat:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength android.support.mediacompat:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color android.support.mediacompat:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize android.support.mediacompat:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars android.support.mediacompat:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars android.support.mediacompat:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness android.support.mediacompat:thickness}</code></td><td></td></tr>
</table>
@see #DrawerArrowToggle_arrowHeadLength
@see #DrawerArrowToggle_arrowShaftLength
@see #DrawerArrowToggle_barLength
@see #DrawerArrowToggle_color
@see #DrawerArrowToggle_drawableSize
@see #DrawerArrowToggle_gapBetweenBars
@see #DrawerArrowToggle_spinBars
@see #DrawerArrowToggle_thickness
*/
public static final int[] DrawerArrowToggle = {
0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2,
0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:arrowHeadLength
*/
public static int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:arrowShaftLength
*/
public static int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:barLength
*/
public static int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:color
*/
public static int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:drawableSize
*/
public static int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:gapBetweenBars
*/
public static int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:spinBars
*/
public static int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode android.support.mediacompat:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth android.support.mediacompat:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation android.support.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize android.support.mediacompat:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ android.support.mediacompat:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor android.support.mediacompat:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding android.support.mediacompat:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f01003e, 0x7f010116, 0x7f010117, 0x7f01013c,
0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:backgroundTint
*/
public static int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:backgroundTintMode
*/
public static int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:borderWidth
*/
public static int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:elevation
*/
public static int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fabSize
*/
public static int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:pressedTranslationZ
*/
public static int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:rippleColor
*/
public static int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f010141
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:fontProviderAuthority}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderCerts android.support.mediacompat:fontProviderCerts}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchStrategy android.support.mediacompat:fontProviderFetchStrategy}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchTimeout android.support.mediacompat:fontProviderFetchTimeout}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderPackage android.support.mediacompat:fontProviderPackage}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderQuery android.support.mediacompat:fontProviderQuery}</code></td><td></td></tr>
</table>
@see #FontFamily_fontProviderAuthority
@see #FontFamily_fontProviderCerts
@see #FontFamily_fontProviderFetchStrategy
@see #FontFamily_fontProviderFetchTimeout
@see #FontFamily_fontProviderPackage
@see #FontFamily_fontProviderQuery
*/
public static final int[] FontFamily = {
0x7f01016a, 0x7f01016b, 0x7f01016c, 0x7f01016d,
0x7f01016e, 0x7f01016f
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fontProviderAuthority
*/
public static int FontFamily_fontProviderAuthority = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fontProviderCerts
*/
public static int FontFamily_fontProviderCerts = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fontProviderFetchStrategy
*/
public static int FontFamily_fontProviderFetchStrategy = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fontProviderFetchTimeout
*/
public static int FontFamily_fontProviderFetchTimeout = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fontProviderPackage
*/
public static int FontFamily_fontProviderPackage = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontStyle android.support.mediacompat:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontWeight android.support.mediacompat:fontWeight}</code></td><td></td></tr>
</table>
@see #FontFamilyFont_android_font
@see #FontFamilyFont_android_fontStyle
@see #FontFamilyFont_android_fontWeight
@see #FontFamilyFont_font
@see #FontFamilyFont_fontStyle
@see #FontFamilyFont_fontWeight
*/
public static final int[] FontFamilyFont = {
0x01010532, 0x01010533, 0x0101053f, 0x7f010170,
0x7f010171, 0x7f010172
};
/**
<p>This symbol is the offset where the {@link android.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:font
*/
public static 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.mediacompat.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.mediacompat:font
*/
public static int FontFamilyFont_font = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fontStyle
*/
public static int FontFamilyFont_fontStyle = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:foregroundInsidePadding}</code></td><td></td></tr>
</table>
@see #ForegroundLinearLayout_android_foreground
@see #ForegroundLinearLayout_android_foregroundGravity
@see #ForegroundLinearLayout_foregroundInsidePadding
*/
public static final int[] ForegroundLinearLayout = {
0x01010109, 0x01010200, 0x7f010142
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static 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.mediacompat.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.mediacompat: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.mediacompat:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding android.support.mediacompat:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild android.support.mediacompat:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers android.support.mediacompat:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f01002d, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static 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.mediacompat.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.mediacompat:divider
*/
public static int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:dividerPadding
*/
public static int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:measureWithLargestChild
*/
public static int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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 MediaRouteButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable android.support.mediacompat:externalRouteEnabledDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_mediaRouteButtonTint android.support.mediacompat:mediaRouteButtonTint}</code></td><td></td></tr>
</table>
@see #MediaRouteButton_android_minHeight
@see #MediaRouteButton_android_minWidth
@see #MediaRouteButton_externalRouteEnabledDrawable
@see #MediaRouteButton_mediaRouteButtonTint
*/
public static final int[] MediaRouteButton = {
0x0101013f, 0x01010140, 0x7f010015, 0x7f010016
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minHeight
*/
public static int MediaRouteButton_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minWidth
*/
public static int MediaRouteButton_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#externalRouteEnabledDrawable}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.mediacompat:externalRouteEnabledDrawable
*/
public static int MediaRouteButton_externalRouteEnabledDrawable = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.R.attr#mediaRouteButtonTint}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.mediacompat:mediaRouteButtonTint
*/
public static int MediaRouteButton_mediaRouteButtonTint = 3;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static 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.mediacompat:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass android.support.mediacompat:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass android.support.mediacompat:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_alphabeticModifiers android.support.mediacompat: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.mediacompat:contentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTint android.support.mediacompat:iconTint}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTintMode android.support.mediacompat:iconTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_numericModifiers android.support.mediacompat:numericModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction android.support.mediacompat:showAsAction}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_tooltipText android.support.mediacompat:tooltipText}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_alphabeticModifiers
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_contentDescription
@see #MenuItem_iconTint
@see #MenuItem_iconTintMode
@see #MenuItem_numericModifiers
@see #MenuItem_showAsAction
@see #MenuItem_tooltipText
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1, 0x7f0100e2, 0x7f0100e3
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionLayout
*/
public static int MenuItem_actionLayout = 16;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionProviderClass
*/
public static int MenuItem_actionProviderClass = 18;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:actionViewClass
*/
public static int MenuItem_actionViewClass = 17;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat.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.mediacompat:contentDescription
*/
public static int MenuItem_contentDescription = 19;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:iconTint
*/
public static int MenuItem_iconTint = 21;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:iconTintMode
*/
public static int MenuItem_iconTintMode = 22;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:numericModifiers
*/
public static int MenuItem_numericModifiers = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:showAsAction
*/
public static int MenuItem_showAsAction = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow android.support.mediacompat:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100e4,
0x7f0100e5
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static 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.mediacompat.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.mediacompat:preserveIconSpacing
*/
public static int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout android.support.mediacompat:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground android.support.mediacompat:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint android.support.mediacompat:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance android.support.mediacompat:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor android.support.mediacompat:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu android.support.mediacompat:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f01003e,
0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146,
0x7f010147, 0x7f010148
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static 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.mediacompat.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.mediacompat:elevation
*/
public static int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:headerLayout
*/
public static int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:itemBackground
*/
public static int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:itemIconTint
*/
public static int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:itemTextAppearance
*/
public static int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:itemTextColor
*/
public static int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f0100e6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static 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.mediacompat.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.mediacompat: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.mediacompat:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100e7
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle android.support.mediacompat:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100e8, 0x7f0100e9
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:paddingBottomNoButtons
*/
public static int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:fastScrollEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable android.support.mediacompat:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable android.support.mediacompat:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable android.support.mediacompat:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable android.support.mediacompat:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager android.support.mediacompat:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout android.support.mediacompat:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount android.support.mediacompat:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd android.support.mediacompat: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.mediacompat.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.mediacompat:fastScrollEnabled
*/
public static int RecyclerView_fastScrollEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fastScrollHorizontalThumbDrawable
*/
public static int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fastScrollHorizontalTrackDrawable
*/
public static int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fastScrollVerticalThumbDrawable
*/
public static int RecyclerView_fastScrollVerticalThumbDrawable = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:fastScrollVerticalTrackDrawable
*/
public static int RecyclerView_fastScrollVerticalTrackDrawable = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:layoutManager
*/
public static int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:reverseLayout
*/
public static int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:spanCount
*/
public static int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010149
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f01014a
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon android.support.mediacompat:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint android.support.mediacompat:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon android.support.mediacompat:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault android.support.mediacompat:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout android.support.mediacompat:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground android.support.mediacompat:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint android.support.mediacompat:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon android.support.mediacompat:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon android.support.mediacompat:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground android.support.mediacompat:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout android.support.mediacompat:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon android.support.mediacompat:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed,
0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1,
0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5,
0x7f0100f6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static 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.mediacompat.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.mediacompat:closeIcon
*/
public static int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:commitIcon
*/
public static int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:defaultQueryHint
*/
public static int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:goIcon
*/
public static int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:iconifiedByDefault
*/
public static int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:layout
*/
public static int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:queryBackground
*/
public static int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:queryHint
*/
public static int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:searchHintIcon
*/
public static int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:searchIcon
*/
public static int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:submitBackground
*/
public static int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:suggestionRowLayout
*/
public static int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth android.support.mediacompat:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f01003e, 0x7f01014b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:elevation
*/
public static int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f01003f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static 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.mediacompat.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.mediacompat: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.mediacompat:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack android.support.mediacompat:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth android.support.mediacompat:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding android.support.mediacompat:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance android.support.mediacompat:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding android.support.mediacompat:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint android.support.mediacompat:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode android.support.mediacompat:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track android.support.mediacompat:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint android.support.mediacompat:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode android.support.mediacompat:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100f7,
0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb,
0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff,
0x7f010100, 0x7f010101
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static 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.mediacompat.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.mediacompat:showText
*/
public static int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:splitTrack
*/
public static int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:switchMinWidth
*/
public static int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:switchPadding
*/
public static int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:switchTextAppearance
*/
public static int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:thumbTextPadding
*/
public static int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:thumbTint
*/
public static int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:thumbTintMode
*/
public static int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:track
*/
public static int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:trackTint
*/
public static int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart android.support.mediacompat:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity android.support.mediacompat:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor android.support.mediacompat:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight android.support.mediacompat:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth android.support.mediacompat:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth android.support.mediacompat:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode android.support.mediacompat:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding android.support.mediacompat:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom android.support.mediacompat:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd android.support.mediacompat:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart android.support.mediacompat:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop android.support.mediacompat:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor android.support.mediacompat:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance android.support.mediacompat:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor android.support.mediacompat:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f,
0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153,
0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157,
0x7f010158, 0x7f010159, 0x7f01015a, 0x7f01015b
};
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabBackground
*/
public static int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabContentStart
*/
public static int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabGravity
*/
public static int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabIndicatorColor
*/
public static int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabIndicatorHeight
*/
public static int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabMaxWidth
*/
public static int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabMinWidth
*/
public static int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabMode
*/
public static int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabPadding
*/
public static int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabPaddingBottom
*/
public static int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabPaddingEnd
*/
public static int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabPaddingStart
*/
public static int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabPaddingTop
*/
public static int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabSelectedTextColor
*/
public static int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:tabTextAppearance
*/
public static int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps android.support.mediacompat:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_fontFamily
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textColorLink
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_fontFamily
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f01004f,
0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:fontFamily
*/
public static 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.mediacompat.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.mediacompat:fontFamily
*/
public static int TextAppearance_fontFamily = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength android.support.mediacompat:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance android.support.mediacompat:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance android.support.mediacompat:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled android.support.mediacompat:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance android.support.mediacompat:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled android.support.mediacompat:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled android.support.mediacompat:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance android.support.mediacompat:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription android.support.mediacompat:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable android.support.mediacompat:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled android.support.mediacompat:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint android.support.mediacompat:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode android.support.mediacompat:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f01015c, 0x7f01015d,
0x7f01015e, 0x7f01015f, 0x7f010160, 0x7f010161,
0x7f010162, 0x7f010163, 0x7f010164, 0x7f010165,
0x7f010166, 0x7f010167, 0x7f010168, 0x7f010169
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static 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.mediacompat.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.mediacompat:counterEnabled
*/
public static int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:counterMaxLength
*/
public static int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:counterOverflowTextAppearance
*/
public static int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:counterTextAppearance
*/
public static int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:errorEnabled
*/
public static int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:errorTextAppearance
*/
public static int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:hintAnimationEnabled
*/
public static int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:hintEnabled
*/
public static int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:hintTextAppearance
*/
public static int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:passwordToggleContentDescription
*/
public static int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:passwordToggleDrawable
*/
public static int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:passwordToggleEnabled
*/
public static int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:passwordToggleTint
*/
public static int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription android.support.mediacompat:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon android.support.mediacompat:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd android.support.mediacompat:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions android.support.mediacompat:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft android.support.mediacompat:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight android.support.mediacompat:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart android.support.mediacompat:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation android.support.mediacompat:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo android.support.mediacompat:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription android.support.mediacompat:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight android.support.mediacompat:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription android.support.mediacompat:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon android.support.mediacompat:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme android.support.mediacompat:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle android.support.mediacompat:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance android.support.mediacompat:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor android.support.mediacompat:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title android.support.mediacompat:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin android.support.mediacompat:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom android.support.mediacompat:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd android.support.mediacompat:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart android.support.mediacompat:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop android.support.mediacompat:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins android.support.mediacompat:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance android.support.mediacompat:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor android.support.mediacompat:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_buttonGravity
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetEndWithActions
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_contentInsetStartWithNavigation
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_titleMargin
@see #Toolbar_titleMarginBottom
@see #Toolbar_titleMarginEnd
@see #Toolbar_titleMarginStart
@see #Toolbar_titleMarginTop
@see #Toolbar_titleMargins
@see #Toolbar_titleTextAppearance
@see #Toolbar_titleTextColor
*/
public static final int[] Toolbar = {
0x010100af, 0x01010140, 0x7f010025, 0x7f010028,
0x7f01002c, 0x7f010038, 0x7f010039, 0x7f01003a,
0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003f,
0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105,
0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109,
0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111,
0x7f010112
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static 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.mediacompat.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.mediacompat:buttonGravity
*/
public static int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:collapseContentDescription
*/
public static int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:collapseIcon
*/
public static int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetEnd
*/
public static int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetEndWithActions
*/
public static int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetLeft
*/
public static int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetRight
*/
public static int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetStart
*/
public static int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:contentInsetStartWithNavigation
*/
public static int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:logo
*/
public static int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:logoDescription
*/
public static int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:maxButtonHeight
*/
public static int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:navigationContentDescription
*/
public static int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:navigationIcon
*/
public static int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:popupTheme
*/
public static int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:subtitle
*/
public static int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:subtitleTextAppearance
*/
public static int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:subtitleTextColor
*/
public static int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:title
*/
public static int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:titleMargin
*/
public static int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:titleMarginBottom
*/
public static int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:titleMarginEnd
*/
public static int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:titleMarginStart
*/
public static int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:titleMarginTop
*/
public static int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:titleMargins
*/
public static int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:titleTextAppearance
*/
public static int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart android.support.mediacompat:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme android.support.mediacompat:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f010113, 0x7f010114,
0x7f010115
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static 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.mediacompat.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.mediacompat:paddingEnd
*/
public static int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:paddingStart
*/
public static int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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.mediacompat:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode android.support.mediacompat:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010116, 0x7f010117
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat:backgroundTint
*/
public static int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.mediacompat.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.mediacompat: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;
};
}
| [
"boty88_skate@hotmail.com"
] | boty88_skate@hotmail.com |
e1fde6612b5a9c312464b0de7b4d8d5308ad2b64 | 4e996357f7b9a88ac3e431bb408e34852093df38 | /SMUGA/src/genetic/gene/Gene.java | 9ee345d8c1d8b178b6984bb83a858227b60735b2 | [
"Apache-2.0"
] | permissive | Evolutionary-Algorithms/Symbiotic-MuGA | e15543ad08965a070eda5ec5e3b084b386d74b63 | e90155318209bed099dbec740339355c7c188b76 | refs/heads/master | 2020-12-06T21:20:09.006062 | 2020-03-16T19:46:12 | 2020-03-16T19:46:12 | 232,555,444 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 5,969 | java | /*****************************************************************************/
/**** G E N E T I C A L G O R I T H M S S I M U L A T O R ****/
/**** ver 1.0 (Sept/2005) ****/
/**** ****/
/**** authors: ****/
/**** António Manso ****/
/**** URL : http://orion.ipt.pt/~manso/ ****/
/**** e-mail: manso@ipt.pt ****/
/**** ****/
/**** Luís Correia ****/
/**** URL : http://www.di.fc.ul.pt/~lcorreia/ ****/
/**** e-mail: Luis.Correia@di.fc.ul.pt ****/
/**** ****/
/*****************************************************************************/
/*****************************************************************************/
/* This library 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 2.1 of the License, or
* (at your option) any later version.
*
* This library 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* Gene.java
*
* Created on 12 de Dezembro de 2004, 17:05
*/
package genetic.gene;
import java.io.Reader;
import java.io.Writer;
import java.util.Random;
import java.io.Serializable;
import utils.BitField;
/**
* Representa um gene de um cromossoma abstracto
* @author António Manuel Rodrigues Manso
*/
public abstract class Gene implements Serializable,Comparable<Gene> {
/**
* ABSTRACT - returns the value (double) of Gene
* @return double value of gene
*/
public abstract double getValue();
public abstract void setValue(double value);
/**
* Clone Object
* @return clone
*/
public abstract Gene getClone();
/**
* bitfield of gene [101000111]
*/
protected BitField alels;
static protected Random randGenerator = new Random();
/**
* Getter for property alels.
* @return Value of property alels.
*/
public BitField getAlels() {
return this.alels;
}
/**
* Getter for property alels.
* @return Value of property alels.
*/
public int getNumBits() {
return this.alels.getNumberOfBits();
}
/**
* Setter for property alels.
* @param alels New value of property alels.
*/
public void setAlels(BitField alels) {
this.alels = (BitField) alels.getClone();
}
/**
* atribui aleatoriamente valores aos alelos
*/
public void fillRandom() {
for(int i = 0 ; i< alels.getNumberOfBits();i++)
alels.setBit(i , randGenerator.nextBoolean());
}
/**
* converte para string
* @return bits dos alelos
*/
public String toBinString() {
return alels.toString();
}
/**
* Actualiza o gerador de números aleatórios
* @param rg gerador Random
*/
public void setRandomGenerator(Random rg) {
randGenerator = rg;
}
/**
* Indicates whether some other object is "equal to" this one.
* @param obj object
* @return equals
*/
public boolean equals(final Object obj) {
if (obj instanceof Gene) {
final Gene other = (Gene)obj;
return alels.equals(other.alels);
} else
return super.equals(obj);
}
/**
* apply mutation in every bit of alels with that probability
* @param probability value o probability to invert each bit
*/
public void mutate(double probability) {
for(int i = 0 ; i< alels.getNumberOfBits();i++){
if( randGenerator.nextDouble() < probability)
alels.invertBit(i);
}
}
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
/**
* write a Gene in a stream
* @param file stream
*/
public void Write(Writer file) {
try{
alels.Write(file);
}catch(Exception e) {
System.out.println("GENE WRITE ERROR " + e.toString());
}
}
//----------------------------------------------------------------------------
/**
* reads a Gene from a stream
* @param file stream file
*/
public void Read(Reader file) {
try{
alels.Read(file);
}catch(Exception e) {
System.out.println("GENE READ ERROR " + e.toString());
}
}
//----------------------------------------------------------------------------
@Override
public int hashCode(){
return this.alels.hashCode();
}
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
}
| [
"manso@ipt.pt"
] | manso@ipt.pt |
5fa3b835a2f2e33680c9ab79dfcfc8ed6c5caae1 | 7469dc93106aafc99d25a5f62f92b6e6ce7959f8 | /src/main/java/Telas/TelaCadastroCliente.java | 91ef99ce07461cc54ee00a327fb139e10582ca1e | [] | no_license | AlexandreNoro/Trabalho4-Bim | 568a87e3c0c5b9eb5096a2add5b4989d71c327ed | 2cc4e5fd709dbdec0f2be86bebde6e7ec2697621 | refs/heads/master | 2021-01-13T00:49:27.442090 | 2015-12-06T01:39:15 | 2015-12-06T01:39:15 | 45,071,393 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 378 | java | package Telas;
import java.awt.BorderLayout;
import javax.swing.JPanel;
public class TelaCadastroCliente extends MolduraAbstrata {
// Construtor
public TelaCadastroCliente() {
super();
}
// Metodo que chama Jpanel de cadastro solicitado
@Override
protected void configuraMiolo() {
super.add(new MioloCadastroCliente(), BorderLayout.CENTER);
}
} | [
"xande10_noro@hotmail.com"
] | xande10_noro@hotmail.com |
56227387e0f624f766634153c62e0d2ee50a2d18 | 9877685c43bdf09d8d1bb7ab7ad454200a29587c | /app/src/main/java/com/example/mik/myapplication/Util_Constants.java | 0cc18d77fd2802ba2a2b0ca4f8e4482fdc42c6e7 | [] | no_license | mikaelhagfeldt/mikaelhagfeldt_imdbDatabase | f0caa684cc0eaa82185afee808583ca9957fa764 | 0f5abe5ab6ddbfdd988be00aaa524beb7e7b7a1e | refs/heads/master | 2020-03-27T02:49:29.809611 | 2018-08-23T07:57:00 | 2018-08-23T07:57:00 | 145,820,558 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 258 | java | package com.example.mik.myapplication;
public class Util_Constants
{
public static final String URL_START = "http://www.omdbapi.com/?apikey=8d3d2fc6&s=";
public static final String URL_START_DETAIL = "http://www.omdbapi.com/?apikey=8d3d2fc6&i=";
}
| [
"33085380+mikaelhagfeldt@users.noreply.github.com"
] | 33085380+mikaelhagfeldt@users.noreply.github.com |
6d8447ed377bda4da90eecf977b8d9978e6accc6 | c87c43ebee3e04f283f3026f31f53003f425b414 | /MBAServerend/src/com/mba/login/FormServerLogin.java | 782bfbdfdc325fcbfdbf5127cdaf8129ccd57d92 | [] | no_license | vishalshubham/E-commerce-Tool-Mobile-and-Web | b160e12f96b0e179aea18d39e41ddaabfccdddfb | f1e68834028a2fc72056c2f742ffa7506818ff1a | refs/heads/master | 2021-01-24T15:07:32.471861 | 2015-01-25T07:31:25 | 2015-01-25T07:31:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,329 | java |
package com.mba.login;
import java.awt.Component;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
/**
*
* @author VISHAL
*/
public class FormServerLogin extends JFrame implements ActionListener
{
String path = "E:/PROJECT/CODE/MBAServerend/assets/login.png";
private JPanel panel = new JPanel();
private JLabel label = new JLabel(new ImageIcon(path));
private JTextField username = new JTextField(10);
private JTextField password = new JTextField(10);
private JLabel userlabel = new JLabel("Username : ");
private JLabel passlabel = new JLabel("Password : ");
private JButton submit = new JButton("Sign In");
public FormServerLogin()
{
label.setHorizontalAlignment(JLabel.CENTER);
setSize(315,730);
panel.setLayout(null);
setLocation(500,10);
setTitle("MBA LOGIN:");
setVisible(true);
add(panel);
// panel.setComponentZOrder(label, 5);
// panel.setComponentZOrder(userlabel, 1);
// panel.setComponentZOrder(passlabel, 1);
// panel.setComponentZOrder(username, 1);
// panel.setComponentZOrder(password, 1);
// addComponent(panel,label,0,0,300,694);
addComponent(panel, userlabel, 50, 100, 100, 25);
addComponent(panel, username, 150, 100, 100, 25);
addComponent(panel, passlabel, 50, 150, 100, 25);
addComponent(panel, password, 150, 150, 100, 25);
addComponent(panel, submit, 100, 550, 100, 25);
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent evt)
{
System.exit(0);
}
});
}
public void actionPerformed(ActionEvent e)
{
}
public static void main(String args[])
{
FormServerLogin f = new FormServerLogin();
}
public void addComponent(Container container,Component c,int x,int y,int width,int height)
{
c.setBounds(x,y,width,height);
container.add(c);
}
}
| [
"vishal.shubham@gmail.com"
] | vishal.shubham@gmail.com |
2c49ed7947e282cc45a61af01a4f8bf80bcd42bf | b87f986e61875f4e6885b41a5debaa0c8743331d | /src/main/java/dedagroup/it/service/mapper/UserMapper.java | 7d86324e8bc12c5c2987e9c753b0ab14a717683a | [] | no_license | marco7403/rfbloyalty | 616aaa5cc2f5900137a620d9597b8fbb120bdea6 | 7bea2d7187c37c4a4dc6f9f1ab94eeb8edcc7a6d | refs/heads/master | 2023-03-16T12:01:57.100821 | 2021-12-14T08:41:39 | 2021-12-14T08:41:39 | 250,568,465 | 0 | 0 | null | 2023-03-06T22:39:25 | 2020-03-27T15:18:21 | Java | UTF-8 | Java | false | false | 2,525 | java | package dedagroup.it.service.mapper;
import dedagroup.it.domain.Authority;
import dedagroup.it.domain.User;
import dedagroup.it.service.dto.UserDTO;
import org.springframework.stereotype.Service;
import java.util.HashSet;
import java.util.List;
import java.util.Objects;
import java.util.Set;
import java.util.stream.Collectors;
/**
* Mapper for the entity {@link User} and its DTO called {@link UserDTO}.
*
* Normal mappers are generated using MapStruct, this one is hand-coded as MapStruct
* support is still in beta, and requires a manual step with an IDE.
*/
@Service
public class UserMapper {
public List<UserDTO> usersToUserDTOs(List<User> users) {
return users.stream()
.filter(Objects::nonNull)
.map(this::userToUserDTO)
.collect(Collectors.toList());
}
public UserDTO userToUserDTO(User user) {
return new UserDTO(user);
}
public List<User> userDTOsToUsers(List<UserDTO> userDTOs) {
return userDTOs.stream()
.filter(Objects::nonNull)
.map(this::userDTOToUser)
.collect(Collectors.toList());
}
public User userDTOToUser(UserDTO userDTO) {
if (userDTO == null) {
return null;
} else {
User user = new User();
user.setId(userDTO.getId());
user.setLogin(userDTO.getLogin());
user.setFirstName(userDTO.getFirstName());
user.setLastName(userDTO.getLastName());
user.setEmail(userDTO.getEmail());
user.setImageUrl(userDTO.getImageUrl());
user.setActivated(userDTO.isActivated());
user.setLangKey(userDTO.getLangKey());
Set<Authority> authorities = this.authoritiesFromStrings(userDTO.getAuthorities());
user.setAuthorities(authorities);
return user;
}
}
private Set<Authority> authoritiesFromStrings(Set<String> authoritiesAsString) {
Set<Authority> authorities = new HashSet<>();
if (authoritiesAsString != null) {
authorities = authoritiesAsString.stream().map(string -> {
Authority auth = new Authority();
auth.setName(string);
return auth;
}).collect(Collectors.toSet());
}
return authorities;
}
public User userFromId(String id) {
if (id == null) {
return null;
}
User user = new User();
user.setId(id);
return user;
}
}
| [
"mdigennar@gmail.com"
] | mdigennar@gmail.com |
10f3e30f1eee5cb6bdc297b0ad7ea50ba775def6 | c2cdcf1c266d46f13dcc3b0c0d2691287f071381 | /src/main/java/com/home/myapp/jhipster/config/ThymeleafConfiguration.java | f43d9b9b300b54bbdba28c47ece4ee7ae6c326af | [] | no_license | faustocdiaz/demohipster | a495b30abed83d2cfe3d8832836a3f8a29d59e6b | d66bc224a795a813c3d7e86eee5e3dc3149e49cd | refs/heads/master | 2021-01-21T17:47:32.166256 | 2017-05-21T22:51:42 | 2017-05-21T22:51:42 | 91,992,237 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 992 | java | package com.home.myapp.jhipster.config;
import org.apache.commons.lang3.CharEncoding;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.*;
import org.thymeleaf.templateresolver.ClassLoaderTemplateResolver;
@Configuration
public class ThymeleafConfiguration {
@SuppressWarnings("unused")
private final Logger log = LoggerFactory.getLogger(ThymeleafConfiguration.class);
@Bean
@Description("Thymeleaf template resolver serving HTML 5 emails")
public ClassLoaderTemplateResolver emailTemplateResolver() {
ClassLoaderTemplateResolver emailTemplateResolver = new ClassLoaderTemplateResolver();
emailTemplateResolver.setPrefix("mails/");
emailTemplateResolver.setSuffix(".html");
emailTemplateResolver.setTemplateMode("HTML5");
emailTemplateResolver.setCharacterEncoding(CharEncoding.UTF_8);
emailTemplateResolver.setOrder(1);
return emailTemplateResolver;
}
}
| [
"faustoc.diaz@gmail.com"
] | faustoc.diaz@gmail.com |
23b475c75d427baab2cec8c9b0300555a683d356 | 3290d080727d394597214fe32b857234e5998ad7 | /proj2/byog/Core/Explorer.java | e84ea7dd3b6d00ff7bd85ee430f5e5b7c6032936 | [] | no_license | ryanyuan42/cs61b | b4afc256ab01b9fe1a14475e2c2bae654863a242 | 54c8b62fb3e5387e433abd3c5d95d74ab4606cc5 | refs/heads/master | 2020-04-08T20:22:38.146473 | 2019-03-29T22:13:11 | 2019-03-29T22:13:11 | 159,696,558 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,570 | java | package byog.Core;
import byog.TileEngine.TETile;
import byog.TileEngine.Tileset;
public class Explorer extends Person {
public Explorer(int x, int y, String n, int h) {
xPos = x;
yPos = y;
name = n;
health = h;
}
public Explorer(PersonData d) {
xPos = d.getxPos();
yPos = d.getyPos();
name = d.getName();
health = d.getHealth();
}
public void moveUp(TETile[][] world) {
int newYPos = yPos + 1;
if (checkMoveable(world, xPos, newYPos)) {
world[xPos][yPos] = Tileset.FLOOR;
yPos = newYPos;
world[xPos][yPos] = getElement();
}
updateData();
}
public void moveDown(TETile[][] world) {
int newYPos = yPos - 1;
if (checkMoveable(world, xPos, newYPos)) {
world[xPos][yPos] = Tileset.FLOOR;
yPos = newYPos;
world[xPos][yPos] = getElement();
}
updateData();
}
public void moveLeft(TETile[][] world) {
int newXPos = xPos - 1;
if (checkMoveable(world, newXPos, yPos)) {
world[xPos][yPos] = Tileset.FLOOR;
xPos = newXPos;
world[xPos][yPos] = getElement();
}
updateData();
}
public void moveRight(TETile[][] world) {
int newXPos = xPos + 1;
if (checkMoveable(world, newXPos, yPos)) {
world[xPos][yPos] = Tileset.FLOOR;
xPos = newXPos;
world[xPos][yPos] = getElement();
}
updateData();
}
}
| [
"tyuan3@wolftech.ad.ncsu.edu"
] | tyuan3@wolftech.ad.ncsu.edu |
ca94c0d9b9eaa0373a242ec1ec39fa4f51c6d292 | 570fa14bd9fc51c128f5a6cad03df639f9ae16fd | /src/main/java/com/jay/googlelocation/models/googledistance/Steps.java | 134e9fb7c32633169ae0956ac15ee45103d8dc41 | [] | no_license | Jaypeerbits/googlelocation | e794ae9f7c5cdb64e7ef6325ee22ff7b52fc5859 | 248810ee155cc3c4b2830f892030b72af5765423 | refs/heads/master | 2020-04-17T07:36:03.770924 | 2019-03-11T13:47:17 | 2019-03-11T13:47:17 | 166,376,736 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,821 | java | package com.jay.googlelocation.models.googledistance;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
/**
* Awesome Pojo Generator
* */
public class Steps{
@SerializedName("duration")
@Expose
private Duration duration;
@SerializedName("start_location")
@Expose
private Start_location start_location;
@SerializedName("distance")
@Expose
private Distance distance;
@SerializedName("travel_mode")
@Expose
private String travel_mode;
@SerializedName("html_instructions")
@Expose
private String html_instructions;
@SerializedName("end_location")
@Expose
private End_location end_location;
@SerializedName("polyline")
@Expose
private Polyline polyline;
public void setDuration(Duration duration){
this.duration=duration;
}
public Duration getDuration(){
return duration;
}
public void setStart_location(Start_location start_location){
this.start_location=start_location;
}
public Start_location getStart_location(){
return start_location;
}
public void setDistance(Distance distance){
this.distance=distance;
}
public Distance getDistance(){
return distance;
}
public void setTravel_mode(String travel_mode){
this.travel_mode=travel_mode;
}
public String getTravel_mode(){
return travel_mode;
}
public void setHtml_instructions(String html_instructions){
this.html_instructions=html_instructions;
}
public String getHtml_instructions(){
return html_instructions;
}
public void setEnd_location(End_location end_location){
this.end_location=end_location;
}
public End_location getEnd_location(){
return end_location;
}
public void setPolyline(Polyline polyline){
this.polyline=polyline;
}
public Polyline getPolyline(){
return polyline;
}
} | [
"jaykumar@peerbits.com"
] | jaykumar@peerbits.com |
9d076ec9f1a5d0a3021f68ab3267612c39f858a8 | 2e33c7d541cd9da405d25ae9063a2788f3b54e0b | /src/main/java/menu/ChoiceArtifactMenu.java | c15f003ef43d551b2f179fb52f28c9b4f0c85ec6 | [] | no_license | yakub3k/gameoflife | 0b1b1b6b71e1622cba5aa8c6a5959c6bde240eee | 0570c09a5c9014def7a5b0997863bd02999dc813 | refs/heads/master | 2020-04-22T00:45:54.461871 | 2019-02-14T05:56:29 | 2019-02-14T05:56:29 | 169,991,998 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,036 | java | package menu;
import game.ArtifactGame;
import gameoflife.artefact.Artifactory;
import util.Log;
import javax.swing.*;
import java.awt.*;
public class ChoiceArtifactMenu extends JFrame {
public ChoiceArtifactMenu(ArtifactGame game) throws HeadlessException {
Container content = getContentPane();
content.setLayout(new BoxLayout(content, BoxLayout.PAGE_AXIS));
Box box = Box.createVerticalBox();
Artifactory gameArtifactory = game.getArtifactory();
for (String model : gameArtifactory.getArtifacts()) {
JButton button = new JButton(model);
button.addActionListener(c -> {
String selectModel = c.getActionCommand();
Log.log("Select model: " + selectModel);
game.setInsertModel(selectModel);
});
box.add(button);
}
add(box);
setPreferredSize(new Dimension(200, 260));
setMinimumSize(new Dimension(100, 100));
setVisible(true);
pack();
}
}
| [
"jakub.madejski@ttms.pl"
] | jakub.madejski@ttms.pl |
03fc9c396748a37af580eee5f3fac4b31438ea1d | 2f06aebd60e3cd76c1035ab16bec4fabfc198f87 | /src/main/java/es/rostan/hibernate/entidades/matrizReferencial.java | e2774072f8aef4a9e93f3624177c19522f1d3b1e | [] | no_license | Rostanxd/RESDEC | ea251bc5f7e0521b460c227045754f996009bcc3 | 18879373e3d2b633b799866223239343ab8d1178 | refs/heads/master | 2021-01-23T01:25:34.156932 | 2017-04-24T21:16:53 | 2017-04-24T21:16:53 | 85,903,713 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,809 | java | package es.rostan.hibernate.entidades;
import javax.persistence.*;
import java.io.Serializable;
/**
* Created by Rostan on 19/02/2017.
*/
@Entity
@Table(name = "matrizReferencial")
public class matrizReferencial implements Serializable{
@Id
private long appCodigo;
@Id
private long crcCodigo;
@Column(name = "mtrRefSumatoria")
private Integer mtrRefSumatoria;
@Column(name = "mtrRefContador")
private Integer mtrRefContador;
@ManyToOne
@JoinColumn(name = "appCodigo", updatable = false, insertable = false,
referencedColumnName = "appCodigo")
private app app;
@ManyToOne
@JoinColumn(name = "crcCodigo", updatable = false, insertable = false,
referencedColumnName = "CrcCodigo")
private caracteristica caracteristica;
// CONSTRUCTORES
public matrizReferencial(){
}
public matrizReferencial(Integer mtrRefSumatoria, Integer mtrRefContador, es.rostan.hibernate.entidades.app app, es.rostan.hibernate.entidades.caracteristica caracteristica) {
this.mtrRefSumatoria = mtrRefSumatoria;
this.mtrRefContador = mtrRefContador;
this.app = app;
this.caracteristica = caracteristica;
}
// GETTERs Y SETTERS
public long getAppCodigo() {
return appCodigo;
}
public void setAppCodigo(long appCodigo) {
this.appCodigo = appCodigo;
}
public long getCrcCodigo() {
return crcCodigo;
}
public void setCrcCodigo(long crcCodigo) {
this.crcCodigo = crcCodigo;
}
public Integer getMtrRefSumatoria() {
return mtrRefSumatoria;
}
public void setMtrRefSumatoria(Integer mtrRefSumatoria) {
this.mtrRefSumatoria = mtrRefSumatoria;
}
public Integer getMtrRefContador() {
return mtrRefContador;
}
public void setMtrRefContador(Integer mtrRefContador) {
this.mtrRefContador = mtrRefContador;
}
public es.rostan.hibernate.entidades.app getApp() {
return app;
}
public void setApp(es.rostan.hibernate.entidades.app app) {
this.app = app;
}
public es.rostan.hibernate.entidades.caracteristica getCaracteristica() {
return caracteristica;
}
public void setCaracteristica(es.rostan.hibernate.entidades.caracteristica caracteristica) {
this.caracteristica = caracteristica;
}
// OVERRIDE
@Override
public String toString() {
return "matrizReferencial{" +
"appCodigo=" + appCodigo +
", crcCodigo=" + crcCodigo +
", mtrRefSumatoria=" + mtrRefSumatoria +
", mtrRefContador=" + mtrRefContador +
", app=" + app +
", caracteristica=" + caracteristica +
'}';
}
}
| [
"allowed_g@hotmail.com"
] | allowed_g@hotmail.com |
ab2bf61007b13c83a88ec91e4e376bfd47477473 | b21a5cd92d60a176b5b46f26edb2416d8c1ad535 | /src/main/java/com/diplom/filestreamer/entity/Source.java | 5ffd4a5fce12a410f420f9e4c0b88f6625b92d9c | [] | no_license | aleksandr-tarasov/diplom-file-streamer | f94568628d5c0425acdf58a6c24f7ba905a789cd | 62daefb91a2f14947e81f2434b212a8f988f030b | refs/heads/master | 2022-01-13T02:38:48.337949 | 2019-06-09T10:39:06 | 2019-06-09T10:39:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 406 | java | package com.diplom.filestreamer.entity;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Data
@Builder
@Table(name = "sources")
@NoArgsConstructor
@AllArgsConstructor
public class Source {
@Id
String id;
long maxCacheAmount;
}
| [
"tarasovae97@mail.ru"
] | tarasovae97@mail.ru |
1a3c616cb661579304119ca060f1835a262a2a85 | a9fd7acab7163c08761ff1d9d5ed62874d246ba1 | /src/com/androidtrabajo/sqlite/db/EmpleadoDBDAO.java | b5a3412e600a03ff961756a7b3c9f4e4866832d0 | [] | no_license | rlilian/TrabajoAndroid | 7c5ee5258f3b550717e7165bb47705088c2fae83 | 10848c9ff5c5288b0d34b8267ffef46b79ae70a3 | refs/heads/master | 2021-01-11T14:58:30.383045 | 2017-01-28T05:56:50 | 2017-01-28T05:56:50 | 80,268,707 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 611 | java | package com.androidtrabajo.sqlite.db;
import android.content.Context;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
public class EmpleadoDBDAO {
protected SQLiteDatabase database;
private DataBaseHelper dbHelper;
private Context mContext;
public EmpleadoDBDAO(Context context) {
this.mContext = context;
dbHelper = DataBaseHelper.getHelper(mContext);
open();
}
public void open() throws SQLException {
if(dbHelper == null)
dbHelper = DataBaseHelper.getHelper(mContext);
database = dbHelper.getWritableDatabase();
}
}
| [
"lilian@lilian.com"
] | lilian@lilian.com |
307b725c1b2413a91580426691afcf9dfe6f7791 | 7b99a17947eef936b018efc452e3db1d8a3fdc41 | /1907-java/src/m_jdbc/ScoreDelete.java | b9da040b8a039e3598c7fd285a1e75223054152b | [] | no_license | choi-hakgeun/1907-java | ff9ac3c91d815d7ef1922eb9a4b648b3fd848e1b | dc7fcd736c3a624735e4235ce97dafd293320886 | refs/heads/master | 2022-04-10T06:36:36.777594 | 2020-03-13T08:15:39 | 2020-03-13T08:15:39 | null | 0 | 0 | null | null | null | null | UHC | Java | false | false | 6,588 | java | package m_jdbc;
import java.awt.EventQueue;
import javax.swing.JInternalFrame;
import javax.swing.JLabel;
import java.awt.Color;
import javax.swing.SwingConstants;
import javax.swing.JTextField;
import javax.swing.JButton;
import javax.swing.JSeparator;
import java.awt.event.ActionListener;
import java.text.SimpleDateFormat;
import java.awt.event.ActionEvent;
public class ScoreDelete extends JInternalFrame {
ScoreDao dao = new ScoreDao();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
private JLabel label;
private JLabel label_1;
private JTextField tserial;
private JButton button;
private JSeparator separator;
private JLabel label_2;
private JTextField tmId;
private JLabel label_3;
private JTextField tmName;
private JLabel label_4;
private JTextField trDate;
private JLabel label_5;
private JTextField tsubject;
private JLabel label_6;
private JTextField tscore;
private JButton button_1;
private JLabel status;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
ScoreDelete frame = new ScoreDelete();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public ScoreDelete() {
super("성적 삭제", false, true, true, true);
setVisible(true);
setTitle("\uC131\uC801 \uC815\uBCF4 \uC0AD\uC81C");
setBounds(0, 258, 358, 311);
getContentPane().setLayout(null);
getContentPane().add(getLabel());
getContentPane().add(getLabel_1());
getContentPane().add(getTserial());
getContentPane().add(getButton());
getContentPane().add(getSeparator());
getContentPane().add(getLabel_2());
getContentPane().add(getTmId());
getContentPane().add(getLabel_3());
getContentPane().add(getTmName());
getContentPane().add(getLabel_4());
getContentPane().add(getTrDate());
getContentPane().add(getLabel_5());
getContentPane().add(getTsubject());
getContentPane().add(getLabel_6());
getContentPane().add(getTscore());
getContentPane().add(getButton_1());
getContentPane().add(getStatus());
}
private JLabel getLabel() {
if (label == null) {
label = new JLabel("\uC131\uC801 \uC0AD\uC81C");
label.setOpaque(true);
label.setHorizontalAlignment(SwingConstants.CENTER);
label.setBackground(new Color(152, 251, 152));
label.setBounds(12, 10, 322, 29);
}
return label;
}
private JLabel getLabel_1() {
if (label_1 == null) {
label_1 = new JLabel("Serial");
label_1.setBounds(12, 49, 45, 15);
}
return label_1;
}
private JTextField getTserial() {
if (tserial == null) {
tserial = new JTextField();
tserial.setColumns(10);
tserial.setBounds(59, 46, 116, 21);
}
return tserial;
}
private JButton getButton() {
if (button == null) {
button = new JButton("\uC870\uD68C");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int serial = Integer.parseInt(tserial.getText());
ScoreVo vo = dao.search(serial);
if(vo == null) {
status.setText("자료가 없습니다.");
}else {
tmId.setText( vo.getmId() );
tmName.setText(vo.getmName());
trDate.setText(sdf.format(vo.getrDate()) );
tsubject.setText( vo.getSubject() );
tscore.setText(vo.getScore()+"");
}
}
});
button.setBounds(187, 45, 97, 23);
}
return button;
}
private JSeparator getSeparator() {
if (separator == null) {
separator = new JSeparator();
separator.setBounds(12, 75, 317, 2);
}
return separator;
}
private JLabel getLabel_2() {
if (label_2 == null) {
label_2 = new JLabel("\uC544\uC774\uB514");
label_2.setBounds(12, 87, 45, 15);
}
return label_2;
}
private JTextField getTmId() {
if (tmId == null) {
tmId = new JTextField();
tmId.setColumns(10);
tmId.setBounds(59, 84, 116, 21);
}
return tmId;
}
private JLabel getLabel_3() {
if (label_3 == null) {
label_3 = new JLabel("\uC131\uBA85");
label_3.setBounds(12, 112, 45, 15);
}
return label_3;
}
private JTextField getTmName() {
if (tmName == null) {
tmName = new JTextField();
tmName.setColumns(10);
tmName.setBounds(59, 109, 116, 21);
}
return tmName;
}
private JLabel getLabel_4() {
if (label_4 == null) {
label_4 = new JLabel("\uC751\uC2DC\uC77C");
label_4.setBounds(12, 137, 45, 15);
}
return label_4;
}
private JTextField getTrDate() {
if (trDate == null) {
trDate = new JTextField();
trDate.setColumns(10);
trDate.setBounds(59, 134, 116, 21);
}
return trDate;
}
private JLabel getLabel_5() {
if (label_5 == null) {
label_5 = new JLabel("\uACFC\uBAA9");
label_5.setBounds(12, 162, 45, 15);
}
return label_5;
}
private JTextField getTsubject() {
if (tsubject == null) {
tsubject = new JTextField();
tsubject.setColumns(10);
tsubject.setBounds(59, 159, 116, 21);
}
return tsubject;
}
private JLabel getLabel_6() {
if (label_6 == null) {
label_6 = new JLabel("\uC810\uC218");
label_6.setBounds(12, 187, 45, 15);
}
return label_6;
}
private JTextField getTscore() {
if (tscore == null) {
tscore = new JTextField();
tscore.setColumns(10);
tscore.setBounds(59, 184, 116, 21);
}
return tscore;
}
private JButton getButton_1() {
if (button_1 == null) {
button_1 = new JButton("\uC0AD\uC81C");
button_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int serial = Integer.parseInt( tserial.getText() );
int cnt = dao.delete(serial);
if(cnt>0) status.setText("자료가 삭제되었습니다.");
else status.setText("자료 삭제 중 오류 발생");
tmId.setText("");
tmName.setText("");
trDate.setText("");
tsubject.setText("");
tscore.setText("");
tserial.requestFocus();
tserial.selectAll();
}
});
button_1.setBounds(59, 215, 116, 23);
}
return button_1;
}
private JLabel getStatus() {
if (status == null) {
status = new JLabel("New label");
status.setOpaque(true);
status.setHorizontalAlignment(SwingConstants.CENTER);
status.setBackground(new Color(127, 255, 212));
status.setBounds(12, 246, 322, 29);
}
return status;
}
}
| [
"JHTA@JHTA-PC"
] | JHTA@JHTA-PC |
3de842d7e49e28b4ed1d8782af22bb8fedd592f5 | 6fdb738252ccad5ab637089596729f70656f6848 | /factoryMethod/src/Work.java | 5f2852eb4eb94318ad21e7f58a6a6b9d387adcfd | [
"MIT"
] | permissive | andy-y-li/designPattern_Java | 773ee720f8c21481a108672cf6b1102590ab31c3 | bd39c44025867cfbbf50a0458c78331b6218d711 | refs/heads/master | 2020-03-16T13:40:18.880068 | 2018-05-09T03:34:17 | 2018-05-09T03:34:17 | 132,696,673 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 52 | java | public interface Work {
void doWork();
}
| [
"andy.li@b-padynamics.com"
] | andy.li@b-padynamics.com |
5d7a696e0682eff9a53f56414dea6aa717787a98 | b5bbad9d9916b1e04cd02c96b5519ebb9cf69395 | /app/src/normalMethods/java/me/ycdev/android/demo/apkmethods/impl/NormalMethods7.java | 9489643fc56991b3b6aa50dc5a3099f9706c3aa4 | [
"Apache-2.0"
] | permissive | dxopt/ApkMethodsTest | 4e083a6977ef535bc98db33c106212daa877d1e0 | 6b68ef645afd28594b9a98e65bb45112eddcb50d | refs/heads/master | 2016-09-05T23:56:19.184726 | 2015-04-20T16:15:12 | 2015-04-20T16:15:12 | 34,248,116 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 847,861 | java | package me.ycdev.android.demo.apkmethods.impl;
public class NormalMethods7 {
public void method0() {
System.out.print("hello: method0");
}
public void method1() {
System.out.print("hello: method1");
}
public void method2() {
System.out.print("hello: method2");
}
public void method3() {
System.out.print("hello: method3");
}
public void method4() {
System.out.print("hello: method4");
}
public void method5() {
System.out.print("hello: method5");
}
public void method6() {
System.out.print("hello: method6");
}
public void method7() {
System.out.print("hello: method7");
}
public void method8() {
System.out.print("hello: method8");
}
public void method9() {
System.out.print("hello: method9");
}
public void method10() {
System.out.print("hello: method10");
}
public void method11() {
System.out.print("hello: method11");
}
public void method12() {
System.out.print("hello: method12");
}
public void method13() {
System.out.print("hello: method13");
}
public void method14() {
System.out.print("hello: method14");
}
public void method15() {
System.out.print("hello: method15");
}
public void method16() {
System.out.print("hello: method16");
}
public void method17() {
System.out.print("hello: method17");
}
public void method18() {
System.out.print("hello: method18");
}
public void method19() {
System.out.print("hello: method19");
}
public void method20() {
System.out.print("hello: method20");
}
public void method21() {
System.out.print("hello: method21");
}
public void method22() {
System.out.print("hello: method22");
}
public void method23() {
System.out.print("hello: method23");
}
public void method24() {
System.out.print("hello: method24");
}
public void method25() {
System.out.print("hello: method25");
}
public void method26() {
System.out.print("hello: method26");
}
public void method27() {
System.out.print("hello: method27");
}
public void method28() {
System.out.print("hello: method28");
}
public void method29() {
System.out.print("hello: method29");
}
public void method30() {
System.out.print("hello: method30");
}
public void method31() {
System.out.print("hello: method31");
}
public void method32() {
System.out.print("hello: method32");
}
public void method33() {
System.out.print("hello: method33");
}
public void method34() {
System.out.print("hello: method34");
}
public void method35() {
System.out.print("hello: method35");
}
public void method36() {
System.out.print("hello: method36");
}
public void method37() {
System.out.print("hello: method37");
}
public void method38() {
System.out.print("hello: method38");
}
public void method39() {
System.out.print("hello: method39");
}
public void method40() {
System.out.print("hello: method40");
}
public void method41() {
System.out.print("hello: method41");
}
public void method42() {
System.out.print("hello: method42");
}
public void method43() {
System.out.print("hello: method43");
}
public void method44() {
System.out.print("hello: method44");
}
public void method45() {
System.out.print("hello: method45");
}
public void method46() {
System.out.print("hello: method46");
}
public void method47() {
System.out.print("hello: method47");
}
public void method48() {
System.out.print("hello: method48");
}
public void method49() {
System.out.print("hello: method49");
}
public void method50() {
System.out.print("hello: method50");
}
public void method51() {
System.out.print("hello: method51");
}
public void method52() {
System.out.print("hello: method52");
}
public void method53() {
System.out.print("hello: method53");
}
public void method54() {
System.out.print("hello: method54");
}
public void method55() {
System.out.print("hello: method55");
}
public void method56() {
System.out.print("hello: method56");
}
public void method57() {
System.out.print("hello: method57");
}
public void method58() {
System.out.print("hello: method58");
}
public void method59() {
System.out.print("hello: method59");
}
public void method60() {
System.out.print("hello: method60");
}
public void method61() {
System.out.print("hello: method61");
}
public void method62() {
System.out.print("hello: method62");
}
public void method63() {
System.out.print("hello: method63");
}
public void method64() {
System.out.print("hello: method64");
}
public void method65() {
System.out.print("hello: method65");
}
public void method66() {
System.out.print("hello: method66");
}
public void method67() {
System.out.print("hello: method67");
}
public void method68() {
System.out.print("hello: method68");
}
public void method69() {
System.out.print("hello: method69");
}
public void method70() {
System.out.print("hello: method70");
}
public void method71() {
System.out.print("hello: method71");
}
public void method72() {
System.out.print("hello: method72");
}
public void method73() {
System.out.print("hello: method73");
}
public void method74() {
System.out.print("hello: method74");
}
public void method75() {
System.out.print("hello: method75");
}
public void method76() {
System.out.print("hello: method76");
}
public void method77() {
System.out.print("hello: method77");
}
public void method78() {
System.out.print("hello: method78");
}
public void method79() {
System.out.print("hello: method79");
}
public void method80() {
System.out.print("hello: method80");
}
public void method81() {
System.out.print("hello: method81");
}
public void method82() {
System.out.print("hello: method82");
}
public void method83() {
System.out.print("hello: method83");
}
public void method84() {
System.out.print("hello: method84");
}
public void method85() {
System.out.print("hello: method85");
}
public void method86() {
System.out.print("hello: method86");
}
public void method87() {
System.out.print("hello: method87");
}
public void method88() {
System.out.print("hello: method88");
}
public void method89() {
System.out.print("hello: method89");
}
public void method90() {
System.out.print("hello: method90");
}
public void method91() {
System.out.print("hello: method91");
}
public void method92() {
System.out.print("hello: method92");
}
public void method93() {
System.out.print("hello: method93");
}
public void method94() {
System.out.print("hello: method94");
}
public void method95() {
System.out.print("hello: method95");
}
public void method96() {
System.out.print("hello: method96");
}
public void method97() {
System.out.print("hello: method97");
}
public void method98() {
System.out.print("hello: method98");
}
public void method99() {
System.out.print("hello: method99");
}
public void method100() {
System.out.print("hello: method100");
}
public void method101() {
System.out.print("hello: method101");
}
public void method102() {
System.out.print("hello: method102");
}
public void method103() {
System.out.print("hello: method103");
}
public void method104() {
System.out.print("hello: method104");
}
public void method105() {
System.out.print("hello: method105");
}
public void method106() {
System.out.print("hello: method106");
}
public void method107() {
System.out.print("hello: method107");
}
public void method108() {
System.out.print("hello: method108");
}
public void method109() {
System.out.print("hello: method109");
}
public void method110() {
System.out.print("hello: method110");
}
public void method111() {
System.out.print("hello: method111");
}
public void method112() {
System.out.print("hello: method112");
}
public void method113() {
System.out.print("hello: method113");
}
public void method114() {
System.out.print("hello: method114");
}
public void method115() {
System.out.print("hello: method115");
}
public void method116() {
System.out.print("hello: method116");
}
public void method117() {
System.out.print("hello: method117");
}
public void method118() {
System.out.print("hello: method118");
}
public void method119() {
System.out.print("hello: method119");
}
public void method120() {
System.out.print("hello: method120");
}
public void method121() {
System.out.print("hello: method121");
}
public void method122() {
System.out.print("hello: method122");
}
public void method123() {
System.out.print("hello: method123");
}
public void method124() {
System.out.print("hello: method124");
}
public void method125() {
System.out.print("hello: method125");
}
public void method126() {
System.out.print("hello: method126");
}
public void method127() {
System.out.print("hello: method127");
}
public void method128() {
System.out.print("hello: method128");
}
public void method129() {
System.out.print("hello: method129");
}
public void method130() {
System.out.print("hello: method130");
}
public void method131() {
System.out.print("hello: method131");
}
public void method132() {
System.out.print("hello: method132");
}
public void method133() {
System.out.print("hello: method133");
}
public void method134() {
System.out.print("hello: method134");
}
public void method135() {
System.out.print("hello: method135");
}
public void method136() {
System.out.print("hello: method136");
}
public void method137() {
System.out.print("hello: method137");
}
public void method138() {
System.out.print("hello: method138");
}
public void method139() {
System.out.print("hello: method139");
}
public void method140() {
System.out.print("hello: method140");
}
public void method141() {
System.out.print("hello: method141");
}
public void method142() {
System.out.print("hello: method142");
}
public void method143() {
System.out.print("hello: method143");
}
public void method144() {
System.out.print("hello: method144");
}
public void method145() {
System.out.print("hello: method145");
}
public void method146() {
System.out.print("hello: method146");
}
public void method147() {
System.out.print("hello: method147");
}
public void method148() {
System.out.print("hello: method148");
}
public void method149() {
System.out.print("hello: method149");
}
public void method150() {
System.out.print("hello: method150");
}
public void method151() {
System.out.print("hello: method151");
}
public void method152() {
System.out.print("hello: method152");
}
public void method153() {
System.out.print("hello: method153");
}
public void method154() {
System.out.print("hello: method154");
}
public void method155() {
System.out.print("hello: method155");
}
public void method156() {
System.out.print("hello: method156");
}
public void method157() {
System.out.print("hello: method157");
}
public void method158() {
System.out.print("hello: method158");
}
public void method159() {
System.out.print("hello: method159");
}
public void method160() {
System.out.print("hello: method160");
}
public void method161() {
System.out.print("hello: method161");
}
public void method162() {
System.out.print("hello: method162");
}
public void method163() {
System.out.print("hello: method163");
}
public void method164() {
System.out.print("hello: method164");
}
public void method165() {
System.out.print("hello: method165");
}
public void method166() {
System.out.print("hello: method166");
}
public void method167() {
System.out.print("hello: method167");
}
public void method168() {
System.out.print("hello: method168");
}
public void method169() {
System.out.print("hello: method169");
}
public void method170() {
System.out.print("hello: method170");
}
public void method171() {
System.out.print("hello: method171");
}
public void method172() {
System.out.print("hello: method172");
}
public void method173() {
System.out.print("hello: method173");
}
public void method174() {
System.out.print("hello: method174");
}
public void method175() {
System.out.print("hello: method175");
}
public void method176() {
System.out.print("hello: method176");
}
public void method177() {
System.out.print("hello: method177");
}
public void method178() {
System.out.print("hello: method178");
}
public void method179() {
System.out.print("hello: method179");
}
public void method180() {
System.out.print("hello: method180");
}
public void method181() {
System.out.print("hello: method181");
}
public void method182() {
System.out.print("hello: method182");
}
public void method183() {
System.out.print("hello: method183");
}
public void method184() {
System.out.print("hello: method184");
}
public void method185() {
System.out.print("hello: method185");
}
public void method186() {
System.out.print("hello: method186");
}
public void method187() {
System.out.print("hello: method187");
}
public void method188() {
System.out.print("hello: method188");
}
public void method189() {
System.out.print("hello: method189");
}
public void method190() {
System.out.print("hello: method190");
}
public void method191() {
System.out.print("hello: method191");
}
public void method192() {
System.out.print("hello: method192");
}
public void method193() {
System.out.print("hello: method193");
}
public void method194() {
System.out.print("hello: method194");
}
public void method195() {
System.out.print("hello: method195");
}
public void method196() {
System.out.print("hello: method196");
}
public void method197() {
System.out.print("hello: method197");
}
public void method198() {
System.out.print("hello: method198");
}
public void method199() {
System.out.print("hello: method199");
}
public void method200() {
System.out.print("hello: method200");
}
public void method201() {
System.out.print("hello: method201");
}
public void method202() {
System.out.print("hello: method202");
}
public void method203() {
System.out.print("hello: method203");
}
public void method204() {
System.out.print("hello: method204");
}
public void method205() {
System.out.print("hello: method205");
}
public void method206() {
System.out.print("hello: method206");
}
public void method207() {
System.out.print("hello: method207");
}
public void method208() {
System.out.print("hello: method208");
}
public void method209() {
System.out.print("hello: method209");
}
public void method210() {
System.out.print("hello: method210");
}
public void method211() {
System.out.print("hello: method211");
}
public void method212() {
System.out.print("hello: method212");
}
public void method213() {
System.out.print("hello: method213");
}
public void method214() {
System.out.print("hello: method214");
}
public void method215() {
System.out.print("hello: method215");
}
public void method216() {
System.out.print("hello: method216");
}
public void method217() {
System.out.print("hello: method217");
}
public void method218() {
System.out.print("hello: method218");
}
public void method219() {
System.out.print("hello: method219");
}
public void method220() {
System.out.print("hello: method220");
}
public void method221() {
System.out.print("hello: method221");
}
public void method222() {
System.out.print("hello: method222");
}
public void method223() {
System.out.print("hello: method223");
}
public void method224() {
System.out.print("hello: method224");
}
public void method225() {
System.out.print("hello: method225");
}
public void method226() {
System.out.print("hello: method226");
}
public void method227() {
System.out.print("hello: method227");
}
public void method228() {
System.out.print("hello: method228");
}
public void method229() {
System.out.print("hello: method229");
}
public void method230() {
System.out.print("hello: method230");
}
public void method231() {
System.out.print("hello: method231");
}
public void method232() {
System.out.print("hello: method232");
}
public void method233() {
System.out.print("hello: method233");
}
public void method234() {
System.out.print("hello: method234");
}
public void method235() {
System.out.print("hello: method235");
}
public void method236() {
System.out.print("hello: method236");
}
public void method237() {
System.out.print("hello: method237");
}
public void method238() {
System.out.print("hello: method238");
}
public void method239() {
System.out.print("hello: method239");
}
public void method240() {
System.out.print("hello: method240");
}
public void method241() {
System.out.print("hello: method241");
}
public void method242() {
System.out.print("hello: method242");
}
public void method243() {
System.out.print("hello: method243");
}
public void method244() {
System.out.print("hello: method244");
}
public void method245() {
System.out.print("hello: method245");
}
public void method246() {
System.out.print("hello: method246");
}
public void method247() {
System.out.print("hello: method247");
}
public void method248() {
System.out.print("hello: method248");
}
public void method249() {
System.out.print("hello: method249");
}
public void method250() {
System.out.print("hello: method250");
}
public void method251() {
System.out.print("hello: method251");
}
public void method252() {
System.out.print("hello: method252");
}
public void method253() {
System.out.print("hello: method253");
}
public void method254() {
System.out.print("hello: method254");
}
public void method255() {
System.out.print("hello: method255");
}
public void method256() {
System.out.print("hello: method256");
}
public void method257() {
System.out.print("hello: method257");
}
public void method258() {
System.out.print("hello: method258");
}
public void method259() {
System.out.print("hello: method259");
}
public void method260() {
System.out.print("hello: method260");
}
public void method261() {
System.out.print("hello: method261");
}
public void method262() {
System.out.print("hello: method262");
}
public void method263() {
System.out.print("hello: method263");
}
public void method264() {
System.out.print("hello: method264");
}
public void method265() {
System.out.print("hello: method265");
}
public void method266() {
System.out.print("hello: method266");
}
public void method267() {
System.out.print("hello: method267");
}
public void method268() {
System.out.print("hello: method268");
}
public void method269() {
System.out.print("hello: method269");
}
public void method270() {
System.out.print("hello: method270");
}
public void method271() {
System.out.print("hello: method271");
}
public void method272() {
System.out.print("hello: method272");
}
public void method273() {
System.out.print("hello: method273");
}
public void method274() {
System.out.print("hello: method274");
}
public void method275() {
System.out.print("hello: method275");
}
public void method276() {
System.out.print("hello: method276");
}
public void method277() {
System.out.print("hello: method277");
}
public void method278() {
System.out.print("hello: method278");
}
public void method279() {
System.out.print("hello: method279");
}
public void method280() {
System.out.print("hello: method280");
}
public void method281() {
System.out.print("hello: method281");
}
public void method282() {
System.out.print("hello: method282");
}
public void method283() {
System.out.print("hello: method283");
}
public void method284() {
System.out.print("hello: method284");
}
public void method285() {
System.out.print("hello: method285");
}
public void method286() {
System.out.print("hello: method286");
}
public void method287() {
System.out.print("hello: method287");
}
public void method288() {
System.out.print("hello: method288");
}
public void method289() {
System.out.print("hello: method289");
}
public void method290() {
System.out.print("hello: method290");
}
public void method291() {
System.out.print("hello: method291");
}
public void method292() {
System.out.print("hello: method292");
}
public void method293() {
System.out.print("hello: method293");
}
public void method294() {
System.out.print("hello: method294");
}
public void method295() {
System.out.print("hello: method295");
}
public void method296() {
System.out.print("hello: method296");
}
public void method297() {
System.out.print("hello: method297");
}
public void method298() {
System.out.print("hello: method298");
}
public void method299() {
System.out.print("hello: method299");
}
public void method300() {
System.out.print("hello: method300");
}
public void method301() {
System.out.print("hello: method301");
}
public void method302() {
System.out.print("hello: method302");
}
public void method303() {
System.out.print("hello: method303");
}
public void method304() {
System.out.print("hello: method304");
}
public void method305() {
System.out.print("hello: method305");
}
public void method306() {
System.out.print("hello: method306");
}
public void method307() {
System.out.print("hello: method307");
}
public void method308() {
System.out.print("hello: method308");
}
public void method309() {
System.out.print("hello: method309");
}
public void method310() {
System.out.print("hello: method310");
}
public void method311() {
System.out.print("hello: method311");
}
public void method312() {
System.out.print("hello: method312");
}
public void method313() {
System.out.print("hello: method313");
}
public void method314() {
System.out.print("hello: method314");
}
public void method315() {
System.out.print("hello: method315");
}
public void method316() {
System.out.print("hello: method316");
}
public void method317() {
System.out.print("hello: method317");
}
public void method318() {
System.out.print("hello: method318");
}
public void method319() {
System.out.print("hello: method319");
}
public void method320() {
System.out.print("hello: method320");
}
public void method321() {
System.out.print("hello: method321");
}
public void method322() {
System.out.print("hello: method322");
}
public void method323() {
System.out.print("hello: method323");
}
public void method324() {
System.out.print("hello: method324");
}
public void method325() {
System.out.print("hello: method325");
}
public void method326() {
System.out.print("hello: method326");
}
public void method327() {
System.out.print("hello: method327");
}
public void method328() {
System.out.print("hello: method328");
}
public void method329() {
System.out.print("hello: method329");
}
public void method330() {
System.out.print("hello: method330");
}
public void method331() {
System.out.print("hello: method331");
}
public void method332() {
System.out.print("hello: method332");
}
public void method333() {
System.out.print("hello: method333");
}
public void method334() {
System.out.print("hello: method334");
}
public void method335() {
System.out.print("hello: method335");
}
public void method336() {
System.out.print("hello: method336");
}
public void method337() {
System.out.print("hello: method337");
}
public void method338() {
System.out.print("hello: method338");
}
public void method339() {
System.out.print("hello: method339");
}
public void method340() {
System.out.print("hello: method340");
}
public void method341() {
System.out.print("hello: method341");
}
public void method342() {
System.out.print("hello: method342");
}
public void method343() {
System.out.print("hello: method343");
}
public void method344() {
System.out.print("hello: method344");
}
public void method345() {
System.out.print("hello: method345");
}
public void method346() {
System.out.print("hello: method346");
}
public void method347() {
System.out.print("hello: method347");
}
public void method348() {
System.out.print("hello: method348");
}
public void method349() {
System.out.print("hello: method349");
}
public void method350() {
System.out.print("hello: method350");
}
public void method351() {
System.out.print("hello: method351");
}
public void method352() {
System.out.print("hello: method352");
}
public void method353() {
System.out.print("hello: method353");
}
public void method354() {
System.out.print("hello: method354");
}
public void method355() {
System.out.print("hello: method355");
}
public void method356() {
System.out.print("hello: method356");
}
public void method357() {
System.out.print("hello: method357");
}
public void method358() {
System.out.print("hello: method358");
}
public void method359() {
System.out.print("hello: method359");
}
public void method360() {
System.out.print("hello: method360");
}
public void method361() {
System.out.print("hello: method361");
}
public void method362() {
System.out.print("hello: method362");
}
public void method363() {
System.out.print("hello: method363");
}
public void method364() {
System.out.print("hello: method364");
}
public void method365() {
System.out.print("hello: method365");
}
public void method366() {
System.out.print("hello: method366");
}
public void method367() {
System.out.print("hello: method367");
}
public void method368() {
System.out.print("hello: method368");
}
public void method369() {
System.out.print("hello: method369");
}
public void method370() {
System.out.print("hello: method370");
}
public void method371() {
System.out.print("hello: method371");
}
public void method372() {
System.out.print("hello: method372");
}
public void method373() {
System.out.print("hello: method373");
}
public void method374() {
System.out.print("hello: method374");
}
public void method375() {
System.out.print("hello: method375");
}
public void method376() {
System.out.print("hello: method376");
}
public void method377() {
System.out.print("hello: method377");
}
public void method378() {
System.out.print("hello: method378");
}
public void method379() {
System.out.print("hello: method379");
}
public void method380() {
System.out.print("hello: method380");
}
public void method381() {
System.out.print("hello: method381");
}
public void method382() {
System.out.print("hello: method382");
}
public void method383() {
System.out.print("hello: method383");
}
public void method384() {
System.out.print("hello: method384");
}
public void method385() {
System.out.print("hello: method385");
}
public void method386() {
System.out.print("hello: method386");
}
public void method387() {
System.out.print("hello: method387");
}
public void method388() {
System.out.print("hello: method388");
}
public void method389() {
System.out.print("hello: method389");
}
public void method390() {
System.out.print("hello: method390");
}
public void method391() {
System.out.print("hello: method391");
}
public void method392() {
System.out.print("hello: method392");
}
public void method393() {
System.out.print("hello: method393");
}
public void method394() {
System.out.print("hello: method394");
}
public void method395() {
System.out.print("hello: method395");
}
public void method396() {
System.out.print("hello: method396");
}
public void method397() {
System.out.print("hello: method397");
}
public void method398() {
System.out.print("hello: method398");
}
public void method399() {
System.out.print("hello: method399");
}
public void method400() {
System.out.print("hello: method400");
}
public void method401() {
System.out.print("hello: method401");
}
public void method402() {
System.out.print("hello: method402");
}
public void method403() {
System.out.print("hello: method403");
}
public void method404() {
System.out.print("hello: method404");
}
public void method405() {
System.out.print("hello: method405");
}
public void method406() {
System.out.print("hello: method406");
}
public void method407() {
System.out.print("hello: method407");
}
public void method408() {
System.out.print("hello: method408");
}
public void method409() {
System.out.print("hello: method409");
}
public void method410() {
System.out.print("hello: method410");
}
public void method411() {
System.out.print("hello: method411");
}
public void method412() {
System.out.print("hello: method412");
}
public void method413() {
System.out.print("hello: method413");
}
public void method414() {
System.out.print("hello: method414");
}
public void method415() {
System.out.print("hello: method415");
}
public void method416() {
System.out.print("hello: method416");
}
public void method417() {
System.out.print("hello: method417");
}
public void method418() {
System.out.print("hello: method418");
}
public void method419() {
System.out.print("hello: method419");
}
public void method420() {
System.out.print("hello: method420");
}
public void method421() {
System.out.print("hello: method421");
}
public void method422() {
System.out.print("hello: method422");
}
public void method423() {
System.out.print("hello: method423");
}
public void method424() {
System.out.print("hello: method424");
}
public void method425() {
System.out.print("hello: method425");
}
public void method426() {
System.out.print("hello: method426");
}
public void method427() {
System.out.print("hello: method427");
}
public void method428() {
System.out.print("hello: method428");
}
public void method429() {
System.out.print("hello: method429");
}
public void method430() {
System.out.print("hello: method430");
}
public void method431() {
System.out.print("hello: method431");
}
public void method432() {
System.out.print("hello: method432");
}
public void method433() {
System.out.print("hello: method433");
}
public void method434() {
System.out.print("hello: method434");
}
public void method435() {
System.out.print("hello: method435");
}
public void method436() {
System.out.print("hello: method436");
}
public void method437() {
System.out.print("hello: method437");
}
public void method438() {
System.out.print("hello: method438");
}
public void method439() {
System.out.print("hello: method439");
}
public void method440() {
System.out.print("hello: method440");
}
public void method441() {
System.out.print("hello: method441");
}
public void method442() {
System.out.print("hello: method442");
}
public void method443() {
System.out.print("hello: method443");
}
public void method444() {
System.out.print("hello: method444");
}
public void method445() {
System.out.print("hello: method445");
}
public void method446() {
System.out.print("hello: method446");
}
public void method447() {
System.out.print("hello: method447");
}
public void method448() {
System.out.print("hello: method448");
}
public void method449() {
System.out.print("hello: method449");
}
public void method450() {
System.out.print("hello: method450");
}
public void method451() {
System.out.print("hello: method451");
}
public void method452() {
System.out.print("hello: method452");
}
public void method453() {
System.out.print("hello: method453");
}
public void method454() {
System.out.print("hello: method454");
}
public void method455() {
System.out.print("hello: method455");
}
public void method456() {
System.out.print("hello: method456");
}
public void method457() {
System.out.print("hello: method457");
}
public void method458() {
System.out.print("hello: method458");
}
public void method459() {
System.out.print("hello: method459");
}
public void method460() {
System.out.print("hello: method460");
}
public void method461() {
System.out.print("hello: method461");
}
public void method462() {
System.out.print("hello: method462");
}
public void method463() {
System.out.print("hello: method463");
}
public void method464() {
System.out.print("hello: method464");
}
public void method465() {
System.out.print("hello: method465");
}
public void method466() {
System.out.print("hello: method466");
}
public void method467() {
System.out.print("hello: method467");
}
public void method468() {
System.out.print("hello: method468");
}
public void method469() {
System.out.print("hello: method469");
}
public void method470() {
System.out.print("hello: method470");
}
public void method471() {
System.out.print("hello: method471");
}
public void method472() {
System.out.print("hello: method472");
}
public void method473() {
System.out.print("hello: method473");
}
public void method474() {
System.out.print("hello: method474");
}
public void method475() {
System.out.print("hello: method475");
}
public void method476() {
System.out.print("hello: method476");
}
public void method477() {
System.out.print("hello: method477");
}
public void method478() {
System.out.print("hello: method478");
}
public void method479() {
System.out.print("hello: method479");
}
public void method480() {
System.out.print("hello: method480");
}
public void method481() {
System.out.print("hello: method481");
}
public void method482() {
System.out.print("hello: method482");
}
public void method483() {
System.out.print("hello: method483");
}
public void method484() {
System.out.print("hello: method484");
}
public void method485() {
System.out.print("hello: method485");
}
public void method486() {
System.out.print("hello: method486");
}
public void method487() {
System.out.print("hello: method487");
}
public void method488() {
System.out.print("hello: method488");
}
public void method489() {
System.out.print("hello: method489");
}
public void method490() {
System.out.print("hello: method490");
}
public void method491() {
System.out.print("hello: method491");
}
public void method492() {
System.out.print("hello: method492");
}
public void method493() {
System.out.print("hello: method493");
}
public void method494() {
System.out.print("hello: method494");
}
public void method495() {
System.out.print("hello: method495");
}
public void method496() {
System.out.print("hello: method496");
}
public void method497() {
System.out.print("hello: method497");
}
public void method498() {
System.out.print("hello: method498");
}
public void method499() {
System.out.print("hello: method499");
}
public void method500() {
System.out.print("hello: method500");
}
public void method501() {
System.out.print("hello: method501");
}
public void method502() {
System.out.print("hello: method502");
}
public void method503() {
System.out.print("hello: method503");
}
public void method504() {
System.out.print("hello: method504");
}
public void method505() {
System.out.print("hello: method505");
}
public void method506() {
System.out.print("hello: method506");
}
public void method507() {
System.out.print("hello: method507");
}
public void method508() {
System.out.print("hello: method508");
}
public void method509() {
System.out.print("hello: method509");
}
public void method510() {
System.out.print("hello: method510");
}
public void method511() {
System.out.print("hello: method511");
}
public void method512() {
System.out.print("hello: method512");
}
public void method513() {
System.out.print("hello: method513");
}
public void method514() {
System.out.print("hello: method514");
}
public void method515() {
System.out.print("hello: method515");
}
public void method516() {
System.out.print("hello: method516");
}
public void method517() {
System.out.print("hello: method517");
}
public void method518() {
System.out.print("hello: method518");
}
public void method519() {
System.out.print("hello: method519");
}
public void method520() {
System.out.print("hello: method520");
}
public void method521() {
System.out.print("hello: method521");
}
public void method522() {
System.out.print("hello: method522");
}
public void method523() {
System.out.print("hello: method523");
}
public void method524() {
System.out.print("hello: method524");
}
public void method525() {
System.out.print("hello: method525");
}
public void method526() {
System.out.print("hello: method526");
}
public void method527() {
System.out.print("hello: method527");
}
public void method528() {
System.out.print("hello: method528");
}
public void method529() {
System.out.print("hello: method529");
}
public void method530() {
System.out.print("hello: method530");
}
public void method531() {
System.out.print("hello: method531");
}
public void method532() {
System.out.print("hello: method532");
}
public void method533() {
System.out.print("hello: method533");
}
public void method534() {
System.out.print("hello: method534");
}
public void method535() {
System.out.print("hello: method535");
}
public void method536() {
System.out.print("hello: method536");
}
public void method537() {
System.out.print("hello: method537");
}
public void method538() {
System.out.print("hello: method538");
}
public void method539() {
System.out.print("hello: method539");
}
public void method540() {
System.out.print("hello: method540");
}
public void method541() {
System.out.print("hello: method541");
}
public void method542() {
System.out.print("hello: method542");
}
public void method543() {
System.out.print("hello: method543");
}
public void method544() {
System.out.print("hello: method544");
}
public void method545() {
System.out.print("hello: method545");
}
public void method546() {
System.out.print("hello: method546");
}
public void method547() {
System.out.print("hello: method547");
}
public void method548() {
System.out.print("hello: method548");
}
public void method549() {
System.out.print("hello: method549");
}
public void method550() {
System.out.print("hello: method550");
}
public void method551() {
System.out.print("hello: method551");
}
public void method552() {
System.out.print("hello: method552");
}
public void method553() {
System.out.print("hello: method553");
}
public void method554() {
System.out.print("hello: method554");
}
public void method555() {
System.out.print("hello: method555");
}
public void method556() {
System.out.print("hello: method556");
}
public void method557() {
System.out.print("hello: method557");
}
public void method558() {
System.out.print("hello: method558");
}
public void method559() {
System.out.print("hello: method559");
}
public void method560() {
System.out.print("hello: method560");
}
public void method561() {
System.out.print("hello: method561");
}
public void method562() {
System.out.print("hello: method562");
}
public void method563() {
System.out.print("hello: method563");
}
public void method564() {
System.out.print("hello: method564");
}
public void method565() {
System.out.print("hello: method565");
}
public void method566() {
System.out.print("hello: method566");
}
public void method567() {
System.out.print("hello: method567");
}
public void method568() {
System.out.print("hello: method568");
}
public void method569() {
System.out.print("hello: method569");
}
public void method570() {
System.out.print("hello: method570");
}
public void method571() {
System.out.print("hello: method571");
}
public void method572() {
System.out.print("hello: method572");
}
public void method573() {
System.out.print("hello: method573");
}
public void method574() {
System.out.print("hello: method574");
}
public void method575() {
System.out.print("hello: method575");
}
public void method576() {
System.out.print("hello: method576");
}
public void method577() {
System.out.print("hello: method577");
}
public void method578() {
System.out.print("hello: method578");
}
public void method579() {
System.out.print("hello: method579");
}
public void method580() {
System.out.print("hello: method580");
}
public void method581() {
System.out.print("hello: method581");
}
public void method582() {
System.out.print("hello: method582");
}
public void method583() {
System.out.print("hello: method583");
}
public void method584() {
System.out.print("hello: method584");
}
public void method585() {
System.out.print("hello: method585");
}
public void method586() {
System.out.print("hello: method586");
}
public void method587() {
System.out.print("hello: method587");
}
public void method588() {
System.out.print("hello: method588");
}
public void method589() {
System.out.print("hello: method589");
}
public void method590() {
System.out.print("hello: method590");
}
public void method591() {
System.out.print("hello: method591");
}
public void method592() {
System.out.print("hello: method592");
}
public void method593() {
System.out.print("hello: method593");
}
public void method594() {
System.out.print("hello: method594");
}
public void method595() {
System.out.print("hello: method595");
}
public void method596() {
System.out.print("hello: method596");
}
public void method597() {
System.out.print("hello: method597");
}
public void method598() {
System.out.print("hello: method598");
}
public void method599() {
System.out.print("hello: method599");
}
public void method600() {
System.out.print("hello: method600");
}
public void method601() {
System.out.print("hello: method601");
}
public void method602() {
System.out.print("hello: method602");
}
public void method603() {
System.out.print("hello: method603");
}
public void method604() {
System.out.print("hello: method604");
}
public void method605() {
System.out.print("hello: method605");
}
public void method606() {
System.out.print("hello: method606");
}
public void method607() {
System.out.print("hello: method607");
}
public void method608() {
System.out.print("hello: method608");
}
public void method609() {
System.out.print("hello: method609");
}
public void method610() {
System.out.print("hello: method610");
}
public void method611() {
System.out.print("hello: method611");
}
public void method612() {
System.out.print("hello: method612");
}
public void method613() {
System.out.print("hello: method613");
}
public void method614() {
System.out.print("hello: method614");
}
public void method615() {
System.out.print("hello: method615");
}
public void method616() {
System.out.print("hello: method616");
}
public void method617() {
System.out.print("hello: method617");
}
public void method618() {
System.out.print("hello: method618");
}
public void method619() {
System.out.print("hello: method619");
}
public void method620() {
System.out.print("hello: method620");
}
public void method621() {
System.out.print("hello: method621");
}
public void method622() {
System.out.print("hello: method622");
}
public void method623() {
System.out.print("hello: method623");
}
public void method624() {
System.out.print("hello: method624");
}
public void method625() {
System.out.print("hello: method625");
}
public void method626() {
System.out.print("hello: method626");
}
public void method627() {
System.out.print("hello: method627");
}
public void method628() {
System.out.print("hello: method628");
}
public void method629() {
System.out.print("hello: method629");
}
public void method630() {
System.out.print("hello: method630");
}
public void method631() {
System.out.print("hello: method631");
}
public void method632() {
System.out.print("hello: method632");
}
public void method633() {
System.out.print("hello: method633");
}
public void method634() {
System.out.print("hello: method634");
}
public void method635() {
System.out.print("hello: method635");
}
public void method636() {
System.out.print("hello: method636");
}
public void method637() {
System.out.print("hello: method637");
}
public void method638() {
System.out.print("hello: method638");
}
public void method639() {
System.out.print("hello: method639");
}
public void method640() {
System.out.print("hello: method640");
}
public void method641() {
System.out.print("hello: method641");
}
public void method642() {
System.out.print("hello: method642");
}
public void method643() {
System.out.print("hello: method643");
}
public void method644() {
System.out.print("hello: method644");
}
public void method645() {
System.out.print("hello: method645");
}
public void method646() {
System.out.print("hello: method646");
}
public void method647() {
System.out.print("hello: method647");
}
public void method648() {
System.out.print("hello: method648");
}
public void method649() {
System.out.print("hello: method649");
}
public void method650() {
System.out.print("hello: method650");
}
public void method651() {
System.out.print("hello: method651");
}
public void method652() {
System.out.print("hello: method652");
}
public void method653() {
System.out.print("hello: method653");
}
public void method654() {
System.out.print("hello: method654");
}
public void method655() {
System.out.print("hello: method655");
}
public void method656() {
System.out.print("hello: method656");
}
public void method657() {
System.out.print("hello: method657");
}
public void method658() {
System.out.print("hello: method658");
}
public void method659() {
System.out.print("hello: method659");
}
public void method660() {
System.out.print("hello: method660");
}
public void method661() {
System.out.print("hello: method661");
}
public void method662() {
System.out.print("hello: method662");
}
public void method663() {
System.out.print("hello: method663");
}
public void method664() {
System.out.print("hello: method664");
}
public void method665() {
System.out.print("hello: method665");
}
public void method666() {
System.out.print("hello: method666");
}
public void method667() {
System.out.print("hello: method667");
}
public void method668() {
System.out.print("hello: method668");
}
public void method669() {
System.out.print("hello: method669");
}
public void method670() {
System.out.print("hello: method670");
}
public void method671() {
System.out.print("hello: method671");
}
public void method672() {
System.out.print("hello: method672");
}
public void method673() {
System.out.print("hello: method673");
}
public void method674() {
System.out.print("hello: method674");
}
public void method675() {
System.out.print("hello: method675");
}
public void method676() {
System.out.print("hello: method676");
}
public void method677() {
System.out.print("hello: method677");
}
public void method678() {
System.out.print("hello: method678");
}
public void method679() {
System.out.print("hello: method679");
}
public void method680() {
System.out.print("hello: method680");
}
public void method681() {
System.out.print("hello: method681");
}
public void method682() {
System.out.print("hello: method682");
}
public void method683() {
System.out.print("hello: method683");
}
public void method684() {
System.out.print("hello: method684");
}
public void method685() {
System.out.print("hello: method685");
}
public void method686() {
System.out.print("hello: method686");
}
public void method687() {
System.out.print("hello: method687");
}
public void method688() {
System.out.print("hello: method688");
}
public void method689() {
System.out.print("hello: method689");
}
public void method690() {
System.out.print("hello: method690");
}
public void method691() {
System.out.print("hello: method691");
}
public void method692() {
System.out.print("hello: method692");
}
public void method693() {
System.out.print("hello: method693");
}
public void method694() {
System.out.print("hello: method694");
}
public void method695() {
System.out.print("hello: method695");
}
public void method696() {
System.out.print("hello: method696");
}
public void method697() {
System.out.print("hello: method697");
}
public void method698() {
System.out.print("hello: method698");
}
public void method699() {
System.out.print("hello: method699");
}
public void method700() {
System.out.print("hello: method700");
}
public void method701() {
System.out.print("hello: method701");
}
public void method702() {
System.out.print("hello: method702");
}
public void method703() {
System.out.print("hello: method703");
}
public void method704() {
System.out.print("hello: method704");
}
public void method705() {
System.out.print("hello: method705");
}
public void method706() {
System.out.print("hello: method706");
}
public void method707() {
System.out.print("hello: method707");
}
public void method708() {
System.out.print("hello: method708");
}
public void method709() {
System.out.print("hello: method709");
}
public void method710() {
System.out.print("hello: method710");
}
public void method711() {
System.out.print("hello: method711");
}
public void method712() {
System.out.print("hello: method712");
}
public void method713() {
System.out.print("hello: method713");
}
public void method714() {
System.out.print("hello: method714");
}
public void method715() {
System.out.print("hello: method715");
}
public void method716() {
System.out.print("hello: method716");
}
public void method717() {
System.out.print("hello: method717");
}
public void method718() {
System.out.print("hello: method718");
}
public void method719() {
System.out.print("hello: method719");
}
public void method720() {
System.out.print("hello: method720");
}
public void method721() {
System.out.print("hello: method721");
}
public void method722() {
System.out.print("hello: method722");
}
public void method723() {
System.out.print("hello: method723");
}
public void method724() {
System.out.print("hello: method724");
}
public void method725() {
System.out.print("hello: method725");
}
public void method726() {
System.out.print("hello: method726");
}
public void method727() {
System.out.print("hello: method727");
}
public void method728() {
System.out.print("hello: method728");
}
public void method729() {
System.out.print("hello: method729");
}
public void method730() {
System.out.print("hello: method730");
}
public void method731() {
System.out.print("hello: method731");
}
public void method732() {
System.out.print("hello: method732");
}
public void method733() {
System.out.print("hello: method733");
}
public void method734() {
System.out.print("hello: method734");
}
public void method735() {
System.out.print("hello: method735");
}
public void method736() {
System.out.print("hello: method736");
}
public void method737() {
System.out.print("hello: method737");
}
public void method738() {
System.out.print("hello: method738");
}
public void method739() {
System.out.print("hello: method739");
}
public void method740() {
System.out.print("hello: method740");
}
public void method741() {
System.out.print("hello: method741");
}
public void method742() {
System.out.print("hello: method742");
}
public void method743() {
System.out.print("hello: method743");
}
public void method744() {
System.out.print("hello: method744");
}
public void method745() {
System.out.print("hello: method745");
}
public void method746() {
System.out.print("hello: method746");
}
public void method747() {
System.out.print("hello: method747");
}
public void method748() {
System.out.print("hello: method748");
}
public void method749() {
System.out.print("hello: method749");
}
public void method750() {
System.out.print("hello: method750");
}
public void method751() {
System.out.print("hello: method751");
}
public void method752() {
System.out.print("hello: method752");
}
public void method753() {
System.out.print("hello: method753");
}
public void method754() {
System.out.print("hello: method754");
}
public void method755() {
System.out.print("hello: method755");
}
public void method756() {
System.out.print("hello: method756");
}
public void method757() {
System.out.print("hello: method757");
}
public void method758() {
System.out.print("hello: method758");
}
public void method759() {
System.out.print("hello: method759");
}
public void method760() {
System.out.print("hello: method760");
}
public void method761() {
System.out.print("hello: method761");
}
public void method762() {
System.out.print("hello: method762");
}
public void method763() {
System.out.print("hello: method763");
}
public void method764() {
System.out.print("hello: method764");
}
public void method765() {
System.out.print("hello: method765");
}
public void method766() {
System.out.print("hello: method766");
}
public void method767() {
System.out.print("hello: method767");
}
public void method768() {
System.out.print("hello: method768");
}
public void method769() {
System.out.print("hello: method769");
}
public void method770() {
System.out.print("hello: method770");
}
public void method771() {
System.out.print("hello: method771");
}
public void method772() {
System.out.print("hello: method772");
}
public void method773() {
System.out.print("hello: method773");
}
public void method774() {
System.out.print("hello: method774");
}
public void method775() {
System.out.print("hello: method775");
}
public void method776() {
System.out.print("hello: method776");
}
public void method777() {
System.out.print("hello: method777");
}
public void method778() {
System.out.print("hello: method778");
}
public void method779() {
System.out.print("hello: method779");
}
public void method780() {
System.out.print("hello: method780");
}
public void method781() {
System.out.print("hello: method781");
}
public void method782() {
System.out.print("hello: method782");
}
public void method783() {
System.out.print("hello: method783");
}
public void method784() {
System.out.print("hello: method784");
}
public void method785() {
System.out.print("hello: method785");
}
public void method786() {
System.out.print("hello: method786");
}
public void method787() {
System.out.print("hello: method787");
}
public void method788() {
System.out.print("hello: method788");
}
public void method789() {
System.out.print("hello: method789");
}
public void method790() {
System.out.print("hello: method790");
}
public void method791() {
System.out.print("hello: method791");
}
public void method792() {
System.out.print("hello: method792");
}
public void method793() {
System.out.print("hello: method793");
}
public void method794() {
System.out.print("hello: method794");
}
public void method795() {
System.out.print("hello: method795");
}
public void method796() {
System.out.print("hello: method796");
}
public void method797() {
System.out.print("hello: method797");
}
public void method798() {
System.out.print("hello: method798");
}
public void method799() {
System.out.print("hello: method799");
}
public void method800() {
System.out.print("hello: method800");
}
public void method801() {
System.out.print("hello: method801");
}
public void method802() {
System.out.print("hello: method802");
}
public void method803() {
System.out.print("hello: method803");
}
public void method804() {
System.out.print("hello: method804");
}
public void method805() {
System.out.print("hello: method805");
}
public void method806() {
System.out.print("hello: method806");
}
public void method807() {
System.out.print("hello: method807");
}
public void method808() {
System.out.print("hello: method808");
}
public void method809() {
System.out.print("hello: method809");
}
public void method810() {
System.out.print("hello: method810");
}
public void method811() {
System.out.print("hello: method811");
}
public void method812() {
System.out.print("hello: method812");
}
public void method813() {
System.out.print("hello: method813");
}
public void method814() {
System.out.print("hello: method814");
}
public void method815() {
System.out.print("hello: method815");
}
public void method816() {
System.out.print("hello: method816");
}
public void method817() {
System.out.print("hello: method817");
}
public void method818() {
System.out.print("hello: method818");
}
public void method819() {
System.out.print("hello: method819");
}
public void method820() {
System.out.print("hello: method820");
}
public void method821() {
System.out.print("hello: method821");
}
public void method822() {
System.out.print("hello: method822");
}
public void method823() {
System.out.print("hello: method823");
}
public void method824() {
System.out.print("hello: method824");
}
public void method825() {
System.out.print("hello: method825");
}
public void method826() {
System.out.print("hello: method826");
}
public void method827() {
System.out.print("hello: method827");
}
public void method828() {
System.out.print("hello: method828");
}
public void method829() {
System.out.print("hello: method829");
}
public void method830() {
System.out.print("hello: method830");
}
public void method831() {
System.out.print("hello: method831");
}
public void method832() {
System.out.print("hello: method832");
}
public void method833() {
System.out.print("hello: method833");
}
public void method834() {
System.out.print("hello: method834");
}
public void method835() {
System.out.print("hello: method835");
}
public void method836() {
System.out.print("hello: method836");
}
public void method837() {
System.out.print("hello: method837");
}
public void method838() {
System.out.print("hello: method838");
}
public void method839() {
System.out.print("hello: method839");
}
public void method840() {
System.out.print("hello: method840");
}
public void method841() {
System.out.print("hello: method841");
}
public void method842() {
System.out.print("hello: method842");
}
public void method843() {
System.out.print("hello: method843");
}
public void method844() {
System.out.print("hello: method844");
}
public void method845() {
System.out.print("hello: method845");
}
public void method846() {
System.out.print("hello: method846");
}
public void method847() {
System.out.print("hello: method847");
}
public void method848() {
System.out.print("hello: method848");
}
public void method849() {
System.out.print("hello: method849");
}
public void method850() {
System.out.print("hello: method850");
}
public void method851() {
System.out.print("hello: method851");
}
public void method852() {
System.out.print("hello: method852");
}
public void method853() {
System.out.print("hello: method853");
}
public void method854() {
System.out.print("hello: method854");
}
public void method855() {
System.out.print("hello: method855");
}
public void method856() {
System.out.print("hello: method856");
}
public void method857() {
System.out.print("hello: method857");
}
public void method858() {
System.out.print("hello: method858");
}
public void method859() {
System.out.print("hello: method859");
}
public void method860() {
System.out.print("hello: method860");
}
public void method861() {
System.out.print("hello: method861");
}
public void method862() {
System.out.print("hello: method862");
}
public void method863() {
System.out.print("hello: method863");
}
public void method864() {
System.out.print("hello: method864");
}
public void method865() {
System.out.print("hello: method865");
}
public void method866() {
System.out.print("hello: method866");
}
public void method867() {
System.out.print("hello: method867");
}
public void method868() {
System.out.print("hello: method868");
}
public void method869() {
System.out.print("hello: method869");
}
public void method870() {
System.out.print("hello: method870");
}
public void method871() {
System.out.print("hello: method871");
}
public void method872() {
System.out.print("hello: method872");
}
public void method873() {
System.out.print("hello: method873");
}
public void method874() {
System.out.print("hello: method874");
}
public void method875() {
System.out.print("hello: method875");
}
public void method876() {
System.out.print("hello: method876");
}
public void method877() {
System.out.print("hello: method877");
}
public void method878() {
System.out.print("hello: method878");
}
public void method879() {
System.out.print("hello: method879");
}
public void method880() {
System.out.print("hello: method880");
}
public void method881() {
System.out.print("hello: method881");
}
public void method882() {
System.out.print("hello: method882");
}
public void method883() {
System.out.print("hello: method883");
}
public void method884() {
System.out.print("hello: method884");
}
public void method885() {
System.out.print("hello: method885");
}
public void method886() {
System.out.print("hello: method886");
}
public void method887() {
System.out.print("hello: method887");
}
public void method888() {
System.out.print("hello: method888");
}
public void method889() {
System.out.print("hello: method889");
}
public void method890() {
System.out.print("hello: method890");
}
public void method891() {
System.out.print("hello: method891");
}
public void method892() {
System.out.print("hello: method892");
}
public void method893() {
System.out.print("hello: method893");
}
public void method894() {
System.out.print("hello: method894");
}
public void method895() {
System.out.print("hello: method895");
}
public void method896() {
System.out.print("hello: method896");
}
public void method897() {
System.out.print("hello: method897");
}
public void method898() {
System.out.print("hello: method898");
}
public void method899() {
System.out.print("hello: method899");
}
public void method900() {
System.out.print("hello: method900");
}
public void method901() {
System.out.print("hello: method901");
}
public void method902() {
System.out.print("hello: method902");
}
public void method903() {
System.out.print("hello: method903");
}
public void method904() {
System.out.print("hello: method904");
}
public void method905() {
System.out.print("hello: method905");
}
public void method906() {
System.out.print("hello: method906");
}
public void method907() {
System.out.print("hello: method907");
}
public void method908() {
System.out.print("hello: method908");
}
public void method909() {
System.out.print("hello: method909");
}
public void method910() {
System.out.print("hello: method910");
}
public void method911() {
System.out.print("hello: method911");
}
public void method912() {
System.out.print("hello: method912");
}
public void method913() {
System.out.print("hello: method913");
}
public void method914() {
System.out.print("hello: method914");
}
public void method915() {
System.out.print("hello: method915");
}
public void method916() {
System.out.print("hello: method916");
}
public void method917() {
System.out.print("hello: method917");
}
public void method918() {
System.out.print("hello: method918");
}
public void method919() {
System.out.print("hello: method919");
}
public void method920() {
System.out.print("hello: method920");
}
public void method921() {
System.out.print("hello: method921");
}
public void method922() {
System.out.print("hello: method922");
}
public void method923() {
System.out.print("hello: method923");
}
public void method924() {
System.out.print("hello: method924");
}
public void method925() {
System.out.print("hello: method925");
}
public void method926() {
System.out.print("hello: method926");
}
public void method927() {
System.out.print("hello: method927");
}
public void method928() {
System.out.print("hello: method928");
}
public void method929() {
System.out.print("hello: method929");
}
public void method930() {
System.out.print("hello: method930");
}
public void method931() {
System.out.print("hello: method931");
}
public void method932() {
System.out.print("hello: method932");
}
public void method933() {
System.out.print("hello: method933");
}
public void method934() {
System.out.print("hello: method934");
}
public void method935() {
System.out.print("hello: method935");
}
public void method936() {
System.out.print("hello: method936");
}
public void method937() {
System.out.print("hello: method937");
}
public void method938() {
System.out.print("hello: method938");
}
public void method939() {
System.out.print("hello: method939");
}
public void method940() {
System.out.print("hello: method940");
}
public void method941() {
System.out.print("hello: method941");
}
public void method942() {
System.out.print("hello: method942");
}
public void method943() {
System.out.print("hello: method943");
}
public void method944() {
System.out.print("hello: method944");
}
public void method945() {
System.out.print("hello: method945");
}
public void method946() {
System.out.print("hello: method946");
}
public void method947() {
System.out.print("hello: method947");
}
public void method948() {
System.out.print("hello: method948");
}
public void method949() {
System.out.print("hello: method949");
}
public void method950() {
System.out.print("hello: method950");
}
public void method951() {
System.out.print("hello: method951");
}
public void method952() {
System.out.print("hello: method952");
}
public void method953() {
System.out.print("hello: method953");
}
public void method954() {
System.out.print("hello: method954");
}
public void method955() {
System.out.print("hello: method955");
}
public void method956() {
System.out.print("hello: method956");
}
public void method957() {
System.out.print("hello: method957");
}
public void method958() {
System.out.print("hello: method958");
}
public void method959() {
System.out.print("hello: method959");
}
public void method960() {
System.out.print("hello: method960");
}
public void method961() {
System.out.print("hello: method961");
}
public void method962() {
System.out.print("hello: method962");
}
public void method963() {
System.out.print("hello: method963");
}
public void method964() {
System.out.print("hello: method964");
}
public void method965() {
System.out.print("hello: method965");
}
public void method966() {
System.out.print("hello: method966");
}
public void method967() {
System.out.print("hello: method967");
}
public void method968() {
System.out.print("hello: method968");
}
public void method969() {
System.out.print("hello: method969");
}
public void method970() {
System.out.print("hello: method970");
}
public void method971() {
System.out.print("hello: method971");
}
public void method972() {
System.out.print("hello: method972");
}
public void method973() {
System.out.print("hello: method973");
}
public void method974() {
System.out.print("hello: method974");
}
public void method975() {
System.out.print("hello: method975");
}
public void method976() {
System.out.print("hello: method976");
}
public void method977() {
System.out.print("hello: method977");
}
public void method978() {
System.out.print("hello: method978");
}
public void method979() {
System.out.print("hello: method979");
}
public void method980() {
System.out.print("hello: method980");
}
public void method981() {
System.out.print("hello: method981");
}
public void method982() {
System.out.print("hello: method982");
}
public void method983() {
System.out.print("hello: method983");
}
public void method984() {
System.out.print("hello: method984");
}
public void method985() {
System.out.print("hello: method985");
}
public void method986() {
System.out.print("hello: method986");
}
public void method987() {
System.out.print("hello: method987");
}
public void method988() {
System.out.print("hello: method988");
}
public void method989() {
System.out.print("hello: method989");
}
public void method990() {
System.out.print("hello: method990");
}
public void method991() {
System.out.print("hello: method991");
}
public void method992() {
System.out.print("hello: method992");
}
public void method993() {
System.out.print("hello: method993");
}
public void method994() {
System.out.print("hello: method994");
}
public void method995() {
System.out.print("hello: method995");
}
public void method996() {
System.out.print("hello: method996");
}
public void method997() {
System.out.print("hello: method997");
}
public void method998() {
System.out.print("hello: method998");
}
public void method999() {
System.out.print("hello: method999");
}
public void method1000() {
System.out.print("hello: method1000");
}
public void method1001() {
System.out.print("hello: method1001");
}
public void method1002() {
System.out.print("hello: method1002");
}
public void method1003() {
System.out.print("hello: method1003");
}
public void method1004() {
System.out.print("hello: method1004");
}
public void method1005() {
System.out.print("hello: method1005");
}
public void method1006() {
System.out.print("hello: method1006");
}
public void method1007() {
System.out.print("hello: method1007");
}
public void method1008() {
System.out.print("hello: method1008");
}
public void method1009() {
System.out.print("hello: method1009");
}
public void method1010() {
System.out.print("hello: method1010");
}
public void method1011() {
System.out.print("hello: method1011");
}
public void method1012() {
System.out.print("hello: method1012");
}
public void method1013() {
System.out.print("hello: method1013");
}
public void method1014() {
System.out.print("hello: method1014");
}
public void method1015() {
System.out.print("hello: method1015");
}
public void method1016() {
System.out.print("hello: method1016");
}
public void method1017() {
System.out.print("hello: method1017");
}
public void method1018() {
System.out.print("hello: method1018");
}
public void method1019() {
System.out.print("hello: method1019");
}
public void method1020() {
System.out.print("hello: method1020");
}
public void method1021() {
System.out.print("hello: method1021");
}
public void method1022() {
System.out.print("hello: method1022");
}
public void method1023() {
System.out.print("hello: method1023");
}
public void method1024() {
System.out.print("hello: method1024");
}
public void method1025() {
System.out.print("hello: method1025");
}
public void method1026() {
System.out.print("hello: method1026");
}
public void method1027() {
System.out.print("hello: method1027");
}
public void method1028() {
System.out.print("hello: method1028");
}
public void method1029() {
System.out.print("hello: method1029");
}
public void method1030() {
System.out.print("hello: method1030");
}
public void method1031() {
System.out.print("hello: method1031");
}
public void method1032() {
System.out.print("hello: method1032");
}
public void method1033() {
System.out.print("hello: method1033");
}
public void method1034() {
System.out.print("hello: method1034");
}
public void method1035() {
System.out.print("hello: method1035");
}
public void method1036() {
System.out.print("hello: method1036");
}
public void method1037() {
System.out.print("hello: method1037");
}
public void method1038() {
System.out.print("hello: method1038");
}
public void method1039() {
System.out.print("hello: method1039");
}
public void method1040() {
System.out.print("hello: method1040");
}
public void method1041() {
System.out.print("hello: method1041");
}
public void method1042() {
System.out.print("hello: method1042");
}
public void method1043() {
System.out.print("hello: method1043");
}
public void method1044() {
System.out.print("hello: method1044");
}
public void method1045() {
System.out.print("hello: method1045");
}
public void method1046() {
System.out.print("hello: method1046");
}
public void method1047() {
System.out.print("hello: method1047");
}
public void method1048() {
System.out.print("hello: method1048");
}
public void method1049() {
System.out.print("hello: method1049");
}
public void method1050() {
System.out.print("hello: method1050");
}
public void method1051() {
System.out.print("hello: method1051");
}
public void method1052() {
System.out.print("hello: method1052");
}
public void method1053() {
System.out.print("hello: method1053");
}
public void method1054() {
System.out.print("hello: method1054");
}
public void method1055() {
System.out.print("hello: method1055");
}
public void method1056() {
System.out.print("hello: method1056");
}
public void method1057() {
System.out.print("hello: method1057");
}
public void method1058() {
System.out.print("hello: method1058");
}
public void method1059() {
System.out.print("hello: method1059");
}
public void method1060() {
System.out.print("hello: method1060");
}
public void method1061() {
System.out.print("hello: method1061");
}
public void method1062() {
System.out.print("hello: method1062");
}
public void method1063() {
System.out.print("hello: method1063");
}
public void method1064() {
System.out.print("hello: method1064");
}
public void method1065() {
System.out.print("hello: method1065");
}
public void method1066() {
System.out.print("hello: method1066");
}
public void method1067() {
System.out.print("hello: method1067");
}
public void method1068() {
System.out.print("hello: method1068");
}
public void method1069() {
System.out.print("hello: method1069");
}
public void method1070() {
System.out.print("hello: method1070");
}
public void method1071() {
System.out.print("hello: method1071");
}
public void method1072() {
System.out.print("hello: method1072");
}
public void method1073() {
System.out.print("hello: method1073");
}
public void method1074() {
System.out.print("hello: method1074");
}
public void method1075() {
System.out.print("hello: method1075");
}
public void method1076() {
System.out.print("hello: method1076");
}
public void method1077() {
System.out.print("hello: method1077");
}
public void method1078() {
System.out.print("hello: method1078");
}
public void method1079() {
System.out.print("hello: method1079");
}
public void method1080() {
System.out.print("hello: method1080");
}
public void method1081() {
System.out.print("hello: method1081");
}
public void method1082() {
System.out.print("hello: method1082");
}
public void method1083() {
System.out.print("hello: method1083");
}
public void method1084() {
System.out.print("hello: method1084");
}
public void method1085() {
System.out.print("hello: method1085");
}
public void method1086() {
System.out.print("hello: method1086");
}
public void method1087() {
System.out.print("hello: method1087");
}
public void method1088() {
System.out.print("hello: method1088");
}
public void method1089() {
System.out.print("hello: method1089");
}
public void method1090() {
System.out.print("hello: method1090");
}
public void method1091() {
System.out.print("hello: method1091");
}
public void method1092() {
System.out.print("hello: method1092");
}
public void method1093() {
System.out.print("hello: method1093");
}
public void method1094() {
System.out.print("hello: method1094");
}
public void method1095() {
System.out.print("hello: method1095");
}
public void method1096() {
System.out.print("hello: method1096");
}
public void method1097() {
System.out.print("hello: method1097");
}
public void method1098() {
System.out.print("hello: method1098");
}
public void method1099() {
System.out.print("hello: method1099");
}
public void method1100() {
System.out.print("hello: method1100");
}
public void method1101() {
System.out.print("hello: method1101");
}
public void method1102() {
System.out.print("hello: method1102");
}
public void method1103() {
System.out.print("hello: method1103");
}
public void method1104() {
System.out.print("hello: method1104");
}
public void method1105() {
System.out.print("hello: method1105");
}
public void method1106() {
System.out.print("hello: method1106");
}
public void method1107() {
System.out.print("hello: method1107");
}
public void method1108() {
System.out.print("hello: method1108");
}
public void method1109() {
System.out.print("hello: method1109");
}
public void method1110() {
System.out.print("hello: method1110");
}
public void method1111() {
System.out.print("hello: method1111");
}
public void method1112() {
System.out.print("hello: method1112");
}
public void method1113() {
System.out.print("hello: method1113");
}
public void method1114() {
System.out.print("hello: method1114");
}
public void method1115() {
System.out.print("hello: method1115");
}
public void method1116() {
System.out.print("hello: method1116");
}
public void method1117() {
System.out.print("hello: method1117");
}
public void method1118() {
System.out.print("hello: method1118");
}
public void method1119() {
System.out.print("hello: method1119");
}
public void method1120() {
System.out.print("hello: method1120");
}
public void method1121() {
System.out.print("hello: method1121");
}
public void method1122() {
System.out.print("hello: method1122");
}
public void method1123() {
System.out.print("hello: method1123");
}
public void method1124() {
System.out.print("hello: method1124");
}
public void method1125() {
System.out.print("hello: method1125");
}
public void method1126() {
System.out.print("hello: method1126");
}
public void method1127() {
System.out.print("hello: method1127");
}
public void method1128() {
System.out.print("hello: method1128");
}
public void method1129() {
System.out.print("hello: method1129");
}
public void method1130() {
System.out.print("hello: method1130");
}
public void method1131() {
System.out.print("hello: method1131");
}
public void method1132() {
System.out.print("hello: method1132");
}
public void method1133() {
System.out.print("hello: method1133");
}
public void method1134() {
System.out.print("hello: method1134");
}
public void method1135() {
System.out.print("hello: method1135");
}
public void method1136() {
System.out.print("hello: method1136");
}
public void method1137() {
System.out.print("hello: method1137");
}
public void method1138() {
System.out.print("hello: method1138");
}
public void method1139() {
System.out.print("hello: method1139");
}
public void method1140() {
System.out.print("hello: method1140");
}
public void method1141() {
System.out.print("hello: method1141");
}
public void method1142() {
System.out.print("hello: method1142");
}
public void method1143() {
System.out.print("hello: method1143");
}
public void method1144() {
System.out.print("hello: method1144");
}
public void method1145() {
System.out.print("hello: method1145");
}
public void method1146() {
System.out.print("hello: method1146");
}
public void method1147() {
System.out.print("hello: method1147");
}
public void method1148() {
System.out.print("hello: method1148");
}
public void method1149() {
System.out.print("hello: method1149");
}
public void method1150() {
System.out.print("hello: method1150");
}
public void method1151() {
System.out.print("hello: method1151");
}
public void method1152() {
System.out.print("hello: method1152");
}
public void method1153() {
System.out.print("hello: method1153");
}
public void method1154() {
System.out.print("hello: method1154");
}
public void method1155() {
System.out.print("hello: method1155");
}
public void method1156() {
System.out.print("hello: method1156");
}
public void method1157() {
System.out.print("hello: method1157");
}
public void method1158() {
System.out.print("hello: method1158");
}
public void method1159() {
System.out.print("hello: method1159");
}
public void method1160() {
System.out.print("hello: method1160");
}
public void method1161() {
System.out.print("hello: method1161");
}
public void method1162() {
System.out.print("hello: method1162");
}
public void method1163() {
System.out.print("hello: method1163");
}
public void method1164() {
System.out.print("hello: method1164");
}
public void method1165() {
System.out.print("hello: method1165");
}
public void method1166() {
System.out.print("hello: method1166");
}
public void method1167() {
System.out.print("hello: method1167");
}
public void method1168() {
System.out.print("hello: method1168");
}
public void method1169() {
System.out.print("hello: method1169");
}
public void method1170() {
System.out.print("hello: method1170");
}
public void method1171() {
System.out.print("hello: method1171");
}
public void method1172() {
System.out.print("hello: method1172");
}
public void method1173() {
System.out.print("hello: method1173");
}
public void method1174() {
System.out.print("hello: method1174");
}
public void method1175() {
System.out.print("hello: method1175");
}
public void method1176() {
System.out.print("hello: method1176");
}
public void method1177() {
System.out.print("hello: method1177");
}
public void method1178() {
System.out.print("hello: method1178");
}
public void method1179() {
System.out.print("hello: method1179");
}
public void method1180() {
System.out.print("hello: method1180");
}
public void method1181() {
System.out.print("hello: method1181");
}
public void method1182() {
System.out.print("hello: method1182");
}
public void method1183() {
System.out.print("hello: method1183");
}
public void method1184() {
System.out.print("hello: method1184");
}
public void method1185() {
System.out.print("hello: method1185");
}
public void method1186() {
System.out.print("hello: method1186");
}
public void method1187() {
System.out.print("hello: method1187");
}
public void method1188() {
System.out.print("hello: method1188");
}
public void method1189() {
System.out.print("hello: method1189");
}
public void method1190() {
System.out.print("hello: method1190");
}
public void method1191() {
System.out.print("hello: method1191");
}
public void method1192() {
System.out.print("hello: method1192");
}
public void method1193() {
System.out.print("hello: method1193");
}
public void method1194() {
System.out.print("hello: method1194");
}
public void method1195() {
System.out.print("hello: method1195");
}
public void method1196() {
System.out.print("hello: method1196");
}
public void method1197() {
System.out.print("hello: method1197");
}
public void method1198() {
System.out.print("hello: method1198");
}
public void method1199() {
System.out.print("hello: method1199");
}
public void method1200() {
System.out.print("hello: method1200");
}
public void method1201() {
System.out.print("hello: method1201");
}
public void method1202() {
System.out.print("hello: method1202");
}
public void method1203() {
System.out.print("hello: method1203");
}
public void method1204() {
System.out.print("hello: method1204");
}
public void method1205() {
System.out.print("hello: method1205");
}
public void method1206() {
System.out.print("hello: method1206");
}
public void method1207() {
System.out.print("hello: method1207");
}
public void method1208() {
System.out.print("hello: method1208");
}
public void method1209() {
System.out.print("hello: method1209");
}
public void method1210() {
System.out.print("hello: method1210");
}
public void method1211() {
System.out.print("hello: method1211");
}
public void method1212() {
System.out.print("hello: method1212");
}
public void method1213() {
System.out.print("hello: method1213");
}
public void method1214() {
System.out.print("hello: method1214");
}
public void method1215() {
System.out.print("hello: method1215");
}
public void method1216() {
System.out.print("hello: method1216");
}
public void method1217() {
System.out.print("hello: method1217");
}
public void method1218() {
System.out.print("hello: method1218");
}
public void method1219() {
System.out.print("hello: method1219");
}
public void method1220() {
System.out.print("hello: method1220");
}
public void method1221() {
System.out.print("hello: method1221");
}
public void method1222() {
System.out.print("hello: method1222");
}
public void method1223() {
System.out.print("hello: method1223");
}
public void method1224() {
System.out.print("hello: method1224");
}
public void method1225() {
System.out.print("hello: method1225");
}
public void method1226() {
System.out.print("hello: method1226");
}
public void method1227() {
System.out.print("hello: method1227");
}
public void method1228() {
System.out.print("hello: method1228");
}
public void method1229() {
System.out.print("hello: method1229");
}
public void method1230() {
System.out.print("hello: method1230");
}
public void method1231() {
System.out.print("hello: method1231");
}
public void method1232() {
System.out.print("hello: method1232");
}
public void method1233() {
System.out.print("hello: method1233");
}
public void method1234() {
System.out.print("hello: method1234");
}
public void method1235() {
System.out.print("hello: method1235");
}
public void method1236() {
System.out.print("hello: method1236");
}
public void method1237() {
System.out.print("hello: method1237");
}
public void method1238() {
System.out.print("hello: method1238");
}
public void method1239() {
System.out.print("hello: method1239");
}
public void method1240() {
System.out.print("hello: method1240");
}
public void method1241() {
System.out.print("hello: method1241");
}
public void method1242() {
System.out.print("hello: method1242");
}
public void method1243() {
System.out.print("hello: method1243");
}
public void method1244() {
System.out.print("hello: method1244");
}
public void method1245() {
System.out.print("hello: method1245");
}
public void method1246() {
System.out.print("hello: method1246");
}
public void method1247() {
System.out.print("hello: method1247");
}
public void method1248() {
System.out.print("hello: method1248");
}
public void method1249() {
System.out.print("hello: method1249");
}
public void method1250() {
System.out.print("hello: method1250");
}
public void method1251() {
System.out.print("hello: method1251");
}
public void method1252() {
System.out.print("hello: method1252");
}
public void method1253() {
System.out.print("hello: method1253");
}
public void method1254() {
System.out.print("hello: method1254");
}
public void method1255() {
System.out.print("hello: method1255");
}
public void method1256() {
System.out.print("hello: method1256");
}
public void method1257() {
System.out.print("hello: method1257");
}
public void method1258() {
System.out.print("hello: method1258");
}
public void method1259() {
System.out.print("hello: method1259");
}
public void method1260() {
System.out.print("hello: method1260");
}
public void method1261() {
System.out.print("hello: method1261");
}
public void method1262() {
System.out.print("hello: method1262");
}
public void method1263() {
System.out.print("hello: method1263");
}
public void method1264() {
System.out.print("hello: method1264");
}
public void method1265() {
System.out.print("hello: method1265");
}
public void method1266() {
System.out.print("hello: method1266");
}
public void method1267() {
System.out.print("hello: method1267");
}
public void method1268() {
System.out.print("hello: method1268");
}
public void method1269() {
System.out.print("hello: method1269");
}
public void method1270() {
System.out.print("hello: method1270");
}
public void method1271() {
System.out.print("hello: method1271");
}
public void method1272() {
System.out.print("hello: method1272");
}
public void method1273() {
System.out.print("hello: method1273");
}
public void method1274() {
System.out.print("hello: method1274");
}
public void method1275() {
System.out.print("hello: method1275");
}
public void method1276() {
System.out.print("hello: method1276");
}
public void method1277() {
System.out.print("hello: method1277");
}
public void method1278() {
System.out.print("hello: method1278");
}
public void method1279() {
System.out.print("hello: method1279");
}
public void method1280() {
System.out.print("hello: method1280");
}
public void method1281() {
System.out.print("hello: method1281");
}
public void method1282() {
System.out.print("hello: method1282");
}
public void method1283() {
System.out.print("hello: method1283");
}
public void method1284() {
System.out.print("hello: method1284");
}
public void method1285() {
System.out.print("hello: method1285");
}
public void method1286() {
System.out.print("hello: method1286");
}
public void method1287() {
System.out.print("hello: method1287");
}
public void method1288() {
System.out.print("hello: method1288");
}
public void method1289() {
System.out.print("hello: method1289");
}
public void method1290() {
System.out.print("hello: method1290");
}
public void method1291() {
System.out.print("hello: method1291");
}
public void method1292() {
System.out.print("hello: method1292");
}
public void method1293() {
System.out.print("hello: method1293");
}
public void method1294() {
System.out.print("hello: method1294");
}
public void method1295() {
System.out.print("hello: method1295");
}
public void method1296() {
System.out.print("hello: method1296");
}
public void method1297() {
System.out.print("hello: method1297");
}
public void method1298() {
System.out.print("hello: method1298");
}
public void method1299() {
System.out.print("hello: method1299");
}
public void method1300() {
System.out.print("hello: method1300");
}
public void method1301() {
System.out.print("hello: method1301");
}
public void method1302() {
System.out.print("hello: method1302");
}
public void method1303() {
System.out.print("hello: method1303");
}
public void method1304() {
System.out.print("hello: method1304");
}
public void method1305() {
System.out.print("hello: method1305");
}
public void method1306() {
System.out.print("hello: method1306");
}
public void method1307() {
System.out.print("hello: method1307");
}
public void method1308() {
System.out.print("hello: method1308");
}
public void method1309() {
System.out.print("hello: method1309");
}
public void method1310() {
System.out.print("hello: method1310");
}
public void method1311() {
System.out.print("hello: method1311");
}
public void method1312() {
System.out.print("hello: method1312");
}
public void method1313() {
System.out.print("hello: method1313");
}
public void method1314() {
System.out.print("hello: method1314");
}
public void method1315() {
System.out.print("hello: method1315");
}
public void method1316() {
System.out.print("hello: method1316");
}
public void method1317() {
System.out.print("hello: method1317");
}
public void method1318() {
System.out.print("hello: method1318");
}
public void method1319() {
System.out.print("hello: method1319");
}
public void method1320() {
System.out.print("hello: method1320");
}
public void method1321() {
System.out.print("hello: method1321");
}
public void method1322() {
System.out.print("hello: method1322");
}
public void method1323() {
System.out.print("hello: method1323");
}
public void method1324() {
System.out.print("hello: method1324");
}
public void method1325() {
System.out.print("hello: method1325");
}
public void method1326() {
System.out.print("hello: method1326");
}
public void method1327() {
System.out.print("hello: method1327");
}
public void method1328() {
System.out.print("hello: method1328");
}
public void method1329() {
System.out.print("hello: method1329");
}
public void method1330() {
System.out.print("hello: method1330");
}
public void method1331() {
System.out.print("hello: method1331");
}
public void method1332() {
System.out.print("hello: method1332");
}
public void method1333() {
System.out.print("hello: method1333");
}
public void method1334() {
System.out.print("hello: method1334");
}
public void method1335() {
System.out.print("hello: method1335");
}
public void method1336() {
System.out.print("hello: method1336");
}
public void method1337() {
System.out.print("hello: method1337");
}
public void method1338() {
System.out.print("hello: method1338");
}
public void method1339() {
System.out.print("hello: method1339");
}
public void method1340() {
System.out.print("hello: method1340");
}
public void method1341() {
System.out.print("hello: method1341");
}
public void method1342() {
System.out.print("hello: method1342");
}
public void method1343() {
System.out.print("hello: method1343");
}
public void method1344() {
System.out.print("hello: method1344");
}
public void method1345() {
System.out.print("hello: method1345");
}
public void method1346() {
System.out.print("hello: method1346");
}
public void method1347() {
System.out.print("hello: method1347");
}
public void method1348() {
System.out.print("hello: method1348");
}
public void method1349() {
System.out.print("hello: method1349");
}
public void method1350() {
System.out.print("hello: method1350");
}
public void method1351() {
System.out.print("hello: method1351");
}
public void method1352() {
System.out.print("hello: method1352");
}
public void method1353() {
System.out.print("hello: method1353");
}
public void method1354() {
System.out.print("hello: method1354");
}
public void method1355() {
System.out.print("hello: method1355");
}
public void method1356() {
System.out.print("hello: method1356");
}
public void method1357() {
System.out.print("hello: method1357");
}
public void method1358() {
System.out.print("hello: method1358");
}
public void method1359() {
System.out.print("hello: method1359");
}
public void method1360() {
System.out.print("hello: method1360");
}
public void method1361() {
System.out.print("hello: method1361");
}
public void method1362() {
System.out.print("hello: method1362");
}
public void method1363() {
System.out.print("hello: method1363");
}
public void method1364() {
System.out.print("hello: method1364");
}
public void method1365() {
System.out.print("hello: method1365");
}
public void method1366() {
System.out.print("hello: method1366");
}
public void method1367() {
System.out.print("hello: method1367");
}
public void method1368() {
System.out.print("hello: method1368");
}
public void method1369() {
System.out.print("hello: method1369");
}
public void method1370() {
System.out.print("hello: method1370");
}
public void method1371() {
System.out.print("hello: method1371");
}
public void method1372() {
System.out.print("hello: method1372");
}
public void method1373() {
System.out.print("hello: method1373");
}
public void method1374() {
System.out.print("hello: method1374");
}
public void method1375() {
System.out.print("hello: method1375");
}
public void method1376() {
System.out.print("hello: method1376");
}
public void method1377() {
System.out.print("hello: method1377");
}
public void method1378() {
System.out.print("hello: method1378");
}
public void method1379() {
System.out.print("hello: method1379");
}
public void method1380() {
System.out.print("hello: method1380");
}
public void method1381() {
System.out.print("hello: method1381");
}
public void method1382() {
System.out.print("hello: method1382");
}
public void method1383() {
System.out.print("hello: method1383");
}
public void method1384() {
System.out.print("hello: method1384");
}
public void method1385() {
System.out.print("hello: method1385");
}
public void method1386() {
System.out.print("hello: method1386");
}
public void method1387() {
System.out.print("hello: method1387");
}
public void method1388() {
System.out.print("hello: method1388");
}
public void method1389() {
System.out.print("hello: method1389");
}
public void method1390() {
System.out.print("hello: method1390");
}
public void method1391() {
System.out.print("hello: method1391");
}
public void method1392() {
System.out.print("hello: method1392");
}
public void method1393() {
System.out.print("hello: method1393");
}
public void method1394() {
System.out.print("hello: method1394");
}
public void method1395() {
System.out.print("hello: method1395");
}
public void method1396() {
System.out.print("hello: method1396");
}
public void method1397() {
System.out.print("hello: method1397");
}
public void method1398() {
System.out.print("hello: method1398");
}
public void method1399() {
System.out.print("hello: method1399");
}
public void method1400() {
System.out.print("hello: method1400");
}
public void method1401() {
System.out.print("hello: method1401");
}
public void method1402() {
System.out.print("hello: method1402");
}
public void method1403() {
System.out.print("hello: method1403");
}
public void method1404() {
System.out.print("hello: method1404");
}
public void method1405() {
System.out.print("hello: method1405");
}
public void method1406() {
System.out.print("hello: method1406");
}
public void method1407() {
System.out.print("hello: method1407");
}
public void method1408() {
System.out.print("hello: method1408");
}
public void method1409() {
System.out.print("hello: method1409");
}
public void method1410() {
System.out.print("hello: method1410");
}
public void method1411() {
System.out.print("hello: method1411");
}
public void method1412() {
System.out.print("hello: method1412");
}
public void method1413() {
System.out.print("hello: method1413");
}
public void method1414() {
System.out.print("hello: method1414");
}
public void method1415() {
System.out.print("hello: method1415");
}
public void method1416() {
System.out.print("hello: method1416");
}
public void method1417() {
System.out.print("hello: method1417");
}
public void method1418() {
System.out.print("hello: method1418");
}
public void method1419() {
System.out.print("hello: method1419");
}
public void method1420() {
System.out.print("hello: method1420");
}
public void method1421() {
System.out.print("hello: method1421");
}
public void method1422() {
System.out.print("hello: method1422");
}
public void method1423() {
System.out.print("hello: method1423");
}
public void method1424() {
System.out.print("hello: method1424");
}
public void method1425() {
System.out.print("hello: method1425");
}
public void method1426() {
System.out.print("hello: method1426");
}
public void method1427() {
System.out.print("hello: method1427");
}
public void method1428() {
System.out.print("hello: method1428");
}
public void method1429() {
System.out.print("hello: method1429");
}
public void method1430() {
System.out.print("hello: method1430");
}
public void method1431() {
System.out.print("hello: method1431");
}
public void method1432() {
System.out.print("hello: method1432");
}
public void method1433() {
System.out.print("hello: method1433");
}
public void method1434() {
System.out.print("hello: method1434");
}
public void method1435() {
System.out.print("hello: method1435");
}
public void method1436() {
System.out.print("hello: method1436");
}
public void method1437() {
System.out.print("hello: method1437");
}
public void method1438() {
System.out.print("hello: method1438");
}
public void method1439() {
System.out.print("hello: method1439");
}
public void method1440() {
System.out.print("hello: method1440");
}
public void method1441() {
System.out.print("hello: method1441");
}
public void method1442() {
System.out.print("hello: method1442");
}
public void method1443() {
System.out.print("hello: method1443");
}
public void method1444() {
System.out.print("hello: method1444");
}
public void method1445() {
System.out.print("hello: method1445");
}
public void method1446() {
System.out.print("hello: method1446");
}
public void method1447() {
System.out.print("hello: method1447");
}
public void method1448() {
System.out.print("hello: method1448");
}
public void method1449() {
System.out.print("hello: method1449");
}
public void method1450() {
System.out.print("hello: method1450");
}
public void method1451() {
System.out.print("hello: method1451");
}
public void method1452() {
System.out.print("hello: method1452");
}
public void method1453() {
System.out.print("hello: method1453");
}
public void method1454() {
System.out.print("hello: method1454");
}
public void method1455() {
System.out.print("hello: method1455");
}
public void method1456() {
System.out.print("hello: method1456");
}
public void method1457() {
System.out.print("hello: method1457");
}
public void method1458() {
System.out.print("hello: method1458");
}
public void method1459() {
System.out.print("hello: method1459");
}
public void method1460() {
System.out.print("hello: method1460");
}
public void method1461() {
System.out.print("hello: method1461");
}
public void method1462() {
System.out.print("hello: method1462");
}
public void method1463() {
System.out.print("hello: method1463");
}
public void method1464() {
System.out.print("hello: method1464");
}
public void method1465() {
System.out.print("hello: method1465");
}
public void method1466() {
System.out.print("hello: method1466");
}
public void method1467() {
System.out.print("hello: method1467");
}
public void method1468() {
System.out.print("hello: method1468");
}
public void method1469() {
System.out.print("hello: method1469");
}
public void method1470() {
System.out.print("hello: method1470");
}
public void method1471() {
System.out.print("hello: method1471");
}
public void method1472() {
System.out.print("hello: method1472");
}
public void method1473() {
System.out.print("hello: method1473");
}
public void method1474() {
System.out.print("hello: method1474");
}
public void method1475() {
System.out.print("hello: method1475");
}
public void method1476() {
System.out.print("hello: method1476");
}
public void method1477() {
System.out.print("hello: method1477");
}
public void method1478() {
System.out.print("hello: method1478");
}
public void method1479() {
System.out.print("hello: method1479");
}
public void method1480() {
System.out.print("hello: method1480");
}
public void method1481() {
System.out.print("hello: method1481");
}
public void method1482() {
System.out.print("hello: method1482");
}
public void method1483() {
System.out.print("hello: method1483");
}
public void method1484() {
System.out.print("hello: method1484");
}
public void method1485() {
System.out.print("hello: method1485");
}
public void method1486() {
System.out.print("hello: method1486");
}
public void method1487() {
System.out.print("hello: method1487");
}
public void method1488() {
System.out.print("hello: method1488");
}
public void method1489() {
System.out.print("hello: method1489");
}
public void method1490() {
System.out.print("hello: method1490");
}
public void method1491() {
System.out.print("hello: method1491");
}
public void method1492() {
System.out.print("hello: method1492");
}
public void method1493() {
System.out.print("hello: method1493");
}
public void method1494() {
System.out.print("hello: method1494");
}
public void method1495() {
System.out.print("hello: method1495");
}
public void method1496() {
System.out.print("hello: method1496");
}
public void method1497() {
System.out.print("hello: method1497");
}
public void method1498() {
System.out.print("hello: method1498");
}
public void method1499() {
System.out.print("hello: method1499");
}
public void method1500() {
System.out.print("hello: method1500");
}
public void method1501() {
System.out.print("hello: method1501");
}
public void method1502() {
System.out.print("hello: method1502");
}
public void method1503() {
System.out.print("hello: method1503");
}
public void method1504() {
System.out.print("hello: method1504");
}
public void method1505() {
System.out.print("hello: method1505");
}
public void method1506() {
System.out.print("hello: method1506");
}
public void method1507() {
System.out.print("hello: method1507");
}
public void method1508() {
System.out.print("hello: method1508");
}
public void method1509() {
System.out.print("hello: method1509");
}
public void method1510() {
System.out.print("hello: method1510");
}
public void method1511() {
System.out.print("hello: method1511");
}
public void method1512() {
System.out.print("hello: method1512");
}
public void method1513() {
System.out.print("hello: method1513");
}
public void method1514() {
System.out.print("hello: method1514");
}
public void method1515() {
System.out.print("hello: method1515");
}
public void method1516() {
System.out.print("hello: method1516");
}
public void method1517() {
System.out.print("hello: method1517");
}
public void method1518() {
System.out.print("hello: method1518");
}
public void method1519() {
System.out.print("hello: method1519");
}
public void method1520() {
System.out.print("hello: method1520");
}
public void method1521() {
System.out.print("hello: method1521");
}
public void method1522() {
System.out.print("hello: method1522");
}
public void method1523() {
System.out.print("hello: method1523");
}
public void method1524() {
System.out.print("hello: method1524");
}
public void method1525() {
System.out.print("hello: method1525");
}
public void method1526() {
System.out.print("hello: method1526");
}
public void method1527() {
System.out.print("hello: method1527");
}
public void method1528() {
System.out.print("hello: method1528");
}
public void method1529() {
System.out.print("hello: method1529");
}
public void method1530() {
System.out.print("hello: method1530");
}
public void method1531() {
System.out.print("hello: method1531");
}
public void method1532() {
System.out.print("hello: method1532");
}
public void method1533() {
System.out.print("hello: method1533");
}
public void method1534() {
System.out.print("hello: method1534");
}
public void method1535() {
System.out.print("hello: method1535");
}
public void method1536() {
System.out.print("hello: method1536");
}
public void method1537() {
System.out.print("hello: method1537");
}
public void method1538() {
System.out.print("hello: method1538");
}
public void method1539() {
System.out.print("hello: method1539");
}
public void method1540() {
System.out.print("hello: method1540");
}
public void method1541() {
System.out.print("hello: method1541");
}
public void method1542() {
System.out.print("hello: method1542");
}
public void method1543() {
System.out.print("hello: method1543");
}
public void method1544() {
System.out.print("hello: method1544");
}
public void method1545() {
System.out.print("hello: method1545");
}
public void method1546() {
System.out.print("hello: method1546");
}
public void method1547() {
System.out.print("hello: method1547");
}
public void method1548() {
System.out.print("hello: method1548");
}
public void method1549() {
System.out.print("hello: method1549");
}
public void method1550() {
System.out.print("hello: method1550");
}
public void method1551() {
System.out.print("hello: method1551");
}
public void method1552() {
System.out.print("hello: method1552");
}
public void method1553() {
System.out.print("hello: method1553");
}
public void method1554() {
System.out.print("hello: method1554");
}
public void method1555() {
System.out.print("hello: method1555");
}
public void method1556() {
System.out.print("hello: method1556");
}
public void method1557() {
System.out.print("hello: method1557");
}
public void method1558() {
System.out.print("hello: method1558");
}
public void method1559() {
System.out.print("hello: method1559");
}
public void method1560() {
System.out.print("hello: method1560");
}
public void method1561() {
System.out.print("hello: method1561");
}
public void method1562() {
System.out.print("hello: method1562");
}
public void method1563() {
System.out.print("hello: method1563");
}
public void method1564() {
System.out.print("hello: method1564");
}
public void method1565() {
System.out.print("hello: method1565");
}
public void method1566() {
System.out.print("hello: method1566");
}
public void method1567() {
System.out.print("hello: method1567");
}
public void method1568() {
System.out.print("hello: method1568");
}
public void method1569() {
System.out.print("hello: method1569");
}
public void method1570() {
System.out.print("hello: method1570");
}
public void method1571() {
System.out.print("hello: method1571");
}
public void method1572() {
System.out.print("hello: method1572");
}
public void method1573() {
System.out.print("hello: method1573");
}
public void method1574() {
System.out.print("hello: method1574");
}
public void method1575() {
System.out.print("hello: method1575");
}
public void method1576() {
System.out.print("hello: method1576");
}
public void method1577() {
System.out.print("hello: method1577");
}
public void method1578() {
System.out.print("hello: method1578");
}
public void method1579() {
System.out.print("hello: method1579");
}
public void method1580() {
System.out.print("hello: method1580");
}
public void method1581() {
System.out.print("hello: method1581");
}
public void method1582() {
System.out.print("hello: method1582");
}
public void method1583() {
System.out.print("hello: method1583");
}
public void method1584() {
System.out.print("hello: method1584");
}
public void method1585() {
System.out.print("hello: method1585");
}
public void method1586() {
System.out.print("hello: method1586");
}
public void method1587() {
System.out.print("hello: method1587");
}
public void method1588() {
System.out.print("hello: method1588");
}
public void method1589() {
System.out.print("hello: method1589");
}
public void method1590() {
System.out.print("hello: method1590");
}
public void method1591() {
System.out.print("hello: method1591");
}
public void method1592() {
System.out.print("hello: method1592");
}
public void method1593() {
System.out.print("hello: method1593");
}
public void method1594() {
System.out.print("hello: method1594");
}
public void method1595() {
System.out.print("hello: method1595");
}
public void method1596() {
System.out.print("hello: method1596");
}
public void method1597() {
System.out.print("hello: method1597");
}
public void method1598() {
System.out.print("hello: method1598");
}
public void method1599() {
System.out.print("hello: method1599");
}
public void method1600() {
System.out.print("hello: method1600");
}
public void method1601() {
System.out.print("hello: method1601");
}
public void method1602() {
System.out.print("hello: method1602");
}
public void method1603() {
System.out.print("hello: method1603");
}
public void method1604() {
System.out.print("hello: method1604");
}
public void method1605() {
System.out.print("hello: method1605");
}
public void method1606() {
System.out.print("hello: method1606");
}
public void method1607() {
System.out.print("hello: method1607");
}
public void method1608() {
System.out.print("hello: method1608");
}
public void method1609() {
System.out.print("hello: method1609");
}
public void method1610() {
System.out.print("hello: method1610");
}
public void method1611() {
System.out.print("hello: method1611");
}
public void method1612() {
System.out.print("hello: method1612");
}
public void method1613() {
System.out.print("hello: method1613");
}
public void method1614() {
System.out.print("hello: method1614");
}
public void method1615() {
System.out.print("hello: method1615");
}
public void method1616() {
System.out.print("hello: method1616");
}
public void method1617() {
System.out.print("hello: method1617");
}
public void method1618() {
System.out.print("hello: method1618");
}
public void method1619() {
System.out.print("hello: method1619");
}
public void method1620() {
System.out.print("hello: method1620");
}
public void method1621() {
System.out.print("hello: method1621");
}
public void method1622() {
System.out.print("hello: method1622");
}
public void method1623() {
System.out.print("hello: method1623");
}
public void method1624() {
System.out.print("hello: method1624");
}
public void method1625() {
System.out.print("hello: method1625");
}
public void method1626() {
System.out.print("hello: method1626");
}
public void method1627() {
System.out.print("hello: method1627");
}
public void method1628() {
System.out.print("hello: method1628");
}
public void method1629() {
System.out.print("hello: method1629");
}
public void method1630() {
System.out.print("hello: method1630");
}
public void method1631() {
System.out.print("hello: method1631");
}
public void method1632() {
System.out.print("hello: method1632");
}
public void method1633() {
System.out.print("hello: method1633");
}
public void method1634() {
System.out.print("hello: method1634");
}
public void method1635() {
System.out.print("hello: method1635");
}
public void method1636() {
System.out.print("hello: method1636");
}
public void method1637() {
System.out.print("hello: method1637");
}
public void method1638() {
System.out.print("hello: method1638");
}
public void method1639() {
System.out.print("hello: method1639");
}
public void method1640() {
System.out.print("hello: method1640");
}
public void method1641() {
System.out.print("hello: method1641");
}
public void method1642() {
System.out.print("hello: method1642");
}
public void method1643() {
System.out.print("hello: method1643");
}
public void method1644() {
System.out.print("hello: method1644");
}
public void method1645() {
System.out.print("hello: method1645");
}
public void method1646() {
System.out.print("hello: method1646");
}
public void method1647() {
System.out.print("hello: method1647");
}
public void method1648() {
System.out.print("hello: method1648");
}
public void method1649() {
System.out.print("hello: method1649");
}
public void method1650() {
System.out.print("hello: method1650");
}
public void method1651() {
System.out.print("hello: method1651");
}
public void method1652() {
System.out.print("hello: method1652");
}
public void method1653() {
System.out.print("hello: method1653");
}
public void method1654() {
System.out.print("hello: method1654");
}
public void method1655() {
System.out.print("hello: method1655");
}
public void method1656() {
System.out.print("hello: method1656");
}
public void method1657() {
System.out.print("hello: method1657");
}
public void method1658() {
System.out.print("hello: method1658");
}
public void method1659() {
System.out.print("hello: method1659");
}
public void method1660() {
System.out.print("hello: method1660");
}
public void method1661() {
System.out.print("hello: method1661");
}
public void method1662() {
System.out.print("hello: method1662");
}
public void method1663() {
System.out.print("hello: method1663");
}
public void method1664() {
System.out.print("hello: method1664");
}
public void method1665() {
System.out.print("hello: method1665");
}
public void method1666() {
System.out.print("hello: method1666");
}
public void method1667() {
System.out.print("hello: method1667");
}
public void method1668() {
System.out.print("hello: method1668");
}
public void method1669() {
System.out.print("hello: method1669");
}
public void method1670() {
System.out.print("hello: method1670");
}
public void method1671() {
System.out.print("hello: method1671");
}
public void method1672() {
System.out.print("hello: method1672");
}
public void method1673() {
System.out.print("hello: method1673");
}
public void method1674() {
System.out.print("hello: method1674");
}
public void method1675() {
System.out.print("hello: method1675");
}
public void method1676() {
System.out.print("hello: method1676");
}
public void method1677() {
System.out.print("hello: method1677");
}
public void method1678() {
System.out.print("hello: method1678");
}
public void method1679() {
System.out.print("hello: method1679");
}
public void method1680() {
System.out.print("hello: method1680");
}
public void method1681() {
System.out.print("hello: method1681");
}
public void method1682() {
System.out.print("hello: method1682");
}
public void method1683() {
System.out.print("hello: method1683");
}
public void method1684() {
System.out.print("hello: method1684");
}
public void method1685() {
System.out.print("hello: method1685");
}
public void method1686() {
System.out.print("hello: method1686");
}
public void method1687() {
System.out.print("hello: method1687");
}
public void method1688() {
System.out.print("hello: method1688");
}
public void method1689() {
System.out.print("hello: method1689");
}
public void method1690() {
System.out.print("hello: method1690");
}
public void method1691() {
System.out.print("hello: method1691");
}
public void method1692() {
System.out.print("hello: method1692");
}
public void method1693() {
System.out.print("hello: method1693");
}
public void method1694() {
System.out.print("hello: method1694");
}
public void method1695() {
System.out.print("hello: method1695");
}
public void method1696() {
System.out.print("hello: method1696");
}
public void method1697() {
System.out.print("hello: method1697");
}
public void method1698() {
System.out.print("hello: method1698");
}
public void method1699() {
System.out.print("hello: method1699");
}
public void method1700() {
System.out.print("hello: method1700");
}
public void method1701() {
System.out.print("hello: method1701");
}
public void method1702() {
System.out.print("hello: method1702");
}
public void method1703() {
System.out.print("hello: method1703");
}
public void method1704() {
System.out.print("hello: method1704");
}
public void method1705() {
System.out.print("hello: method1705");
}
public void method1706() {
System.out.print("hello: method1706");
}
public void method1707() {
System.out.print("hello: method1707");
}
public void method1708() {
System.out.print("hello: method1708");
}
public void method1709() {
System.out.print("hello: method1709");
}
public void method1710() {
System.out.print("hello: method1710");
}
public void method1711() {
System.out.print("hello: method1711");
}
public void method1712() {
System.out.print("hello: method1712");
}
public void method1713() {
System.out.print("hello: method1713");
}
public void method1714() {
System.out.print("hello: method1714");
}
public void method1715() {
System.out.print("hello: method1715");
}
public void method1716() {
System.out.print("hello: method1716");
}
public void method1717() {
System.out.print("hello: method1717");
}
public void method1718() {
System.out.print("hello: method1718");
}
public void method1719() {
System.out.print("hello: method1719");
}
public void method1720() {
System.out.print("hello: method1720");
}
public void method1721() {
System.out.print("hello: method1721");
}
public void method1722() {
System.out.print("hello: method1722");
}
public void method1723() {
System.out.print("hello: method1723");
}
public void method1724() {
System.out.print("hello: method1724");
}
public void method1725() {
System.out.print("hello: method1725");
}
public void method1726() {
System.out.print("hello: method1726");
}
public void method1727() {
System.out.print("hello: method1727");
}
public void method1728() {
System.out.print("hello: method1728");
}
public void method1729() {
System.out.print("hello: method1729");
}
public void method1730() {
System.out.print("hello: method1730");
}
public void method1731() {
System.out.print("hello: method1731");
}
public void method1732() {
System.out.print("hello: method1732");
}
public void method1733() {
System.out.print("hello: method1733");
}
public void method1734() {
System.out.print("hello: method1734");
}
public void method1735() {
System.out.print("hello: method1735");
}
public void method1736() {
System.out.print("hello: method1736");
}
public void method1737() {
System.out.print("hello: method1737");
}
public void method1738() {
System.out.print("hello: method1738");
}
public void method1739() {
System.out.print("hello: method1739");
}
public void method1740() {
System.out.print("hello: method1740");
}
public void method1741() {
System.out.print("hello: method1741");
}
public void method1742() {
System.out.print("hello: method1742");
}
public void method1743() {
System.out.print("hello: method1743");
}
public void method1744() {
System.out.print("hello: method1744");
}
public void method1745() {
System.out.print("hello: method1745");
}
public void method1746() {
System.out.print("hello: method1746");
}
public void method1747() {
System.out.print("hello: method1747");
}
public void method1748() {
System.out.print("hello: method1748");
}
public void method1749() {
System.out.print("hello: method1749");
}
public void method1750() {
System.out.print("hello: method1750");
}
public void method1751() {
System.out.print("hello: method1751");
}
public void method1752() {
System.out.print("hello: method1752");
}
public void method1753() {
System.out.print("hello: method1753");
}
public void method1754() {
System.out.print("hello: method1754");
}
public void method1755() {
System.out.print("hello: method1755");
}
public void method1756() {
System.out.print("hello: method1756");
}
public void method1757() {
System.out.print("hello: method1757");
}
public void method1758() {
System.out.print("hello: method1758");
}
public void method1759() {
System.out.print("hello: method1759");
}
public void method1760() {
System.out.print("hello: method1760");
}
public void method1761() {
System.out.print("hello: method1761");
}
public void method1762() {
System.out.print("hello: method1762");
}
public void method1763() {
System.out.print("hello: method1763");
}
public void method1764() {
System.out.print("hello: method1764");
}
public void method1765() {
System.out.print("hello: method1765");
}
public void method1766() {
System.out.print("hello: method1766");
}
public void method1767() {
System.out.print("hello: method1767");
}
public void method1768() {
System.out.print("hello: method1768");
}
public void method1769() {
System.out.print("hello: method1769");
}
public void method1770() {
System.out.print("hello: method1770");
}
public void method1771() {
System.out.print("hello: method1771");
}
public void method1772() {
System.out.print("hello: method1772");
}
public void method1773() {
System.out.print("hello: method1773");
}
public void method1774() {
System.out.print("hello: method1774");
}
public void method1775() {
System.out.print("hello: method1775");
}
public void method1776() {
System.out.print("hello: method1776");
}
public void method1777() {
System.out.print("hello: method1777");
}
public void method1778() {
System.out.print("hello: method1778");
}
public void method1779() {
System.out.print("hello: method1779");
}
public void method1780() {
System.out.print("hello: method1780");
}
public void method1781() {
System.out.print("hello: method1781");
}
public void method1782() {
System.out.print("hello: method1782");
}
public void method1783() {
System.out.print("hello: method1783");
}
public void method1784() {
System.out.print("hello: method1784");
}
public void method1785() {
System.out.print("hello: method1785");
}
public void method1786() {
System.out.print("hello: method1786");
}
public void method1787() {
System.out.print("hello: method1787");
}
public void method1788() {
System.out.print("hello: method1788");
}
public void method1789() {
System.out.print("hello: method1789");
}
public void method1790() {
System.out.print("hello: method1790");
}
public void method1791() {
System.out.print("hello: method1791");
}
public void method1792() {
System.out.print("hello: method1792");
}
public void method1793() {
System.out.print("hello: method1793");
}
public void method1794() {
System.out.print("hello: method1794");
}
public void method1795() {
System.out.print("hello: method1795");
}
public void method1796() {
System.out.print("hello: method1796");
}
public void method1797() {
System.out.print("hello: method1797");
}
public void method1798() {
System.out.print("hello: method1798");
}
public void method1799() {
System.out.print("hello: method1799");
}
public void method1800() {
System.out.print("hello: method1800");
}
public void method1801() {
System.out.print("hello: method1801");
}
public void method1802() {
System.out.print("hello: method1802");
}
public void method1803() {
System.out.print("hello: method1803");
}
public void method1804() {
System.out.print("hello: method1804");
}
public void method1805() {
System.out.print("hello: method1805");
}
public void method1806() {
System.out.print("hello: method1806");
}
public void method1807() {
System.out.print("hello: method1807");
}
public void method1808() {
System.out.print("hello: method1808");
}
public void method1809() {
System.out.print("hello: method1809");
}
public void method1810() {
System.out.print("hello: method1810");
}
public void method1811() {
System.out.print("hello: method1811");
}
public void method1812() {
System.out.print("hello: method1812");
}
public void method1813() {
System.out.print("hello: method1813");
}
public void method1814() {
System.out.print("hello: method1814");
}
public void method1815() {
System.out.print("hello: method1815");
}
public void method1816() {
System.out.print("hello: method1816");
}
public void method1817() {
System.out.print("hello: method1817");
}
public void method1818() {
System.out.print("hello: method1818");
}
public void method1819() {
System.out.print("hello: method1819");
}
public void method1820() {
System.out.print("hello: method1820");
}
public void method1821() {
System.out.print("hello: method1821");
}
public void method1822() {
System.out.print("hello: method1822");
}
public void method1823() {
System.out.print("hello: method1823");
}
public void method1824() {
System.out.print("hello: method1824");
}
public void method1825() {
System.out.print("hello: method1825");
}
public void method1826() {
System.out.print("hello: method1826");
}
public void method1827() {
System.out.print("hello: method1827");
}
public void method1828() {
System.out.print("hello: method1828");
}
public void method1829() {
System.out.print("hello: method1829");
}
public void method1830() {
System.out.print("hello: method1830");
}
public void method1831() {
System.out.print("hello: method1831");
}
public void method1832() {
System.out.print("hello: method1832");
}
public void method1833() {
System.out.print("hello: method1833");
}
public void method1834() {
System.out.print("hello: method1834");
}
public void method1835() {
System.out.print("hello: method1835");
}
public void method1836() {
System.out.print("hello: method1836");
}
public void method1837() {
System.out.print("hello: method1837");
}
public void method1838() {
System.out.print("hello: method1838");
}
public void method1839() {
System.out.print("hello: method1839");
}
public void method1840() {
System.out.print("hello: method1840");
}
public void method1841() {
System.out.print("hello: method1841");
}
public void method1842() {
System.out.print("hello: method1842");
}
public void method1843() {
System.out.print("hello: method1843");
}
public void method1844() {
System.out.print("hello: method1844");
}
public void method1845() {
System.out.print("hello: method1845");
}
public void method1846() {
System.out.print("hello: method1846");
}
public void method1847() {
System.out.print("hello: method1847");
}
public void method1848() {
System.out.print("hello: method1848");
}
public void method1849() {
System.out.print("hello: method1849");
}
public void method1850() {
System.out.print("hello: method1850");
}
public void method1851() {
System.out.print("hello: method1851");
}
public void method1852() {
System.out.print("hello: method1852");
}
public void method1853() {
System.out.print("hello: method1853");
}
public void method1854() {
System.out.print("hello: method1854");
}
public void method1855() {
System.out.print("hello: method1855");
}
public void method1856() {
System.out.print("hello: method1856");
}
public void method1857() {
System.out.print("hello: method1857");
}
public void method1858() {
System.out.print("hello: method1858");
}
public void method1859() {
System.out.print("hello: method1859");
}
public void method1860() {
System.out.print("hello: method1860");
}
public void method1861() {
System.out.print("hello: method1861");
}
public void method1862() {
System.out.print("hello: method1862");
}
public void method1863() {
System.out.print("hello: method1863");
}
public void method1864() {
System.out.print("hello: method1864");
}
public void method1865() {
System.out.print("hello: method1865");
}
public void method1866() {
System.out.print("hello: method1866");
}
public void method1867() {
System.out.print("hello: method1867");
}
public void method1868() {
System.out.print("hello: method1868");
}
public void method1869() {
System.out.print("hello: method1869");
}
public void method1870() {
System.out.print("hello: method1870");
}
public void method1871() {
System.out.print("hello: method1871");
}
public void method1872() {
System.out.print("hello: method1872");
}
public void method1873() {
System.out.print("hello: method1873");
}
public void method1874() {
System.out.print("hello: method1874");
}
public void method1875() {
System.out.print("hello: method1875");
}
public void method1876() {
System.out.print("hello: method1876");
}
public void method1877() {
System.out.print("hello: method1877");
}
public void method1878() {
System.out.print("hello: method1878");
}
public void method1879() {
System.out.print("hello: method1879");
}
public void method1880() {
System.out.print("hello: method1880");
}
public void method1881() {
System.out.print("hello: method1881");
}
public void method1882() {
System.out.print("hello: method1882");
}
public void method1883() {
System.out.print("hello: method1883");
}
public void method1884() {
System.out.print("hello: method1884");
}
public void method1885() {
System.out.print("hello: method1885");
}
public void method1886() {
System.out.print("hello: method1886");
}
public void method1887() {
System.out.print("hello: method1887");
}
public void method1888() {
System.out.print("hello: method1888");
}
public void method1889() {
System.out.print("hello: method1889");
}
public void method1890() {
System.out.print("hello: method1890");
}
public void method1891() {
System.out.print("hello: method1891");
}
public void method1892() {
System.out.print("hello: method1892");
}
public void method1893() {
System.out.print("hello: method1893");
}
public void method1894() {
System.out.print("hello: method1894");
}
public void method1895() {
System.out.print("hello: method1895");
}
public void method1896() {
System.out.print("hello: method1896");
}
public void method1897() {
System.out.print("hello: method1897");
}
public void method1898() {
System.out.print("hello: method1898");
}
public void method1899() {
System.out.print("hello: method1899");
}
public void method1900() {
System.out.print("hello: method1900");
}
public void method1901() {
System.out.print("hello: method1901");
}
public void method1902() {
System.out.print("hello: method1902");
}
public void method1903() {
System.out.print("hello: method1903");
}
public void method1904() {
System.out.print("hello: method1904");
}
public void method1905() {
System.out.print("hello: method1905");
}
public void method1906() {
System.out.print("hello: method1906");
}
public void method1907() {
System.out.print("hello: method1907");
}
public void method1908() {
System.out.print("hello: method1908");
}
public void method1909() {
System.out.print("hello: method1909");
}
public void method1910() {
System.out.print("hello: method1910");
}
public void method1911() {
System.out.print("hello: method1911");
}
public void method1912() {
System.out.print("hello: method1912");
}
public void method1913() {
System.out.print("hello: method1913");
}
public void method1914() {
System.out.print("hello: method1914");
}
public void method1915() {
System.out.print("hello: method1915");
}
public void method1916() {
System.out.print("hello: method1916");
}
public void method1917() {
System.out.print("hello: method1917");
}
public void method1918() {
System.out.print("hello: method1918");
}
public void method1919() {
System.out.print("hello: method1919");
}
public void method1920() {
System.out.print("hello: method1920");
}
public void method1921() {
System.out.print("hello: method1921");
}
public void method1922() {
System.out.print("hello: method1922");
}
public void method1923() {
System.out.print("hello: method1923");
}
public void method1924() {
System.out.print("hello: method1924");
}
public void method1925() {
System.out.print("hello: method1925");
}
public void method1926() {
System.out.print("hello: method1926");
}
public void method1927() {
System.out.print("hello: method1927");
}
public void method1928() {
System.out.print("hello: method1928");
}
public void method1929() {
System.out.print("hello: method1929");
}
public void method1930() {
System.out.print("hello: method1930");
}
public void method1931() {
System.out.print("hello: method1931");
}
public void method1932() {
System.out.print("hello: method1932");
}
public void method1933() {
System.out.print("hello: method1933");
}
public void method1934() {
System.out.print("hello: method1934");
}
public void method1935() {
System.out.print("hello: method1935");
}
public void method1936() {
System.out.print("hello: method1936");
}
public void method1937() {
System.out.print("hello: method1937");
}
public void method1938() {
System.out.print("hello: method1938");
}
public void method1939() {
System.out.print("hello: method1939");
}
public void method1940() {
System.out.print("hello: method1940");
}
public void method1941() {
System.out.print("hello: method1941");
}
public void method1942() {
System.out.print("hello: method1942");
}
public void method1943() {
System.out.print("hello: method1943");
}
public void method1944() {
System.out.print("hello: method1944");
}
public void method1945() {
System.out.print("hello: method1945");
}
public void method1946() {
System.out.print("hello: method1946");
}
public void method1947() {
System.out.print("hello: method1947");
}
public void method1948() {
System.out.print("hello: method1948");
}
public void method1949() {
System.out.print("hello: method1949");
}
public void method1950() {
System.out.print("hello: method1950");
}
public void method1951() {
System.out.print("hello: method1951");
}
public void method1952() {
System.out.print("hello: method1952");
}
public void method1953() {
System.out.print("hello: method1953");
}
public void method1954() {
System.out.print("hello: method1954");
}
public void method1955() {
System.out.print("hello: method1955");
}
public void method1956() {
System.out.print("hello: method1956");
}
public void method1957() {
System.out.print("hello: method1957");
}
public void method1958() {
System.out.print("hello: method1958");
}
public void method1959() {
System.out.print("hello: method1959");
}
public void method1960() {
System.out.print("hello: method1960");
}
public void method1961() {
System.out.print("hello: method1961");
}
public void method1962() {
System.out.print("hello: method1962");
}
public void method1963() {
System.out.print("hello: method1963");
}
public void method1964() {
System.out.print("hello: method1964");
}
public void method1965() {
System.out.print("hello: method1965");
}
public void method1966() {
System.out.print("hello: method1966");
}
public void method1967() {
System.out.print("hello: method1967");
}
public void method1968() {
System.out.print("hello: method1968");
}
public void method1969() {
System.out.print("hello: method1969");
}
public void method1970() {
System.out.print("hello: method1970");
}
public void method1971() {
System.out.print("hello: method1971");
}
public void method1972() {
System.out.print("hello: method1972");
}
public void method1973() {
System.out.print("hello: method1973");
}
public void method1974() {
System.out.print("hello: method1974");
}
public void method1975() {
System.out.print("hello: method1975");
}
public void method1976() {
System.out.print("hello: method1976");
}
public void method1977() {
System.out.print("hello: method1977");
}
public void method1978() {
System.out.print("hello: method1978");
}
public void method1979() {
System.out.print("hello: method1979");
}
public void method1980() {
System.out.print("hello: method1980");
}
public void method1981() {
System.out.print("hello: method1981");
}
public void method1982() {
System.out.print("hello: method1982");
}
public void method1983() {
System.out.print("hello: method1983");
}
public void method1984() {
System.out.print("hello: method1984");
}
public void method1985() {
System.out.print("hello: method1985");
}
public void method1986() {
System.out.print("hello: method1986");
}
public void method1987() {
System.out.print("hello: method1987");
}
public void method1988() {
System.out.print("hello: method1988");
}
public void method1989() {
System.out.print("hello: method1989");
}
public void method1990() {
System.out.print("hello: method1990");
}
public void method1991() {
System.out.print("hello: method1991");
}
public void method1992() {
System.out.print("hello: method1992");
}
public void method1993() {
System.out.print("hello: method1993");
}
public void method1994() {
System.out.print("hello: method1994");
}
public void method1995() {
System.out.print("hello: method1995");
}
public void method1996() {
System.out.print("hello: method1996");
}
public void method1997() {
System.out.print("hello: method1997");
}
public void method1998() {
System.out.print("hello: method1998");
}
public void method1999() {
System.out.print("hello: method1999");
}
public void method2000() {
System.out.print("hello: method2000");
}
public void method2001() {
System.out.print("hello: method2001");
}
public void method2002() {
System.out.print("hello: method2002");
}
public void method2003() {
System.out.print("hello: method2003");
}
public void method2004() {
System.out.print("hello: method2004");
}
public void method2005() {
System.out.print("hello: method2005");
}
public void method2006() {
System.out.print("hello: method2006");
}
public void method2007() {
System.out.print("hello: method2007");
}
public void method2008() {
System.out.print("hello: method2008");
}
public void method2009() {
System.out.print("hello: method2009");
}
public void method2010() {
System.out.print("hello: method2010");
}
public void method2011() {
System.out.print("hello: method2011");
}
public void method2012() {
System.out.print("hello: method2012");
}
public void method2013() {
System.out.print("hello: method2013");
}
public void method2014() {
System.out.print("hello: method2014");
}
public void method2015() {
System.out.print("hello: method2015");
}
public void method2016() {
System.out.print("hello: method2016");
}
public void method2017() {
System.out.print("hello: method2017");
}
public void method2018() {
System.out.print("hello: method2018");
}
public void method2019() {
System.out.print("hello: method2019");
}
public void method2020() {
System.out.print("hello: method2020");
}
public void method2021() {
System.out.print("hello: method2021");
}
public void method2022() {
System.out.print("hello: method2022");
}
public void method2023() {
System.out.print("hello: method2023");
}
public void method2024() {
System.out.print("hello: method2024");
}
public void method2025() {
System.out.print("hello: method2025");
}
public void method2026() {
System.out.print("hello: method2026");
}
public void method2027() {
System.out.print("hello: method2027");
}
public void method2028() {
System.out.print("hello: method2028");
}
public void method2029() {
System.out.print("hello: method2029");
}
public void method2030() {
System.out.print("hello: method2030");
}
public void method2031() {
System.out.print("hello: method2031");
}
public void method2032() {
System.out.print("hello: method2032");
}
public void method2033() {
System.out.print("hello: method2033");
}
public void method2034() {
System.out.print("hello: method2034");
}
public void method2035() {
System.out.print("hello: method2035");
}
public void method2036() {
System.out.print("hello: method2036");
}
public void method2037() {
System.out.print("hello: method2037");
}
public void method2038() {
System.out.print("hello: method2038");
}
public void method2039() {
System.out.print("hello: method2039");
}
public void method2040() {
System.out.print("hello: method2040");
}
public void method2041() {
System.out.print("hello: method2041");
}
public void method2042() {
System.out.print("hello: method2042");
}
public void method2043() {
System.out.print("hello: method2043");
}
public void method2044() {
System.out.print("hello: method2044");
}
public void method2045() {
System.out.print("hello: method2045");
}
public void method2046() {
System.out.print("hello: method2046");
}
public void method2047() {
System.out.print("hello: method2047");
}
public void method2048() {
System.out.print("hello: method2048");
}
public void method2049() {
System.out.print("hello: method2049");
}
public void method2050() {
System.out.print("hello: method2050");
}
public void method2051() {
System.out.print("hello: method2051");
}
public void method2052() {
System.out.print("hello: method2052");
}
public void method2053() {
System.out.print("hello: method2053");
}
public void method2054() {
System.out.print("hello: method2054");
}
public void method2055() {
System.out.print("hello: method2055");
}
public void method2056() {
System.out.print("hello: method2056");
}
public void method2057() {
System.out.print("hello: method2057");
}
public void method2058() {
System.out.print("hello: method2058");
}
public void method2059() {
System.out.print("hello: method2059");
}
public void method2060() {
System.out.print("hello: method2060");
}
public void method2061() {
System.out.print("hello: method2061");
}
public void method2062() {
System.out.print("hello: method2062");
}
public void method2063() {
System.out.print("hello: method2063");
}
public void method2064() {
System.out.print("hello: method2064");
}
public void method2065() {
System.out.print("hello: method2065");
}
public void method2066() {
System.out.print("hello: method2066");
}
public void method2067() {
System.out.print("hello: method2067");
}
public void method2068() {
System.out.print("hello: method2068");
}
public void method2069() {
System.out.print("hello: method2069");
}
public void method2070() {
System.out.print("hello: method2070");
}
public void method2071() {
System.out.print("hello: method2071");
}
public void method2072() {
System.out.print("hello: method2072");
}
public void method2073() {
System.out.print("hello: method2073");
}
public void method2074() {
System.out.print("hello: method2074");
}
public void method2075() {
System.out.print("hello: method2075");
}
public void method2076() {
System.out.print("hello: method2076");
}
public void method2077() {
System.out.print("hello: method2077");
}
public void method2078() {
System.out.print("hello: method2078");
}
public void method2079() {
System.out.print("hello: method2079");
}
public void method2080() {
System.out.print("hello: method2080");
}
public void method2081() {
System.out.print("hello: method2081");
}
public void method2082() {
System.out.print("hello: method2082");
}
public void method2083() {
System.out.print("hello: method2083");
}
public void method2084() {
System.out.print("hello: method2084");
}
public void method2085() {
System.out.print("hello: method2085");
}
public void method2086() {
System.out.print("hello: method2086");
}
public void method2087() {
System.out.print("hello: method2087");
}
public void method2088() {
System.out.print("hello: method2088");
}
public void method2089() {
System.out.print("hello: method2089");
}
public void method2090() {
System.out.print("hello: method2090");
}
public void method2091() {
System.out.print("hello: method2091");
}
public void method2092() {
System.out.print("hello: method2092");
}
public void method2093() {
System.out.print("hello: method2093");
}
public void method2094() {
System.out.print("hello: method2094");
}
public void method2095() {
System.out.print("hello: method2095");
}
public void method2096() {
System.out.print("hello: method2096");
}
public void method2097() {
System.out.print("hello: method2097");
}
public void method2098() {
System.out.print("hello: method2098");
}
public void method2099() {
System.out.print("hello: method2099");
}
public void method2100() {
System.out.print("hello: method2100");
}
public void method2101() {
System.out.print("hello: method2101");
}
public void method2102() {
System.out.print("hello: method2102");
}
public void method2103() {
System.out.print("hello: method2103");
}
public void method2104() {
System.out.print("hello: method2104");
}
public void method2105() {
System.out.print("hello: method2105");
}
public void method2106() {
System.out.print("hello: method2106");
}
public void method2107() {
System.out.print("hello: method2107");
}
public void method2108() {
System.out.print("hello: method2108");
}
public void method2109() {
System.out.print("hello: method2109");
}
public void method2110() {
System.out.print("hello: method2110");
}
public void method2111() {
System.out.print("hello: method2111");
}
public void method2112() {
System.out.print("hello: method2112");
}
public void method2113() {
System.out.print("hello: method2113");
}
public void method2114() {
System.out.print("hello: method2114");
}
public void method2115() {
System.out.print("hello: method2115");
}
public void method2116() {
System.out.print("hello: method2116");
}
public void method2117() {
System.out.print("hello: method2117");
}
public void method2118() {
System.out.print("hello: method2118");
}
public void method2119() {
System.out.print("hello: method2119");
}
public void method2120() {
System.out.print("hello: method2120");
}
public void method2121() {
System.out.print("hello: method2121");
}
public void method2122() {
System.out.print("hello: method2122");
}
public void method2123() {
System.out.print("hello: method2123");
}
public void method2124() {
System.out.print("hello: method2124");
}
public void method2125() {
System.out.print("hello: method2125");
}
public void method2126() {
System.out.print("hello: method2126");
}
public void method2127() {
System.out.print("hello: method2127");
}
public void method2128() {
System.out.print("hello: method2128");
}
public void method2129() {
System.out.print("hello: method2129");
}
public void method2130() {
System.out.print("hello: method2130");
}
public void method2131() {
System.out.print("hello: method2131");
}
public void method2132() {
System.out.print("hello: method2132");
}
public void method2133() {
System.out.print("hello: method2133");
}
public void method2134() {
System.out.print("hello: method2134");
}
public void method2135() {
System.out.print("hello: method2135");
}
public void method2136() {
System.out.print("hello: method2136");
}
public void method2137() {
System.out.print("hello: method2137");
}
public void method2138() {
System.out.print("hello: method2138");
}
public void method2139() {
System.out.print("hello: method2139");
}
public void method2140() {
System.out.print("hello: method2140");
}
public void method2141() {
System.out.print("hello: method2141");
}
public void method2142() {
System.out.print("hello: method2142");
}
public void method2143() {
System.out.print("hello: method2143");
}
public void method2144() {
System.out.print("hello: method2144");
}
public void method2145() {
System.out.print("hello: method2145");
}
public void method2146() {
System.out.print("hello: method2146");
}
public void method2147() {
System.out.print("hello: method2147");
}
public void method2148() {
System.out.print("hello: method2148");
}
public void method2149() {
System.out.print("hello: method2149");
}
public void method2150() {
System.out.print("hello: method2150");
}
public void method2151() {
System.out.print("hello: method2151");
}
public void method2152() {
System.out.print("hello: method2152");
}
public void method2153() {
System.out.print("hello: method2153");
}
public void method2154() {
System.out.print("hello: method2154");
}
public void method2155() {
System.out.print("hello: method2155");
}
public void method2156() {
System.out.print("hello: method2156");
}
public void method2157() {
System.out.print("hello: method2157");
}
public void method2158() {
System.out.print("hello: method2158");
}
public void method2159() {
System.out.print("hello: method2159");
}
public void method2160() {
System.out.print("hello: method2160");
}
public void method2161() {
System.out.print("hello: method2161");
}
public void method2162() {
System.out.print("hello: method2162");
}
public void method2163() {
System.out.print("hello: method2163");
}
public void method2164() {
System.out.print("hello: method2164");
}
public void method2165() {
System.out.print("hello: method2165");
}
public void method2166() {
System.out.print("hello: method2166");
}
public void method2167() {
System.out.print("hello: method2167");
}
public void method2168() {
System.out.print("hello: method2168");
}
public void method2169() {
System.out.print("hello: method2169");
}
public void method2170() {
System.out.print("hello: method2170");
}
public void method2171() {
System.out.print("hello: method2171");
}
public void method2172() {
System.out.print("hello: method2172");
}
public void method2173() {
System.out.print("hello: method2173");
}
public void method2174() {
System.out.print("hello: method2174");
}
public void method2175() {
System.out.print("hello: method2175");
}
public void method2176() {
System.out.print("hello: method2176");
}
public void method2177() {
System.out.print("hello: method2177");
}
public void method2178() {
System.out.print("hello: method2178");
}
public void method2179() {
System.out.print("hello: method2179");
}
public void method2180() {
System.out.print("hello: method2180");
}
public void method2181() {
System.out.print("hello: method2181");
}
public void method2182() {
System.out.print("hello: method2182");
}
public void method2183() {
System.out.print("hello: method2183");
}
public void method2184() {
System.out.print("hello: method2184");
}
public void method2185() {
System.out.print("hello: method2185");
}
public void method2186() {
System.out.print("hello: method2186");
}
public void method2187() {
System.out.print("hello: method2187");
}
public void method2188() {
System.out.print("hello: method2188");
}
public void method2189() {
System.out.print("hello: method2189");
}
public void method2190() {
System.out.print("hello: method2190");
}
public void method2191() {
System.out.print("hello: method2191");
}
public void method2192() {
System.out.print("hello: method2192");
}
public void method2193() {
System.out.print("hello: method2193");
}
public void method2194() {
System.out.print("hello: method2194");
}
public void method2195() {
System.out.print("hello: method2195");
}
public void method2196() {
System.out.print("hello: method2196");
}
public void method2197() {
System.out.print("hello: method2197");
}
public void method2198() {
System.out.print("hello: method2198");
}
public void method2199() {
System.out.print("hello: method2199");
}
public void method2200() {
System.out.print("hello: method2200");
}
public void method2201() {
System.out.print("hello: method2201");
}
public void method2202() {
System.out.print("hello: method2202");
}
public void method2203() {
System.out.print("hello: method2203");
}
public void method2204() {
System.out.print("hello: method2204");
}
public void method2205() {
System.out.print("hello: method2205");
}
public void method2206() {
System.out.print("hello: method2206");
}
public void method2207() {
System.out.print("hello: method2207");
}
public void method2208() {
System.out.print("hello: method2208");
}
public void method2209() {
System.out.print("hello: method2209");
}
public void method2210() {
System.out.print("hello: method2210");
}
public void method2211() {
System.out.print("hello: method2211");
}
public void method2212() {
System.out.print("hello: method2212");
}
public void method2213() {
System.out.print("hello: method2213");
}
public void method2214() {
System.out.print("hello: method2214");
}
public void method2215() {
System.out.print("hello: method2215");
}
public void method2216() {
System.out.print("hello: method2216");
}
public void method2217() {
System.out.print("hello: method2217");
}
public void method2218() {
System.out.print("hello: method2218");
}
public void method2219() {
System.out.print("hello: method2219");
}
public void method2220() {
System.out.print("hello: method2220");
}
public void method2221() {
System.out.print("hello: method2221");
}
public void method2222() {
System.out.print("hello: method2222");
}
public void method2223() {
System.out.print("hello: method2223");
}
public void method2224() {
System.out.print("hello: method2224");
}
public void method2225() {
System.out.print("hello: method2225");
}
public void method2226() {
System.out.print("hello: method2226");
}
public void method2227() {
System.out.print("hello: method2227");
}
public void method2228() {
System.out.print("hello: method2228");
}
public void method2229() {
System.out.print("hello: method2229");
}
public void method2230() {
System.out.print("hello: method2230");
}
public void method2231() {
System.out.print("hello: method2231");
}
public void method2232() {
System.out.print("hello: method2232");
}
public void method2233() {
System.out.print("hello: method2233");
}
public void method2234() {
System.out.print("hello: method2234");
}
public void method2235() {
System.out.print("hello: method2235");
}
public void method2236() {
System.out.print("hello: method2236");
}
public void method2237() {
System.out.print("hello: method2237");
}
public void method2238() {
System.out.print("hello: method2238");
}
public void method2239() {
System.out.print("hello: method2239");
}
public void method2240() {
System.out.print("hello: method2240");
}
public void method2241() {
System.out.print("hello: method2241");
}
public void method2242() {
System.out.print("hello: method2242");
}
public void method2243() {
System.out.print("hello: method2243");
}
public void method2244() {
System.out.print("hello: method2244");
}
public void method2245() {
System.out.print("hello: method2245");
}
public void method2246() {
System.out.print("hello: method2246");
}
public void method2247() {
System.out.print("hello: method2247");
}
public void method2248() {
System.out.print("hello: method2248");
}
public void method2249() {
System.out.print("hello: method2249");
}
public void method2250() {
System.out.print("hello: method2250");
}
public void method2251() {
System.out.print("hello: method2251");
}
public void method2252() {
System.out.print("hello: method2252");
}
public void method2253() {
System.out.print("hello: method2253");
}
public void method2254() {
System.out.print("hello: method2254");
}
public void method2255() {
System.out.print("hello: method2255");
}
public void method2256() {
System.out.print("hello: method2256");
}
public void method2257() {
System.out.print("hello: method2257");
}
public void method2258() {
System.out.print("hello: method2258");
}
public void method2259() {
System.out.print("hello: method2259");
}
public void method2260() {
System.out.print("hello: method2260");
}
public void method2261() {
System.out.print("hello: method2261");
}
public void method2262() {
System.out.print("hello: method2262");
}
public void method2263() {
System.out.print("hello: method2263");
}
public void method2264() {
System.out.print("hello: method2264");
}
public void method2265() {
System.out.print("hello: method2265");
}
public void method2266() {
System.out.print("hello: method2266");
}
public void method2267() {
System.out.print("hello: method2267");
}
public void method2268() {
System.out.print("hello: method2268");
}
public void method2269() {
System.out.print("hello: method2269");
}
public void method2270() {
System.out.print("hello: method2270");
}
public void method2271() {
System.out.print("hello: method2271");
}
public void method2272() {
System.out.print("hello: method2272");
}
public void method2273() {
System.out.print("hello: method2273");
}
public void method2274() {
System.out.print("hello: method2274");
}
public void method2275() {
System.out.print("hello: method2275");
}
public void method2276() {
System.out.print("hello: method2276");
}
public void method2277() {
System.out.print("hello: method2277");
}
public void method2278() {
System.out.print("hello: method2278");
}
public void method2279() {
System.out.print("hello: method2279");
}
public void method2280() {
System.out.print("hello: method2280");
}
public void method2281() {
System.out.print("hello: method2281");
}
public void method2282() {
System.out.print("hello: method2282");
}
public void method2283() {
System.out.print("hello: method2283");
}
public void method2284() {
System.out.print("hello: method2284");
}
public void method2285() {
System.out.print("hello: method2285");
}
public void method2286() {
System.out.print("hello: method2286");
}
public void method2287() {
System.out.print("hello: method2287");
}
public void method2288() {
System.out.print("hello: method2288");
}
public void method2289() {
System.out.print("hello: method2289");
}
public void method2290() {
System.out.print("hello: method2290");
}
public void method2291() {
System.out.print("hello: method2291");
}
public void method2292() {
System.out.print("hello: method2292");
}
public void method2293() {
System.out.print("hello: method2293");
}
public void method2294() {
System.out.print("hello: method2294");
}
public void method2295() {
System.out.print("hello: method2295");
}
public void method2296() {
System.out.print("hello: method2296");
}
public void method2297() {
System.out.print("hello: method2297");
}
public void method2298() {
System.out.print("hello: method2298");
}
public void method2299() {
System.out.print("hello: method2299");
}
public void method2300() {
System.out.print("hello: method2300");
}
public void method2301() {
System.out.print("hello: method2301");
}
public void method2302() {
System.out.print("hello: method2302");
}
public void method2303() {
System.out.print("hello: method2303");
}
public void method2304() {
System.out.print("hello: method2304");
}
public void method2305() {
System.out.print("hello: method2305");
}
public void method2306() {
System.out.print("hello: method2306");
}
public void method2307() {
System.out.print("hello: method2307");
}
public void method2308() {
System.out.print("hello: method2308");
}
public void method2309() {
System.out.print("hello: method2309");
}
public void method2310() {
System.out.print("hello: method2310");
}
public void method2311() {
System.out.print("hello: method2311");
}
public void method2312() {
System.out.print("hello: method2312");
}
public void method2313() {
System.out.print("hello: method2313");
}
public void method2314() {
System.out.print("hello: method2314");
}
public void method2315() {
System.out.print("hello: method2315");
}
public void method2316() {
System.out.print("hello: method2316");
}
public void method2317() {
System.out.print("hello: method2317");
}
public void method2318() {
System.out.print("hello: method2318");
}
public void method2319() {
System.out.print("hello: method2319");
}
public void method2320() {
System.out.print("hello: method2320");
}
public void method2321() {
System.out.print("hello: method2321");
}
public void method2322() {
System.out.print("hello: method2322");
}
public void method2323() {
System.out.print("hello: method2323");
}
public void method2324() {
System.out.print("hello: method2324");
}
public void method2325() {
System.out.print("hello: method2325");
}
public void method2326() {
System.out.print("hello: method2326");
}
public void method2327() {
System.out.print("hello: method2327");
}
public void method2328() {
System.out.print("hello: method2328");
}
public void method2329() {
System.out.print("hello: method2329");
}
public void method2330() {
System.out.print("hello: method2330");
}
public void method2331() {
System.out.print("hello: method2331");
}
public void method2332() {
System.out.print("hello: method2332");
}
public void method2333() {
System.out.print("hello: method2333");
}
public void method2334() {
System.out.print("hello: method2334");
}
public void method2335() {
System.out.print("hello: method2335");
}
public void method2336() {
System.out.print("hello: method2336");
}
public void method2337() {
System.out.print("hello: method2337");
}
public void method2338() {
System.out.print("hello: method2338");
}
public void method2339() {
System.out.print("hello: method2339");
}
public void method2340() {
System.out.print("hello: method2340");
}
public void method2341() {
System.out.print("hello: method2341");
}
public void method2342() {
System.out.print("hello: method2342");
}
public void method2343() {
System.out.print("hello: method2343");
}
public void method2344() {
System.out.print("hello: method2344");
}
public void method2345() {
System.out.print("hello: method2345");
}
public void method2346() {
System.out.print("hello: method2346");
}
public void method2347() {
System.out.print("hello: method2347");
}
public void method2348() {
System.out.print("hello: method2348");
}
public void method2349() {
System.out.print("hello: method2349");
}
public void method2350() {
System.out.print("hello: method2350");
}
public void method2351() {
System.out.print("hello: method2351");
}
public void method2352() {
System.out.print("hello: method2352");
}
public void method2353() {
System.out.print("hello: method2353");
}
public void method2354() {
System.out.print("hello: method2354");
}
public void method2355() {
System.out.print("hello: method2355");
}
public void method2356() {
System.out.print("hello: method2356");
}
public void method2357() {
System.out.print("hello: method2357");
}
public void method2358() {
System.out.print("hello: method2358");
}
public void method2359() {
System.out.print("hello: method2359");
}
public void method2360() {
System.out.print("hello: method2360");
}
public void method2361() {
System.out.print("hello: method2361");
}
public void method2362() {
System.out.print("hello: method2362");
}
public void method2363() {
System.out.print("hello: method2363");
}
public void method2364() {
System.out.print("hello: method2364");
}
public void method2365() {
System.out.print("hello: method2365");
}
public void method2366() {
System.out.print("hello: method2366");
}
public void method2367() {
System.out.print("hello: method2367");
}
public void method2368() {
System.out.print("hello: method2368");
}
public void method2369() {
System.out.print("hello: method2369");
}
public void method2370() {
System.out.print("hello: method2370");
}
public void method2371() {
System.out.print("hello: method2371");
}
public void method2372() {
System.out.print("hello: method2372");
}
public void method2373() {
System.out.print("hello: method2373");
}
public void method2374() {
System.out.print("hello: method2374");
}
public void method2375() {
System.out.print("hello: method2375");
}
public void method2376() {
System.out.print("hello: method2376");
}
public void method2377() {
System.out.print("hello: method2377");
}
public void method2378() {
System.out.print("hello: method2378");
}
public void method2379() {
System.out.print("hello: method2379");
}
public void method2380() {
System.out.print("hello: method2380");
}
public void method2381() {
System.out.print("hello: method2381");
}
public void method2382() {
System.out.print("hello: method2382");
}
public void method2383() {
System.out.print("hello: method2383");
}
public void method2384() {
System.out.print("hello: method2384");
}
public void method2385() {
System.out.print("hello: method2385");
}
public void method2386() {
System.out.print("hello: method2386");
}
public void method2387() {
System.out.print("hello: method2387");
}
public void method2388() {
System.out.print("hello: method2388");
}
public void method2389() {
System.out.print("hello: method2389");
}
public void method2390() {
System.out.print("hello: method2390");
}
public void method2391() {
System.out.print("hello: method2391");
}
public void method2392() {
System.out.print("hello: method2392");
}
public void method2393() {
System.out.print("hello: method2393");
}
public void method2394() {
System.out.print("hello: method2394");
}
public void method2395() {
System.out.print("hello: method2395");
}
public void method2396() {
System.out.print("hello: method2396");
}
public void method2397() {
System.out.print("hello: method2397");
}
public void method2398() {
System.out.print("hello: method2398");
}
public void method2399() {
System.out.print("hello: method2399");
}
public void method2400() {
System.out.print("hello: method2400");
}
public void method2401() {
System.out.print("hello: method2401");
}
public void method2402() {
System.out.print("hello: method2402");
}
public void method2403() {
System.out.print("hello: method2403");
}
public void method2404() {
System.out.print("hello: method2404");
}
public void method2405() {
System.out.print("hello: method2405");
}
public void method2406() {
System.out.print("hello: method2406");
}
public void method2407() {
System.out.print("hello: method2407");
}
public void method2408() {
System.out.print("hello: method2408");
}
public void method2409() {
System.out.print("hello: method2409");
}
public void method2410() {
System.out.print("hello: method2410");
}
public void method2411() {
System.out.print("hello: method2411");
}
public void method2412() {
System.out.print("hello: method2412");
}
public void method2413() {
System.out.print("hello: method2413");
}
public void method2414() {
System.out.print("hello: method2414");
}
public void method2415() {
System.out.print("hello: method2415");
}
public void method2416() {
System.out.print("hello: method2416");
}
public void method2417() {
System.out.print("hello: method2417");
}
public void method2418() {
System.out.print("hello: method2418");
}
public void method2419() {
System.out.print("hello: method2419");
}
public void method2420() {
System.out.print("hello: method2420");
}
public void method2421() {
System.out.print("hello: method2421");
}
public void method2422() {
System.out.print("hello: method2422");
}
public void method2423() {
System.out.print("hello: method2423");
}
public void method2424() {
System.out.print("hello: method2424");
}
public void method2425() {
System.out.print("hello: method2425");
}
public void method2426() {
System.out.print("hello: method2426");
}
public void method2427() {
System.out.print("hello: method2427");
}
public void method2428() {
System.out.print("hello: method2428");
}
public void method2429() {
System.out.print("hello: method2429");
}
public void method2430() {
System.out.print("hello: method2430");
}
public void method2431() {
System.out.print("hello: method2431");
}
public void method2432() {
System.out.print("hello: method2432");
}
public void method2433() {
System.out.print("hello: method2433");
}
public void method2434() {
System.out.print("hello: method2434");
}
public void method2435() {
System.out.print("hello: method2435");
}
public void method2436() {
System.out.print("hello: method2436");
}
public void method2437() {
System.out.print("hello: method2437");
}
public void method2438() {
System.out.print("hello: method2438");
}
public void method2439() {
System.out.print("hello: method2439");
}
public void method2440() {
System.out.print("hello: method2440");
}
public void method2441() {
System.out.print("hello: method2441");
}
public void method2442() {
System.out.print("hello: method2442");
}
public void method2443() {
System.out.print("hello: method2443");
}
public void method2444() {
System.out.print("hello: method2444");
}
public void method2445() {
System.out.print("hello: method2445");
}
public void method2446() {
System.out.print("hello: method2446");
}
public void method2447() {
System.out.print("hello: method2447");
}
public void method2448() {
System.out.print("hello: method2448");
}
public void method2449() {
System.out.print("hello: method2449");
}
public void method2450() {
System.out.print("hello: method2450");
}
public void method2451() {
System.out.print("hello: method2451");
}
public void method2452() {
System.out.print("hello: method2452");
}
public void method2453() {
System.out.print("hello: method2453");
}
public void method2454() {
System.out.print("hello: method2454");
}
public void method2455() {
System.out.print("hello: method2455");
}
public void method2456() {
System.out.print("hello: method2456");
}
public void method2457() {
System.out.print("hello: method2457");
}
public void method2458() {
System.out.print("hello: method2458");
}
public void method2459() {
System.out.print("hello: method2459");
}
public void method2460() {
System.out.print("hello: method2460");
}
public void method2461() {
System.out.print("hello: method2461");
}
public void method2462() {
System.out.print("hello: method2462");
}
public void method2463() {
System.out.print("hello: method2463");
}
public void method2464() {
System.out.print("hello: method2464");
}
public void method2465() {
System.out.print("hello: method2465");
}
public void method2466() {
System.out.print("hello: method2466");
}
public void method2467() {
System.out.print("hello: method2467");
}
public void method2468() {
System.out.print("hello: method2468");
}
public void method2469() {
System.out.print("hello: method2469");
}
public void method2470() {
System.out.print("hello: method2470");
}
public void method2471() {
System.out.print("hello: method2471");
}
public void method2472() {
System.out.print("hello: method2472");
}
public void method2473() {
System.out.print("hello: method2473");
}
public void method2474() {
System.out.print("hello: method2474");
}
public void method2475() {
System.out.print("hello: method2475");
}
public void method2476() {
System.out.print("hello: method2476");
}
public void method2477() {
System.out.print("hello: method2477");
}
public void method2478() {
System.out.print("hello: method2478");
}
public void method2479() {
System.out.print("hello: method2479");
}
public void method2480() {
System.out.print("hello: method2480");
}
public void method2481() {
System.out.print("hello: method2481");
}
public void method2482() {
System.out.print("hello: method2482");
}
public void method2483() {
System.out.print("hello: method2483");
}
public void method2484() {
System.out.print("hello: method2484");
}
public void method2485() {
System.out.print("hello: method2485");
}
public void method2486() {
System.out.print("hello: method2486");
}
public void method2487() {
System.out.print("hello: method2487");
}
public void method2488() {
System.out.print("hello: method2488");
}
public void method2489() {
System.out.print("hello: method2489");
}
public void method2490() {
System.out.print("hello: method2490");
}
public void method2491() {
System.out.print("hello: method2491");
}
public void method2492() {
System.out.print("hello: method2492");
}
public void method2493() {
System.out.print("hello: method2493");
}
public void method2494() {
System.out.print("hello: method2494");
}
public void method2495() {
System.out.print("hello: method2495");
}
public void method2496() {
System.out.print("hello: method2496");
}
public void method2497() {
System.out.print("hello: method2497");
}
public void method2498() {
System.out.print("hello: method2498");
}
public void method2499() {
System.out.print("hello: method2499");
}
public void method2500() {
System.out.print("hello: method2500");
}
public void method2501() {
System.out.print("hello: method2501");
}
public void method2502() {
System.out.print("hello: method2502");
}
public void method2503() {
System.out.print("hello: method2503");
}
public void method2504() {
System.out.print("hello: method2504");
}
public void method2505() {
System.out.print("hello: method2505");
}
public void method2506() {
System.out.print("hello: method2506");
}
public void method2507() {
System.out.print("hello: method2507");
}
public void method2508() {
System.out.print("hello: method2508");
}
public void method2509() {
System.out.print("hello: method2509");
}
public void method2510() {
System.out.print("hello: method2510");
}
public void method2511() {
System.out.print("hello: method2511");
}
public void method2512() {
System.out.print("hello: method2512");
}
public void method2513() {
System.out.print("hello: method2513");
}
public void method2514() {
System.out.print("hello: method2514");
}
public void method2515() {
System.out.print("hello: method2515");
}
public void method2516() {
System.out.print("hello: method2516");
}
public void method2517() {
System.out.print("hello: method2517");
}
public void method2518() {
System.out.print("hello: method2518");
}
public void method2519() {
System.out.print("hello: method2519");
}
public void method2520() {
System.out.print("hello: method2520");
}
public void method2521() {
System.out.print("hello: method2521");
}
public void method2522() {
System.out.print("hello: method2522");
}
public void method2523() {
System.out.print("hello: method2523");
}
public void method2524() {
System.out.print("hello: method2524");
}
public void method2525() {
System.out.print("hello: method2525");
}
public void method2526() {
System.out.print("hello: method2526");
}
public void method2527() {
System.out.print("hello: method2527");
}
public void method2528() {
System.out.print("hello: method2528");
}
public void method2529() {
System.out.print("hello: method2529");
}
public void method2530() {
System.out.print("hello: method2530");
}
public void method2531() {
System.out.print("hello: method2531");
}
public void method2532() {
System.out.print("hello: method2532");
}
public void method2533() {
System.out.print("hello: method2533");
}
public void method2534() {
System.out.print("hello: method2534");
}
public void method2535() {
System.out.print("hello: method2535");
}
public void method2536() {
System.out.print("hello: method2536");
}
public void method2537() {
System.out.print("hello: method2537");
}
public void method2538() {
System.out.print("hello: method2538");
}
public void method2539() {
System.out.print("hello: method2539");
}
public void method2540() {
System.out.print("hello: method2540");
}
public void method2541() {
System.out.print("hello: method2541");
}
public void method2542() {
System.out.print("hello: method2542");
}
public void method2543() {
System.out.print("hello: method2543");
}
public void method2544() {
System.out.print("hello: method2544");
}
public void method2545() {
System.out.print("hello: method2545");
}
public void method2546() {
System.out.print("hello: method2546");
}
public void method2547() {
System.out.print("hello: method2547");
}
public void method2548() {
System.out.print("hello: method2548");
}
public void method2549() {
System.out.print("hello: method2549");
}
public void method2550() {
System.out.print("hello: method2550");
}
public void method2551() {
System.out.print("hello: method2551");
}
public void method2552() {
System.out.print("hello: method2552");
}
public void method2553() {
System.out.print("hello: method2553");
}
public void method2554() {
System.out.print("hello: method2554");
}
public void method2555() {
System.out.print("hello: method2555");
}
public void method2556() {
System.out.print("hello: method2556");
}
public void method2557() {
System.out.print("hello: method2557");
}
public void method2558() {
System.out.print("hello: method2558");
}
public void method2559() {
System.out.print("hello: method2559");
}
public void method2560() {
System.out.print("hello: method2560");
}
public void method2561() {
System.out.print("hello: method2561");
}
public void method2562() {
System.out.print("hello: method2562");
}
public void method2563() {
System.out.print("hello: method2563");
}
public void method2564() {
System.out.print("hello: method2564");
}
public void method2565() {
System.out.print("hello: method2565");
}
public void method2566() {
System.out.print("hello: method2566");
}
public void method2567() {
System.out.print("hello: method2567");
}
public void method2568() {
System.out.print("hello: method2568");
}
public void method2569() {
System.out.print("hello: method2569");
}
public void method2570() {
System.out.print("hello: method2570");
}
public void method2571() {
System.out.print("hello: method2571");
}
public void method2572() {
System.out.print("hello: method2572");
}
public void method2573() {
System.out.print("hello: method2573");
}
public void method2574() {
System.out.print("hello: method2574");
}
public void method2575() {
System.out.print("hello: method2575");
}
public void method2576() {
System.out.print("hello: method2576");
}
public void method2577() {
System.out.print("hello: method2577");
}
public void method2578() {
System.out.print("hello: method2578");
}
public void method2579() {
System.out.print("hello: method2579");
}
public void method2580() {
System.out.print("hello: method2580");
}
public void method2581() {
System.out.print("hello: method2581");
}
public void method2582() {
System.out.print("hello: method2582");
}
public void method2583() {
System.out.print("hello: method2583");
}
public void method2584() {
System.out.print("hello: method2584");
}
public void method2585() {
System.out.print("hello: method2585");
}
public void method2586() {
System.out.print("hello: method2586");
}
public void method2587() {
System.out.print("hello: method2587");
}
public void method2588() {
System.out.print("hello: method2588");
}
public void method2589() {
System.out.print("hello: method2589");
}
public void method2590() {
System.out.print("hello: method2590");
}
public void method2591() {
System.out.print("hello: method2591");
}
public void method2592() {
System.out.print("hello: method2592");
}
public void method2593() {
System.out.print("hello: method2593");
}
public void method2594() {
System.out.print("hello: method2594");
}
public void method2595() {
System.out.print("hello: method2595");
}
public void method2596() {
System.out.print("hello: method2596");
}
public void method2597() {
System.out.print("hello: method2597");
}
public void method2598() {
System.out.print("hello: method2598");
}
public void method2599() {
System.out.print("hello: method2599");
}
public void method2600() {
System.out.print("hello: method2600");
}
public void method2601() {
System.out.print("hello: method2601");
}
public void method2602() {
System.out.print("hello: method2602");
}
public void method2603() {
System.out.print("hello: method2603");
}
public void method2604() {
System.out.print("hello: method2604");
}
public void method2605() {
System.out.print("hello: method2605");
}
public void method2606() {
System.out.print("hello: method2606");
}
public void method2607() {
System.out.print("hello: method2607");
}
public void method2608() {
System.out.print("hello: method2608");
}
public void method2609() {
System.out.print("hello: method2609");
}
public void method2610() {
System.out.print("hello: method2610");
}
public void method2611() {
System.out.print("hello: method2611");
}
public void method2612() {
System.out.print("hello: method2612");
}
public void method2613() {
System.out.print("hello: method2613");
}
public void method2614() {
System.out.print("hello: method2614");
}
public void method2615() {
System.out.print("hello: method2615");
}
public void method2616() {
System.out.print("hello: method2616");
}
public void method2617() {
System.out.print("hello: method2617");
}
public void method2618() {
System.out.print("hello: method2618");
}
public void method2619() {
System.out.print("hello: method2619");
}
public void method2620() {
System.out.print("hello: method2620");
}
public void method2621() {
System.out.print("hello: method2621");
}
public void method2622() {
System.out.print("hello: method2622");
}
public void method2623() {
System.out.print("hello: method2623");
}
public void method2624() {
System.out.print("hello: method2624");
}
public void method2625() {
System.out.print("hello: method2625");
}
public void method2626() {
System.out.print("hello: method2626");
}
public void method2627() {
System.out.print("hello: method2627");
}
public void method2628() {
System.out.print("hello: method2628");
}
public void method2629() {
System.out.print("hello: method2629");
}
public void method2630() {
System.out.print("hello: method2630");
}
public void method2631() {
System.out.print("hello: method2631");
}
public void method2632() {
System.out.print("hello: method2632");
}
public void method2633() {
System.out.print("hello: method2633");
}
public void method2634() {
System.out.print("hello: method2634");
}
public void method2635() {
System.out.print("hello: method2635");
}
public void method2636() {
System.out.print("hello: method2636");
}
public void method2637() {
System.out.print("hello: method2637");
}
public void method2638() {
System.out.print("hello: method2638");
}
public void method2639() {
System.out.print("hello: method2639");
}
public void method2640() {
System.out.print("hello: method2640");
}
public void method2641() {
System.out.print("hello: method2641");
}
public void method2642() {
System.out.print("hello: method2642");
}
public void method2643() {
System.out.print("hello: method2643");
}
public void method2644() {
System.out.print("hello: method2644");
}
public void method2645() {
System.out.print("hello: method2645");
}
public void method2646() {
System.out.print("hello: method2646");
}
public void method2647() {
System.out.print("hello: method2647");
}
public void method2648() {
System.out.print("hello: method2648");
}
public void method2649() {
System.out.print("hello: method2649");
}
public void method2650() {
System.out.print("hello: method2650");
}
public void method2651() {
System.out.print("hello: method2651");
}
public void method2652() {
System.out.print("hello: method2652");
}
public void method2653() {
System.out.print("hello: method2653");
}
public void method2654() {
System.out.print("hello: method2654");
}
public void method2655() {
System.out.print("hello: method2655");
}
public void method2656() {
System.out.print("hello: method2656");
}
public void method2657() {
System.out.print("hello: method2657");
}
public void method2658() {
System.out.print("hello: method2658");
}
public void method2659() {
System.out.print("hello: method2659");
}
public void method2660() {
System.out.print("hello: method2660");
}
public void method2661() {
System.out.print("hello: method2661");
}
public void method2662() {
System.out.print("hello: method2662");
}
public void method2663() {
System.out.print("hello: method2663");
}
public void method2664() {
System.out.print("hello: method2664");
}
public void method2665() {
System.out.print("hello: method2665");
}
public void method2666() {
System.out.print("hello: method2666");
}
public void method2667() {
System.out.print("hello: method2667");
}
public void method2668() {
System.out.print("hello: method2668");
}
public void method2669() {
System.out.print("hello: method2669");
}
public void method2670() {
System.out.print("hello: method2670");
}
public void method2671() {
System.out.print("hello: method2671");
}
public void method2672() {
System.out.print("hello: method2672");
}
public void method2673() {
System.out.print("hello: method2673");
}
public void method2674() {
System.out.print("hello: method2674");
}
public void method2675() {
System.out.print("hello: method2675");
}
public void method2676() {
System.out.print("hello: method2676");
}
public void method2677() {
System.out.print("hello: method2677");
}
public void method2678() {
System.out.print("hello: method2678");
}
public void method2679() {
System.out.print("hello: method2679");
}
public void method2680() {
System.out.print("hello: method2680");
}
public void method2681() {
System.out.print("hello: method2681");
}
public void method2682() {
System.out.print("hello: method2682");
}
public void method2683() {
System.out.print("hello: method2683");
}
public void method2684() {
System.out.print("hello: method2684");
}
public void method2685() {
System.out.print("hello: method2685");
}
public void method2686() {
System.out.print("hello: method2686");
}
public void method2687() {
System.out.print("hello: method2687");
}
public void method2688() {
System.out.print("hello: method2688");
}
public void method2689() {
System.out.print("hello: method2689");
}
public void method2690() {
System.out.print("hello: method2690");
}
public void method2691() {
System.out.print("hello: method2691");
}
public void method2692() {
System.out.print("hello: method2692");
}
public void method2693() {
System.out.print("hello: method2693");
}
public void method2694() {
System.out.print("hello: method2694");
}
public void method2695() {
System.out.print("hello: method2695");
}
public void method2696() {
System.out.print("hello: method2696");
}
public void method2697() {
System.out.print("hello: method2697");
}
public void method2698() {
System.out.print("hello: method2698");
}
public void method2699() {
System.out.print("hello: method2699");
}
public void method2700() {
System.out.print("hello: method2700");
}
public void method2701() {
System.out.print("hello: method2701");
}
public void method2702() {
System.out.print("hello: method2702");
}
public void method2703() {
System.out.print("hello: method2703");
}
public void method2704() {
System.out.print("hello: method2704");
}
public void method2705() {
System.out.print("hello: method2705");
}
public void method2706() {
System.out.print("hello: method2706");
}
public void method2707() {
System.out.print("hello: method2707");
}
public void method2708() {
System.out.print("hello: method2708");
}
public void method2709() {
System.out.print("hello: method2709");
}
public void method2710() {
System.out.print("hello: method2710");
}
public void method2711() {
System.out.print("hello: method2711");
}
public void method2712() {
System.out.print("hello: method2712");
}
public void method2713() {
System.out.print("hello: method2713");
}
public void method2714() {
System.out.print("hello: method2714");
}
public void method2715() {
System.out.print("hello: method2715");
}
public void method2716() {
System.out.print("hello: method2716");
}
public void method2717() {
System.out.print("hello: method2717");
}
public void method2718() {
System.out.print("hello: method2718");
}
public void method2719() {
System.out.print("hello: method2719");
}
public void method2720() {
System.out.print("hello: method2720");
}
public void method2721() {
System.out.print("hello: method2721");
}
public void method2722() {
System.out.print("hello: method2722");
}
public void method2723() {
System.out.print("hello: method2723");
}
public void method2724() {
System.out.print("hello: method2724");
}
public void method2725() {
System.out.print("hello: method2725");
}
public void method2726() {
System.out.print("hello: method2726");
}
public void method2727() {
System.out.print("hello: method2727");
}
public void method2728() {
System.out.print("hello: method2728");
}
public void method2729() {
System.out.print("hello: method2729");
}
public void method2730() {
System.out.print("hello: method2730");
}
public void method2731() {
System.out.print("hello: method2731");
}
public void method2732() {
System.out.print("hello: method2732");
}
public void method2733() {
System.out.print("hello: method2733");
}
public void method2734() {
System.out.print("hello: method2734");
}
public void method2735() {
System.out.print("hello: method2735");
}
public void method2736() {
System.out.print("hello: method2736");
}
public void method2737() {
System.out.print("hello: method2737");
}
public void method2738() {
System.out.print("hello: method2738");
}
public void method2739() {
System.out.print("hello: method2739");
}
public void method2740() {
System.out.print("hello: method2740");
}
public void method2741() {
System.out.print("hello: method2741");
}
public void method2742() {
System.out.print("hello: method2742");
}
public void method2743() {
System.out.print("hello: method2743");
}
public void method2744() {
System.out.print("hello: method2744");
}
public void method2745() {
System.out.print("hello: method2745");
}
public void method2746() {
System.out.print("hello: method2746");
}
public void method2747() {
System.out.print("hello: method2747");
}
public void method2748() {
System.out.print("hello: method2748");
}
public void method2749() {
System.out.print("hello: method2749");
}
public void method2750() {
System.out.print("hello: method2750");
}
public void method2751() {
System.out.print("hello: method2751");
}
public void method2752() {
System.out.print("hello: method2752");
}
public void method2753() {
System.out.print("hello: method2753");
}
public void method2754() {
System.out.print("hello: method2754");
}
public void method2755() {
System.out.print("hello: method2755");
}
public void method2756() {
System.out.print("hello: method2756");
}
public void method2757() {
System.out.print("hello: method2757");
}
public void method2758() {
System.out.print("hello: method2758");
}
public void method2759() {
System.out.print("hello: method2759");
}
public void method2760() {
System.out.print("hello: method2760");
}
public void method2761() {
System.out.print("hello: method2761");
}
public void method2762() {
System.out.print("hello: method2762");
}
public void method2763() {
System.out.print("hello: method2763");
}
public void method2764() {
System.out.print("hello: method2764");
}
public void method2765() {
System.out.print("hello: method2765");
}
public void method2766() {
System.out.print("hello: method2766");
}
public void method2767() {
System.out.print("hello: method2767");
}
public void method2768() {
System.out.print("hello: method2768");
}
public void method2769() {
System.out.print("hello: method2769");
}
public void method2770() {
System.out.print("hello: method2770");
}
public void method2771() {
System.out.print("hello: method2771");
}
public void method2772() {
System.out.print("hello: method2772");
}
public void method2773() {
System.out.print("hello: method2773");
}
public void method2774() {
System.out.print("hello: method2774");
}
public void method2775() {
System.out.print("hello: method2775");
}
public void method2776() {
System.out.print("hello: method2776");
}
public void method2777() {
System.out.print("hello: method2777");
}
public void method2778() {
System.out.print("hello: method2778");
}
public void method2779() {
System.out.print("hello: method2779");
}
public void method2780() {
System.out.print("hello: method2780");
}
public void method2781() {
System.out.print("hello: method2781");
}
public void method2782() {
System.out.print("hello: method2782");
}
public void method2783() {
System.out.print("hello: method2783");
}
public void method2784() {
System.out.print("hello: method2784");
}
public void method2785() {
System.out.print("hello: method2785");
}
public void method2786() {
System.out.print("hello: method2786");
}
public void method2787() {
System.out.print("hello: method2787");
}
public void method2788() {
System.out.print("hello: method2788");
}
public void method2789() {
System.out.print("hello: method2789");
}
public void method2790() {
System.out.print("hello: method2790");
}
public void method2791() {
System.out.print("hello: method2791");
}
public void method2792() {
System.out.print("hello: method2792");
}
public void method2793() {
System.out.print("hello: method2793");
}
public void method2794() {
System.out.print("hello: method2794");
}
public void method2795() {
System.out.print("hello: method2795");
}
public void method2796() {
System.out.print("hello: method2796");
}
public void method2797() {
System.out.print("hello: method2797");
}
public void method2798() {
System.out.print("hello: method2798");
}
public void method2799() {
System.out.print("hello: method2799");
}
public void method2800() {
System.out.print("hello: method2800");
}
public void method2801() {
System.out.print("hello: method2801");
}
public void method2802() {
System.out.print("hello: method2802");
}
public void method2803() {
System.out.print("hello: method2803");
}
public void method2804() {
System.out.print("hello: method2804");
}
public void method2805() {
System.out.print("hello: method2805");
}
public void method2806() {
System.out.print("hello: method2806");
}
public void method2807() {
System.out.print("hello: method2807");
}
public void method2808() {
System.out.print("hello: method2808");
}
public void method2809() {
System.out.print("hello: method2809");
}
public void method2810() {
System.out.print("hello: method2810");
}
public void method2811() {
System.out.print("hello: method2811");
}
public void method2812() {
System.out.print("hello: method2812");
}
public void method2813() {
System.out.print("hello: method2813");
}
public void method2814() {
System.out.print("hello: method2814");
}
public void method2815() {
System.out.print("hello: method2815");
}
public void method2816() {
System.out.print("hello: method2816");
}
public void method2817() {
System.out.print("hello: method2817");
}
public void method2818() {
System.out.print("hello: method2818");
}
public void method2819() {
System.out.print("hello: method2819");
}
public void method2820() {
System.out.print("hello: method2820");
}
public void method2821() {
System.out.print("hello: method2821");
}
public void method2822() {
System.out.print("hello: method2822");
}
public void method2823() {
System.out.print("hello: method2823");
}
public void method2824() {
System.out.print("hello: method2824");
}
public void method2825() {
System.out.print("hello: method2825");
}
public void method2826() {
System.out.print("hello: method2826");
}
public void method2827() {
System.out.print("hello: method2827");
}
public void method2828() {
System.out.print("hello: method2828");
}
public void method2829() {
System.out.print("hello: method2829");
}
public void method2830() {
System.out.print("hello: method2830");
}
public void method2831() {
System.out.print("hello: method2831");
}
public void method2832() {
System.out.print("hello: method2832");
}
public void method2833() {
System.out.print("hello: method2833");
}
public void method2834() {
System.out.print("hello: method2834");
}
public void method2835() {
System.out.print("hello: method2835");
}
public void method2836() {
System.out.print("hello: method2836");
}
public void method2837() {
System.out.print("hello: method2837");
}
public void method2838() {
System.out.print("hello: method2838");
}
public void method2839() {
System.out.print("hello: method2839");
}
public void method2840() {
System.out.print("hello: method2840");
}
public void method2841() {
System.out.print("hello: method2841");
}
public void method2842() {
System.out.print("hello: method2842");
}
public void method2843() {
System.out.print("hello: method2843");
}
public void method2844() {
System.out.print("hello: method2844");
}
public void method2845() {
System.out.print("hello: method2845");
}
public void method2846() {
System.out.print("hello: method2846");
}
public void method2847() {
System.out.print("hello: method2847");
}
public void method2848() {
System.out.print("hello: method2848");
}
public void method2849() {
System.out.print("hello: method2849");
}
public void method2850() {
System.out.print("hello: method2850");
}
public void method2851() {
System.out.print("hello: method2851");
}
public void method2852() {
System.out.print("hello: method2852");
}
public void method2853() {
System.out.print("hello: method2853");
}
public void method2854() {
System.out.print("hello: method2854");
}
public void method2855() {
System.out.print("hello: method2855");
}
public void method2856() {
System.out.print("hello: method2856");
}
public void method2857() {
System.out.print("hello: method2857");
}
public void method2858() {
System.out.print("hello: method2858");
}
public void method2859() {
System.out.print("hello: method2859");
}
public void method2860() {
System.out.print("hello: method2860");
}
public void method2861() {
System.out.print("hello: method2861");
}
public void method2862() {
System.out.print("hello: method2862");
}
public void method2863() {
System.out.print("hello: method2863");
}
public void method2864() {
System.out.print("hello: method2864");
}
public void method2865() {
System.out.print("hello: method2865");
}
public void method2866() {
System.out.print("hello: method2866");
}
public void method2867() {
System.out.print("hello: method2867");
}
public void method2868() {
System.out.print("hello: method2868");
}
public void method2869() {
System.out.print("hello: method2869");
}
public void method2870() {
System.out.print("hello: method2870");
}
public void method2871() {
System.out.print("hello: method2871");
}
public void method2872() {
System.out.print("hello: method2872");
}
public void method2873() {
System.out.print("hello: method2873");
}
public void method2874() {
System.out.print("hello: method2874");
}
public void method2875() {
System.out.print("hello: method2875");
}
public void method2876() {
System.out.print("hello: method2876");
}
public void method2877() {
System.out.print("hello: method2877");
}
public void method2878() {
System.out.print("hello: method2878");
}
public void method2879() {
System.out.print("hello: method2879");
}
public void method2880() {
System.out.print("hello: method2880");
}
public void method2881() {
System.out.print("hello: method2881");
}
public void method2882() {
System.out.print("hello: method2882");
}
public void method2883() {
System.out.print("hello: method2883");
}
public void method2884() {
System.out.print("hello: method2884");
}
public void method2885() {
System.out.print("hello: method2885");
}
public void method2886() {
System.out.print("hello: method2886");
}
public void method2887() {
System.out.print("hello: method2887");
}
public void method2888() {
System.out.print("hello: method2888");
}
public void method2889() {
System.out.print("hello: method2889");
}
public void method2890() {
System.out.print("hello: method2890");
}
public void method2891() {
System.out.print("hello: method2891");
}
public void method2892() {
System.out.print("hello: method2892");
}
public void method2893() {
System.out.print("hello: method2893");
}
public void method2894() {
System.out.print("hello: method2894");
}
public void method2895() {
System.out.print("hello: method2895");
}
public void method2896() {
System.out.print("hello: method2896");
}
public void method2897() {
System.out.print("hello: method2897");
}
public void method2898() {
System.out.print("hello: method2898");
}
public void method2899() {
System.out.print("hello: method2899");
}
public void method2900() {
System.out.print("hello: method2900");
}
public void method2901() {
System.out.print("hello: method2901");
}
public void method2902() {
System.out.print("hello: method2902");
}
public void method2903() {
System.out.print("hello: method2903");
}
public void method2904() {
System.out.print("hello: method2904");
}
public void method2905() {
System.out.print("hello: method2905");
}
public void method2906() {
System.out.print("hello: method2906");
}
public void method2907() {
System.out.print("hello: method2907");
}
public void method2908() {
System.out.print("hello: method2908");
}
public void method2909() {
System.out.print("hello: method2909");
}
public void method2910() {
System.out.print("hello: method2910");
}
public void method2911() {
System.out.print("hello: method2911");
}
public void method2912() {
System.out.print("hello: method2912");
}
public void method2913() {
System.out.print("hello: method2913");
}
public void method2914() {
System.out.print("hello: method2914");
}
public void method2915() {
System.out.print("hello: method2915");
}
public void method2916() {
System.out.print("hello: method2916");
}
public void method2917() {
System.out.print("hello: method2917");
}
public void method2918() {
System.out.print("hello: method2918");
}
public void method2919() {
System.out.print("hello: method2919");
}
public void method2920() {
System.out.print("hello: method2920");
}
public void method2921() {
System.out.print("hello: method2921");
}
public void method2922() {
System.out.print("hello: method2922");
}
public void method2923() {
System.out.print("hello: method2923");
}
public void method2924() {
System.out.print("hello: method2924");
}
public void method2925() {
System.out.print("hello: method2925");
}
public void method2926() {
System.out.print("hello: method2926");
}
public void method2927() {
System.out.print("hello: method2927");
}
public void method2928() {
System.out.print("hello: method2928");
}
public void method2929() {
System.out.print("hello: method2929");
}
public void method2930() {
System.out.print("hello: method2930");
}
public void method2931() {
System.out.print("hello: method2931");
}
public void method2932() {
System.out.print("hello: method2932");
}
public void method2933() {
System.out.print("hello: method2933");
}
public void method2934() {
System.out.print("hello: method2934");
}
public void method2935() {
System.out.print("hello: method2935");
}
public void method2936() {
System.out.print("hello: method2936");
}
public void method2937() {
System.out.print("hello: method2937");
}
public void method2938() {
System.out.print("hello: method2938");
}
public void method2939() {
System.out.print("hello: method2939");
}
public void method2940() {
System.out.print("hello: method2940");
}
public void method2941() {
System.out.print("hello: method2941");
}
public void method2942() {
System.out.print("hello: method2942");
}
public void method2943() {
System.out.print("hello: method2943");
}
public void method2944() {
System.out.print("hello: method2944");
}
public void method2945() {
System.out.print("hello: method2945");
}
public void method2946() {
System.out.print("hello: method2946");
}
public void method2947() {
System.out.print("hello: method2947");
}
public void method2948() {
System.out.print("hello: method2948");
}
public void method2949() {
System.out.print("hello: method2949");
}
public void method2950() {
System.out.print("hello: method2950");
}
public void method2951() {
System.out.print("hello: method2951");
}
public void method2952() {
System.out.print("hello: method2952");
}
public void method2953() {
System.out.print("hello: method2953");
}
public void method2954() {
System.out.print("hello: method2954");
}
public void method2955() {
System.out.print("hello: method2955");
}
public void method2956() {
System.out.print("hello: method2956");
}
public void method2957() {
System.out.print("hello: method2957");
}
public void method2958() {
System.out.print("hello: method2958");
}
public void method2959() {
System.out.print("hello: method2959");
}
public void method2960() {
System.out.print("hello: method2960");
}
public void method2961() {
System.out.print("hello: method2961");
}
public void method2962() {
System.out.print("hello: method2962");
}
public void method2963() {
System.out.print("hello: method2963");
}
public void method2964() {
System.out.print("hello: method2964");
}
public void method2965() {
System.out.print("hello: method2965");
}
public void method2966() {
System.out.print("hello: method2966");
}
public void method2967() {
System.out.print("hello: method2967");
}
public void method2968() {
System.out.print("hello: method2968");
}
public void method2969() {
System.out.print("hello: method2969");
}
public void method2970() {
System.out.print("hello: method2970");
}
public void method2971() {
System.out.print("hello: method2971");
}
public void method2972() {
System.out.print("hello: method2972");
}
public void method2973() {
System.out.print("hello: method2973");
}
public void method2974() {
System.out.print("hello: method2974");
}
public void method2975() {
System.out.print("hello: method2975");
}
public void method2976() {
System.out.print("hello: method2976");
}
public void method2977() {
System.out.print("hello: method2977");
}
public void method2978() {
System.out.print("hello: method2978");
}
public void method2979() {
System.out.print("hello: method2979");
}
public void method2980() {
System.out.print("hello: method2980");
}
public void method2981() {
System.out.print("hello: method2981");
}
public void method2982() {
System.out.print("hello: method2982");
}
public void method2983() {
System.out.print("hello: method2983");
}
public void method2984() {
System.out.print("hello: method2984");
}
public void method2985() {
System.out.print("hello: method2985");
}
public void method2986() {
System.out.print("hello: method2986");
}
public void method2987() {
System.out.print("hello: method2987");
}
public void method2988() {
System.out.print("hello: method2988");
}
public void method2989() {
System.out.print("hello: method2989");
}
public void method2990() {
System.out.print("hello: method2990");
}
public void method2991() {
System.out.print("hello: method2991");
}
public void method2992() {
System.out.print("hello: method2992");
}
public void method2993() {
System.out.print("hello: method2993");
}
public void method2994() {
System.out.print("hello: method2994");
}
public void method2995() {
System.out.print("hello: method2995");
}
public void method2996() {
System.out.print("hello: method2996");
}
public void method2997() {
System.out.print("hello: method2997");
}
public void method2998() {
System.out.print("hello: method2998");
}
public void method2999() {
System.out.print("hello: method2999");
}
public void method3000() {
System.out.print("hello: method3000");
}
public void method3001() {
System.out.print("hello: method3001");
}
public void method3002() {
System.out.print("hello: method3002");
}
public void method3003() {
System.out.print("hello: method3003");
}
public void method3004() {
System.out.print("hello: method3004");
}
public void method3005() {
System.out.print("hello: method3005");
}
public void method3006() {
System.out.print("hello: method3006");
}
public void method3007() {
System.out.print("hello: method3007");
}
public void method3008() {
System.out.print("hello: method3008");
}
public void method3009() {
System.out.print("hello: method3009");
}
public void method3010() {
System.out.print("hello: method3010");
}
public void method3011() {
System.out.print("hello: method3011");
}
public void method3012() {
System.out.print("hello: method3012");
}
public void method3013() {
System.out.print("hello: method3013");
}
public void method3014() {
System.out.print("hello: method3014");
}
public void method3015() {
System.out.print("hello: method3015");
}
public void method3016() {
System.out.print("hello: method3016");
}
public void method3017() {
System.out.print("hello: method3017");
}
public void method3018() {
System.out.print("hello: method3018");
}
public void method3019() {
System.out.print("hello: method3019");
}
public void method3020() {
System.out.print("hello: method3020");
}
public void method3021() {
System.out.print("hello: method3021");
}
public void method3022() {
System.out.print("hello: method3022");
}
public void method3023() {
System.out.print("hello: method3023");
}
public void method3024() {
System.out.print("hello: method3024");
}
public void method3025() {
System.out.print("hello: method3025");
}
public void method3026() {
System.out.print("hello: method3026");
}
public void method3027() {
System.out.print("hello: method3027");
}
public void method3028() {
System.out.print("hello: method3028");
}
public void method3029() {
System.out.print("hello: method3029");
}
public void method3030() {
System.out.print("hello: method3030");
}
public void method3031() {
System.out.print("hello: method3031");
}
public void method3032() {
System.out.print("hello: method3032");
}
public void method3033() {
System.out.print("hello: method3033");
}
public void method3034() {
System.out.print("hello: method3034");
}
public void method3035() {
System.out.print("hello: method3035");
}
public void method3036() {
System.out.print("hello: method3036");
}
public void method3037() {
System.out.print("hello: method3037");
}
public void method3038() {
System.out.print("hello: method3038");
}
public void method3039() {
System.out.print("hello: method3039");
}
public void method3040() {
System.out.print("hello: method3040");
}
public void method3041() {
System.out.print("hello: method3041");
}
public void method3042() {
System.out.print("hello: method3042");
}
public void method3043() {
System.out.print("hello: method3043");
}
public void method3044() {
System.out.print("hello: method3044");
}
public void method3045() {
System.out.print("hello: method3045");
}
public void method3046() {
System.out.print("hello: method3046");
}
public void method3047() {
System.out.print("hello: method3047");
}
public void method3048() {
System.out.print("hello: method3048");
}
public void method3049() {
System.out.print("hello: method3049");
}
public void method3050() {
System.out.print("hello: method3050");
}
public void method3051() {
System.out.print("hello: method3051");
}
public void method3052() {
System.out.print("hello: method3052");
}
public void method3053() {
System.out.print("hello: method3053");
}
public void method3054() {
System.out.print("hello: method3054");
}
public void method3055() {
System.out.print("hello: method3055");
}
public void method3056() {
System.out.print("hello: method3056");
}
public void method3057() {
System.out.print("hello: method3057");
}
public void method3058() {
System.out.print("hello: method3058");
}
public void method3059() {
System.out.print("hello: method3059");
}
public void method3060() {
System.out.print("hello: method3060");
}
public void method3061() {
System.out.print("hello: method3061");
}
public void method3062() {
System.out.print("hello: method3062");
}
public void method3063() {
System.out.print("hello: method3063");
}
public void method3064() {
System.out.print("hello: method3064");
}
public void method3065() {
System.out.print("hello: method3065");
}
public void method3066() {
System.out.print("hello: method3066");
}
public void method3067() {
System.out.print("hello: method3067");
}
public void method3068() {
System.out.print("hello: method3068");
}
public void method3069() {
System.out.print("hello: method3069");
}
public void method3070() {
System.out.print("hello: method3070");
}
public void method3071() {
System.out.print("hello: method3071");
}
public void method3072() {
System.out.print("hello: method3072");
}
public void method3073() {
System.out.print("hello: method3073");
}
public void method3074() {
System.out.print("hello: method3074");
}
public void method3075() {
System.out.print("hello: method3075");
}
public void method3076() {
System.out.print("hello: method3076");
}
public void method3077() {
System.out.print("hello: method3077");
}
public void method3078() {
System.out.print("hello: method3078");
}
public void method3079() {
System.out.print("hello: method3079");
}
public void method3080() {
System.out.print("hello: method3080");
}
public void method3081() {
System.out.print("hello: method3081");
}
public void method3082() {
System.out.print("hello: method3082");
}
public void method3083() {
System.out.print("hello: method3083");
}
public void method3084() {
System.out.print("hello: method3084");
}
public void method3085() {
System.out.print("hello: method3085");
}
public void method3086() {
System.out.print("hello: method3086");
}
public void method3087() {
System.out.print("hello: method3087");
}
public void method3088() {
System.out.print("hello: method3088");
}
public void method3089() {
System.out.print("hello: method3089");
}
public void method3090() {
System.out.print("hello: method3090");
}
public void method3091() {
System.out.print("hello: method3091");
}
public void method3092() {
System.out.print("hello: method3092");
}
public void method3093() {
System.out.print("hello: method3093");
}
public void method3094() {
System.out.print("hello: method3094");
}
public void method3095() {
System.out.print("hello: method3095");
}
public void method3096() {
System.out.print("hello: method3096");
}
public void method3097() {
System.out.print("hello: method3097");
}
public void method3098() {
System.out.print("hello: method3098");
}
public void method3099() {
System.out.print("hello: method3099");
}
public void method3100() {
System.out.print("hello: method3100");
}
public void method3101() {
System.out.print("hello: method3101");
}
public void method3102() {
System.out.print("hello: method3102");
}
public void method3103() {
System.out.print("hello: method3103");
}
public void method3104() {
System.out.print("hello: method3104");
}
public void method3105() {
System.out.print("hello: method3105");
}
public void method3106() {
System.out.print("hello: method3106");
}
public void method3107() {
System.out.print("hello: method3107");
}
public void method3108() {
System.out.print("hello: method3108");
}
public void method3109() {
System.out.print("hello: method3109");
}
public void method3110() {
System.out.print("hello: method3110");
}
public void method3111() {
System.out.print("hello: method3111");
}
public void method3112() {
System.out.print("hello: method3112");
}
public void method3113() {
System.out.print("hello: method3113");
}
public void method3114() {
System.out.print("hello: method3114");
}
public void method3115() {
System.out.print("hello: method3115");
}
public void method3116() {
System.out.print("hello: method3116");
}
public void method3117() {
System.out.print("hello: method3117");
}
public void method3118() {
System.out.print("hello: method3118");
}
public void method3119() {
System.out.print("hello: method3119");
}
public void method3120() {
System.out.print("hello: method3120");
}
public void method3121() {
System.out.print("hello: method3121");
}
public void method3122() {
System.out.print("hello: method3122");
}
public void method3123() {
System.out.print("hello: method3123");
}
public void method3124() {
System.out.print("hello: method3124");
}
public void method3125() {
System.out.print("hello: method3125");
}
public void method3126() {
System.out.print("hello: method3126");
}
public void method3127() {
System.out.print("hello: method3127");
}
public void method3128() {
System.out.print("hello: method3128");
}
public void method3129() {
System.out.print("hello: method3129");
}
public void method3130() {
System.out.print("hello: method3130");
}
public void method3131() {
System.out.print("hello: method3131");
}
public void method3132() {
System.out.print("hello: method3132");
}
public void method3133() {
System.out.print("hello: method3133");
}
public void method3134() {
System.out.print("hello: method3134");
}
public void method3135() {
System.out.print("hello: method3135");
}
public void method3136() {
System.out.print("hello: method3136");
}
public void method3137() {
System.out.print("hello: method3137");
}
public void method3138() {
System.out.print("hello: method3138");
}
public void method3139() {
System.out.print("hello: method3139");
}
public void method3140() {
System.out.print("hello: method3140");
}
public void method3141() {
System.out.print("hello: method3141");
}
public void method3142() {
System.out.print("hello: method3142");
}
public void method3143() {
System.out.print("hello: method3143");
}
public void method3144() {
System.out.print("hello: method3144");
}
public void method3145() {
System.out.print("hello: method3145");
}
public void method3146() {
System.out.print("hello: method3146");
}
public void method3147() {
System.out.print("hello: method3147");
}
public void method3148() {
System.out.print("hello: method3148");
}
public void method3149() {
System.out.print("hello: method3149");
}
public void method3150() {
System.out.print("hello: method3150");
}
public void method3151() {
System.out.print("hello: method3151");
}
public void method3152() {
System.out.print("hello: method3152");
}
public void method3153() {
System.out.print("hello: method3153");
}
public void method3154() {
System.out.print("hello: method3154");
}
public void method3155() {
System.out.print("hello: method3155");
}
public void method3156() {
System.out.print("hello: method3156");
}
public void method3157() {
System.out.print("hello: method3157");
}
public void method3158() {
System.out.print("hello: method3158");
}
public void method3159() {
System.out.print("hello: method3159");
}
public void method3160() {
System.out.print("hello: method3160");
}
public void method3161() {
System.out.print("hello: method3161");
}
public void method3162() {
System.out.print("hello: method3162");
}
public void method3163() {
System.out.print("hello: method3163");
}
public void method3164() {
System.out.print("hello: method3164");
}
public void method3165() {
System.out.print("hello: method3165");
}
public void method3166() {
System.out.print("hello: method3166");
}
public void method3167() {
System.out.print("hello: method3167");
}
public void method3168() {
System.out.print("hello: method3168");
}
public void method3169() {
System.out.print("hello: method3169");
}
public void method3170() {
System.out.print("hello: method3170");
}
public void method3171() {
System.out.print("hello: method3171");
}
public void method3172() {
System.out.print("hello: method3172");
}
public void method3173() {
System.out.print("hello: method3173");
}
public void method3174() {
System.out.print("hello: method3174");
}
public void method3175() {
System.out.print("hello: method3175");
}
public void method3176() {
System.out.print("hello: method3176");
}
public void method3177() {
System.out.print("hello: method3177");
}
public void method3178() {
System.out.print("hello: method3178");
}
public void method3179() {
System.out.print("hello: method3179");
}
public void method3180() {
System.out.print("hello: method3180");
}
public void method3181() {
System.out.print("hello: method3181");
}
public void method3182() {
System.out.print("hello: method3182");
}
public void method3183() {
System.out.print("hello: method3183");
}
public void method3184() {
System.out.print("hello: method3184");
}
public void method3185() {
System.out.print("hello: method3185");
}
public void method3186() {
System.out.print("hello: method3186");
}
public void method3187() {
System.out.print("hello: method3187");
}
public void method3188() {
System.out.print("hello: method3188");
}
public void method3189() {
System.out.print("hello: method3189");
}
public void method3190() {
System.out.print("hello: method3190");
}
public void method3191() {
System.out.print("hello: method3191");
}
public void method3192() {
System.out.print("hello: method3192");
}
public void method3193() {
System.out.print("hello: method3193");
}
public void method3194() {
System.out.print("hello: method3194");
}
public void method3195() {
System.out.print("hello: method3195");
}
public void method3196() {
System.out.print("hello: method3196");
}
public void method3197() {
System.out.print("hello: method3197");
}
public void method3198() {
System.out.print("hello: method3198");
}
public void method3199() {
System.out.print("hello: method3199");
}
public void method3200() {
System.out.print("hello: method3200");
}
public void method3201() {
System.out.print("hello: method3201");
}
public void method3202() {
System.out.print("hello: method3202");
}
public void method3203() {
System.out.print("hello: method3203");
}
public void method3204() {
System.out.print("hello: method3204");
}
public void method3205() {
System.out.print("hello: method3205");
}
public void method3206() {
System.out.print("hello: method3206");
}
public void method3207() {
System.out.print("hello: method3207");
}
public void method3208() {
System.out.print("hello: method3208");
}
public void method3209() {
System.out.print("hello: method3209");
}
public void method3210() {
System.out.print("hello: method3210");
}
public void method3211() {
System.out.print("hello: method3211");
}
public void method3212() {
System.out.print("hello: method3212");
}
public void method3213() {
System.out.print("hello: method3213");
}
public void method3214() {
System.out.print("hello: method3214");
}
public void method3215() {
System.out.print("hello: method3215");
}
public void method3216() {
System.out.print("hello: method3216");
}
public void method3217() {
System.out.print("hello: method3217");
}
public void method3218() {
System.out.print("hello: method3218");
}
public void method3219() {
System.out.print("hello: method3219");
}
public void method3220() {
System.out.print("hello: method3220");
}
public void method3221() {
System.out.print("hello: method3221");
}
public void method3222() {
System.out.print("hello: method3222");
}
public void method3223() {
System.out.print("hello: method3223");
}
public void method3224() {
System.out.print("hello: method3224");
}
public void method3225() {
System.out.print("hello: method3225");
}
public void method3226() {
System.out.print("hello: method3226");
}
public void method3227() {
System.out.print("hello: method3227");
}
public void method3228() {
System.out.print("hello: method3228");
}
public void method3229() {
System.out.print("hello: method3229");
}
public void method3230() {
System.out.print("hello: method3230");
}
public void method3231() {
System.out.print("hello: method3231");
}
public void method3232() {
System.out.print("hello: method3232");
}
public void method3233() {
System.out.print("hello: method3233");
}
public void method3234() {
System.out.print("hello: method3234");
}
public void method3235() {
System.out.print("hello: method3235");
}
public void method3236() {
System.out.print("hello: method3236");
}
public void method3237() {
System.out.print("hello: method3237");
}
public void method3238() {
System.out.print("hello: method3238");
}
public void method3239() {
System.out.print("hello: method3239");
}
public void method3240() {
System.out.print("hello: method3240");
}
public void method3241() {
System.out.print("hello: method3241");
}
public void method3242() {
System.out.print("hello: method3242");
}
public void method3243() {
System.out.print("hello: method3243");
}
public void method3244() {
System.out.print("hello: method3244");
}
public void method3245() {
System.out.print("hello: method3245");
}
public void method3246() {
System.out.print("hello: method3246");
}
public void method3247() {
System.out.print("hello: method3247");
}
public void method3248() {
System.out.print("hello: method3248");
}
public void method3249() {
System.out.print("hello: method3249");
}
public void method3250() {
System.out.print("hello: method3250");
}
public void method3251() {
System.out.print("hello: method3251");
}
public void method3252() {
System.out.print("hello: method3252");
}
public void method3253() {
System.out.print("hello: method3253");
}
public void method3254() {
System.out.print("hello: method3254");
}
public void method3255() {
System.out.print("hello: method3255");
}
public void method3256() {
System.out.print("hello: method3256");
}
public void method3257() {
System.out.print("hello: method3257");
}
public void method3258() {
System.out.print("hello: method3258");
}
public void method3259() {
System.out.print("hello: method3259");
}
public void method3260() {
System.out.print("hello: method3260");
}
public void method3261() {
System.out.print("hello: method3261");
}
public void method3262() {
System.out.print("hello: method3262");
}
public void method3263() {
System.out.print("hello: method3263");
}
public void method3264() {
System.out.print("hello: method3264");
}
public void method3265() {
System.out.print("hello: method3265");
}
public void method3266() {
System.out.print("hello: method3266");
}
public void method3267() {
System.out.print("hello: method3267");
}
public void method3268() {
System.out.print("hello: method3268");
}
public void method3269() {
System.out.print("hello: method3269");
}
public void method3270() {
System.out.print("hello: method3270");
}
public void method3271() {
System.out.print("hello: method3271");
}
public void method3272() {
System.out.print("hello: method3272");
}
public void method3273() {
System.out.print("hello: method3273");
}
public void method3274() {
System.out.print("hello: method3274");
}
public void method3275() {
System.out.print("hello: method3275");
}
public void method3276() {
System.out.print("hello: method3276");
}
public void method3277() {
System.out.print("hello: method3277");
}
public void method3278() {
System.out.print("hello: method3278");
}
public void method3279() {
System.out.print("hello: method3279");
}
public void method3280() {
System.out.print("hello: method3280");
}
public void method3281() {
System.out.print("hello: method3281");
}
public void method3282() {
System.out.print("hello: method3282");
}
public void method3283() {
System.out.print("hello: method3283");
}
public void method3284() {
System.out.print("hello: method3284");
}
public void method3285() {
System.out.print("hello: method3285");
}
public void method3286() {
System.out.print("hello: method3286");
}
public void method3287() {
System.out.print("hello: method3287");
}
public void method3288() {
System.out.print("hello: method3288");
}
public void method3289() {
System.out.print("hello: method3289");
}
public void method3290() {
System.out.print("hello: method3290");
}
public void method3291() {
System.out.print("hello: method3291");
}
public void method3292() {
System.out.print("hello: method3292");
}
public void method3293() {
System.out.print("hello: method3293");
}
public void method3294() {
System.out.print("hello: method3294");
}
public void method3295() {
System.out.print("hello: method3295");
}
public void method3296() {
System.out.print("hello: method3296");
}
public void method3297() {
System.out.print("hello: method3297");
}
public void method3298() {
System.out.print("hello: method3298");
}
public void method3299() {
System.out.print("hello: method3299");
}
public void method3300() {
System.out.print("hello: method3300");
}
public void method3301() {
System.out.print("hello: method3301");
}
public void method3302() {
System.out.print("hello: method3302");
}
public void method3303() {
System.out.print("hello: method3303");
}
public void method3304() {
System.out.print("hello: method3304");
}
public void method3305() {
System.out.print("hello: method3305");
}
public void method3306() {
System.out.print("hello: method3306");
}
public void method3307() {
System.out.print("hello: method3307");
}
public void method3308() {
System.out.print("hello: method3308");
}
public void method3309() {
System.out.print("hello: method3309");
}
public void method3310() {
System.out.print("hello: method3310");
}
public void method3311() {
System.out.print("hello: method3311");
}
public void method3312() {
System.out.print("hello: method3312");
}
public void method3313() {
System.out.print("hello: method3313");
}
public void method3314() {
System.out.print("hello: method3314");
}
public void method3315() {
System.out.print("hello: method3315");
}
public void method3316() {
System.out.print("hello: method3316");
}
public void method3317() {
System.out.print("hello: method3317");
}
public void method3318() {
System.out.print("hello: method3318");
}
public void method3319() {
System.out.print("hello: method3319");
}
public void method3320() {
System.out.print("hello: method3320");
}
public void method3321() {
System.out.print("hello: method3321");
}
public void method3322() {
System.out.print("hello: method3322");
}
public void method3323() {
System.out.print("hello: method3323");
}
public void method3324() {
System.out.print("hello: method3324");
}
public void method3325() {
System.out.print("hello: method3325");
}
public void method3326() {
System.out.print("hello: method3326");
}
public void method3327() {
System.out.print("hello: method3327");
}
public void method3328() {
System.out.print("hello: method3328");
}
public void method3329() {
System.out.print("hello: method3329");
}
public void method3330() {
System.out.print("hello: method3330");
}
public void method3331() {
System.out.print("hello: method3331");
}
public void method3332() {
System.out.print("hello: method3332");
}
public void method3333() {
System.out.print("hello: method3333");
}
public void method3334() {
System.out.print("hello: method3334");
}
public void method3335() {
System.out.print("hello: method3335");
}
public void method3336() {
System.out.print("hello: method3336");
}
public void method3337() {
System.out.print("hello: method3337");
}
public void method3338() {
System.out.print("hello: method3338");
}
public void method3339() {
System.out.print("hello: method3339");
}
public void method3340() {
System.out.print("hello: method3340");
}
public void method3341() {
System.out.print("hello: method3341");
}
public void method3342() {
System.out.print("hello: method3342");
}
public void method3343() {
System.out.print("hello: method3343");
}
public void method3344() {
System.out.print("hello: method3344");
}
public void method3345() {
System.out.print("hello: method3345");
}
public void method3346() {
System.out.print("hello: method3346");
}
public void method3347() {
System.out.print("hello: method3347");
}
public void method3348() {
System.out.print("hello: method3348");
}
public void method3349() {
System.out.print("hello: method3349");
}
public void method3350() {
System.out.print("hello: method3350");
}
public void method3351() {
System.out.print("hello: method3351");
}
public void method3352() {
System.out.print("hello: method3352");
}
public void method3353() {
System.out.print("hello: method3353");
}
public void method3354() {
System.out.print("hello: method3354");
}
public void method3355() {
System.out.print("hello: method3355");
}
public void method3356() {
System.out.print("hello: method3356");
}
public void method3357() {
System.out.print("hello: method3357");
}
public void method3358() {
System.out.print("hello: method3358");
}
public void method3359() {
System.out.print("hello: method3359");
}
public void method3360() {
System.out.print("hello: method3360");
}
public void method3361() {
System.out.print("hello: method3361");
}
public void method3362() {
System.out.print("hello: method3362");
}
public void method3363() {
System.out.print("hello: method3363");
}
public void method3364() {
System.out.print("hello: method3364");
}
public void method3365() {
System.out.print("hello: method3365");
}
public void method3366() {
System.out.print("hello: method3366");
}
public void method3367() {
System.out.print("hello: method3367");
}
public void method3368() {
System.out.print("hello: method3368");
}
public void method3369() {
System.out.print("hello: method3369");
}
public void method3370() {
System.out.print("hello: method3370");
}
public void method3371() {
System.out.print("hello: method3371");
}
public void method3372() {
System.out.print("hello: method3372");
}
public void method3373() {
System.out.print("hello: method3373");
}
public void method3374() {
System.out.print("hello: method3374");
}
public void method3375() {
System.out.print("hello: method3375");
}
public void method3376() {
System.out.print("hello: method3376");
}
public void method3377() {
System.out.print("hello: method3377");
}
public void method3378() {
System.out.print("hello: method3378");
}
public void method3379() {
System.out.print("hello: method3379");
}
public void method3380() {
System.out.print("hello: method3380");
}
public void method3381() {
System.out.print("hello: method3381");
}
public void method3382() {
System.out.print("hello: method3382");
}
public void method3383() {
System.out.print("hello: method3383");
}
public void method3384() {
System.out.print("hello: method3384");
}
public void method3385() {
System.out.print("hello: method3385");
}
public void method3386() {
System.out.print("hello: method3386");
}
public void method3387() {
System.out.print("hello: method3387");
}
public void method3388() {
System.out.print("hello: method3388");
}
public void method3389() {
System.out.print("hello: method3389");
}
public void method3390() {
System.out.print("hello: method3390");
}
public void method3391() {
System.out.print("hello: method3391");
}
public void method3392() {
System.out.print("hello: method3392");
}
public void method3393() {
System.out.print("hello: method3393");
}
public void method3394() {
System.out.print("hello: method3394");
}
public void method3395() {
System.out.print("hello: method3395");
}
public void method3396() {
System.out.print("hello: method3396");
}
public void method3397() {
System.out.print("hello: method3397");
}
public void method3398() {
System.out.print("hello: method3398");
}
public void method3399() {
System.out.print("hello: method3399");
}
public void method3400() {
System.out.print("hello: method3400");
}
public void method3401() {
System.out.print("hello: method3401");
}
public void method3402() {
System.out.print("hello: method3402");
}
public void method3403() {
System.out.print("hello: method3403");
}
public void method3404() {
System.out.print("hello: method3404");
}
public void method3405() {
System.out.print("hello: method3405");
}
public void method3406() {
System.out.print("hello: method3406");
}
public void method3407() {
System.out.print("hello: method3407");
}
public void method3408() {
System.out.print("hello: method3408");
}
public void method3409() {
System.out.print("hello: method3409");
}
public void method3410() {
System.out.print("hello: method3410");
}
public void method3411() {
System.out.print("hello: method3411");
}
public void method3412() {
System.out.print("hello: method3412");
}
public void method3413() {
System.out.print("hello: method3413");
}
public void method3414() {
System.out.print("hello: method3414");
}
public void method3415() {
System.out.print("hello: method3415");
}
public void method3416() {
System.out.print("hello: method3416");
}
public void method3417() {
System.out.print("hello: method3417");
}
public void method3418() {
System.out.print("hello: method3418");
}
public void method3419() {
System.out.print("hello: method3419");
}
public void method3420() {
System.out.print("hello: method3420");
}
public void method3421() {
System.out.print("hello: method3421");
}
public void method3422() {
System.out.print("hello: method3422");
}
public void method3423() {
System.out.print("hello: method3423");
}
public void method3424() {
System.out.print("hello: method3424");
}
public void method3425() {
System.out.print("hello: method3425");
}
public void method3426() {
System.out.print("hello: method3426");
}
public void method3427() {
System.out.print("hello: method3427");
}
public void method3428() {
System.out.print("hello: method3428");
}
public void method3429() {
System.out.print("hello: method3429");
}
public void method3430() {
System.out.print("hello: method3430");
}
public void method3431() {
System.out.print("hello: method3431");
}
public void method3432() {
System.out.print("hello: method3432");
}
public void method3433() {
System.out.print("hello: method3433");
}
public void method3434() {
System.out.print("hello: method3434");
}
public void method3435() {
System.out.print("hello: method3435");
}
public void method3436() {
System.out.print("hello: method3436");
}
public void method3437() {
System.out.print("hello: method3437");
}
public void method3438() {
System.out.print("hello: method3438");
}
public void method3439() {
System.out.print("hello: method3439");
}
public void method3440() {
System.out.print("hello: method3440");
}
public void method3441() {
System.out.print("hello: method3441");
}
public void method3442() {
System.out.print("hello: method3442");
}
public void method3443() {
System.out.print("hello: method3443");
}
public void method3444() {
System.out.print("hello: method3444");
}
public void method3445() {
System.out.print("hello: method3445");
}
public void method3446() {
System.out.print("hello: method3446");
}
public void method3447() {
System.out.print("hello: method3447");
}
public void method3448() {
System.out.print("hello: method3448");
}
public void method3449() {
System.out.print("hello: method3449");
}
public void method3450() {
System.out.print("hello: method3450");
}
public void method3451() {
System.out.print("hello: method3451");
}
public void method3452() {
System.out.print("hello: method3452");
}
public void method3453() {
System.out.print("hello: method3453");
}
public void method3454() {
System.out.print("hello: method3454");
}
public void method3455() {
System.out.print("hello: method3455");
}
public void method3456() {
System.out.print("hello: method3456");
}
public void method3457() {
System.out.print("hello: method3457");
}
public void method3458() {
System.out.print("hello: method3458");
}
public void method3459() {
System.out.print("hello: method3459");
}
public void method3460() {
System.out.print("hello: method3460");
}
public void method3461() {
System.out.print("hello: method3461");
}
public void method3462() {
System.out.print("hello: method3462");
}
public void method3463() {
System.out.print("hello: method3463");
}
public void method3464() {
System.out.print("hello: method3464");
}
public void method3465() {
System.out.print("hello: method3465");
}
public void method3466() {
System.out.print("hello: method3466");
}
public void method3467() {
System.out.print("hello: method3467");
}
public void method3468() {
System.out.print("hello: method3468");
}
public void method3469() {
System.out.print("hello: method3469");
}
public void method3470() {
System.out.print("hello: method3470");
}
public void method3471() {
System.out.print("hello: method3471");
}
public void method3472() {
System.out.print("hello: method3472");
}
public void method3473() {
System.out.print("hello: method3473");
}
public void method3474() {
System.out.print("hello: method3474");
}
public void method3475() {
System.out.print("hello: method3475");
}
public void method3476() {
System.out.print("hello: method3476");
}
public void method3477() {
System.out.print("hello: method3477");
}
public void method3478() {
System.out.print("hello: method3478");
}
public void method3479() {
System.out.print("hello: method3479");
}
public void method3480() {
System.out.print("hello: method3480");
}
public void method3481() {
System.out.print("hello: method3481");
}
public void method3482() {
System.out.print("hello: method3482");
}
public void method3483() {
System.out.print("hello: method3483");
}
public void method3484() {
System.out.print("hello: method3484");
}
public void method3485() {
System.out.print("hello: method3485");
}
public void method3486() {
System.out.print("hello: method3486");
}
public void method3487() {
System.out.print("hello: method3487");
}
public void method3488() {
System.out.print("hello: method3488");
}
public void method3489() {
System.out.print("hello: method3489");
}
public void method3490() {
System.out.print("hello: method3490");
}
public void method3491() {
System.out.print("hello: method3491");
}
public void method3492() {
System.out.print("hello: method3492");
}
public void method3493() {
System.out.print("hello: method3493");
}
public void method3494() {
System.out.print("hello: method3494");
}
public void method3495() {
System.out.print("hello: method3495");
}
public void method3496() {
System.out.print("hello: method3496");
}
public void method3497() {
System.out.print("hello: method3497");
}
public void method3498() {
System.out.print("hello: method3498");
}
public void method3499() {
System.out.print("hello: method3499");
}
public void method3500() {
System.out.print("hello: method3500");
}
public void method3501() {
System.out.print("hello: method3501");
}
public void method3502() {
System.out.print("hello: method3502");
}
public void method3503() {
System.out.print("hello: method3503");
}
public void method3504() {
System.out.print("hello: method3504");
}
public void method3505() {
System.out.print("hello: method3505");
}
public void method3506() {
System.out.print("hello: method3506");
}
public void method3507() {
System.out.print("hello: method3507");
}
public void method3508() {
System.out.print("hello: method3508");
}
public void method3509() {
System.out.print("hello: method3509");
}
public void method3510() {
System.out.print("hello: method3510");
}
public void method3511() {
System.out.print("hello: method3511");
}
public void method3512() {
System.out.print("hello: method3512");
}
public void method3513() {
System.out.print("hello: method3513");
}
public void method3514() {
System.out.print("hello: method3514");
}
public void method3515() {
System.out.print("hello: method3515");
}
public void method3516() {
System.out.print("hello: method3516");
}
public void method3517() {
System.out.print("hello: method3517");
}
public void method3518() {
System.out.print("hello: method3518");
}
public void method3519() {
System.out.print("hello: method3519");
}
public void method3520() {
System.out.print("hello: method3520");
}
public void method3521() {
System.out.print("hello: method3521");
}
public void method3522() {
System.out.print("hello: method3522");
}
public void method3523() {
System.out.print("hello: method3523");
}
public void method3524() {
System.out.print("hello: method3524");
}
public void method3525() {
System.out.print("hello: method3525");
}
public void method3526() {
System.out.print("hello: method3526");
}
public void method3527() {
System.out.print("hello: method3527");
}
public void method3528() {
System.out.print("hello: method3528");
}
public void method3529() {
System.out.print("hello: method3529");
}
public void method3530() {
System.out.print("hello: method3530");
}
public void method3531() {
System.out.print("hello: method3531");
}
public void method3532() {
System.out.print("hello: method3532");
}
public void method3533() {
System.out.print("hello: method3533");
}
public void method3534() {
System.out.print("hello: method3534");
}
public void method3535() {
System.out.print("hello: method3535");
}
public void method3536() {
System.out.print("hello: method3536");
}
public void method3537() {
System.out.print("hello: method3537");
}
public void method3538() {
System.out.print("hello: method3538");
}
public void method3539() {
System.out.print("hello: method3539");
}
public void method3540() {
System.out.print("hello: method3540");
}
public void method3541() {
System.out.print("hello: method3541");
}
public void method3542() {
System.out.print("hello: method3542");
}
public void method3543() {
System.out.print("hello: method3543");
}
public void method3544() {
System.out.print("hello: method3544");
}
public void method3545() {
System.out.print("hello: method3545");
}
public void method3546() {
System.out.print("hello: method3546");
}
public void method3547() {
System.out.print("hello: method3547");
}
public void method3548() {
System.out.print("hello: method3548");
}
public void method3549() {
System.out.print("hello: method3549");
}
public void method3550() {
System.out.print("hello: method3550");
}
public void method3551() {
System.out.print("hello: method3551");
}
public void method3552() {
System.out.print("hello: method3552");
}
public void method3553() {
System.out.print("hello: method3553");
}
public void method3554() {
System.out.print("hello: method3554");
}
public void method3555() {
System.out.print("hello: method3555");
}
public void method3556() {
System.out.print("hello: method3556");
}
public void method3557() {
System.out.print("hello: method3557");
}
public void method3558() {
System.out.print("hello: method3558");
}
public void method3559() {
System.out.print("hello: method3559");
}
public void method3560() {
System.out.print("hello: method3560");
}
public void method3561() {
System.out.print("hello: method3561");
}
public void method3562() {
System.out.print("hello: method3562");
}
public void method3563() {
System.out.print("hello: method3563");
}
public void method3564() {
System.out.print("hello: method3564");
}
public void method3565() {
System.out.print("hello: method3565");
}
public void method3566() {
System.out.print("hello: method3566");
}
public void method3567() {
System.out.print("hello: method3567");
}
public void method3568() {
System.out.print("hello: method3568");
}
public void method3569() {
System.out.print("hello: method3569");
}
public void method3570() {
System.out.print("hello: method3570");
}
public void method3571() {
System.out.print("hello: method3571");
}
public void method3572() {
System.out.print("hello: method3572");
}
public void method3573() {
System.out.print("hello: method3573");
}
public void method3574() {
System.out.print("hello: method3574");
}
public void method3575() {
System.out.print("hello: method3575");
}
public void method3576() {
System.out.print("hello: method3576");
}
public void method3577() {
System.out.print("hello: method3577");
}
public void method3578() {
System.out.print("hello: method3578");
}
public void method3579() {
System.out.print("hello: method3579");
}
public void method3580() {
System.out.print("hello: method3580");
}
public void method3581() {
System.out.print("hello: method3581");
}
public void method3582() {
System.out.print("hello: method3582");
}
public void method3583() {
System.out.print("hello: method3583");
}
public void method3584() {
System.out.print("hello: method3584");
}
public void method3585() {
System.out.print("hello: method3585");
}
public void method3586() {
System.out.print("hello: method3586");
}
public void method3587() {
System.out.print("hello: method3587");
}
public void method3588() {
System.out.print("hello: method3588");
}
public void method3589() {
System.out.print("hello: method3589");
}
public void method3590() {
System.out.print("hello: method3590");
}
public void method3591() {
System.out.print("hello: method3591");
}
public void method3592() {
System.out.print("hello: method3592");
}
public void method3593() {
System.out.print("hello: method3593");
}
public void method3594() {
System.out.print("hello: method3594");
}
public void method3595() {
System.out.print("hello: method3595");
}
public void method3596() {
System.out.print("hello: method3596");
}
public void method3597() {
System.out.print("hello: method3597");
}
public void method3598() {
System.out.print("hello: method3598");
}
public void method3599() {
System.out.print("hello: method3599");
}
public void method3600() {
System.out.print("hello: method3600");
}
public void method3601() {
System.out.print("hello: method3601");
}
public void method3602() {
System.out.print("hello: method3602");
}
public void method3603() {
System.out.print("hello: method3603");
}
public void method3604() {
System.out.print("hello: method3604");
}
public void method3605() {
System.out.print("hello: method3605");
}
public void method3606() {
System.out.print("hello: method3606");
}
public void method3607() {
System.out.print("hello: method3607");
}
public void method3608() {
System.out.print("hello: method3608");
}
public void method3609() {
System.out.print("hello: method3609");
}
public void method3610() {
System.out.print("hello: method3610");
}
public void method3611() {
System.out.print("hello: method3611");
}
public void method3612() {
System.out.print("hello: method3612");
}
public void method3613() {
System.out.print("hello: method3613");
}
public void method3614() {
System.out.print("hello: method3614");
}
public void method3615() {
System.out.print("hello: method3615");
}
public void method3616() {
System.out.print("hello: method3616");
}
public void method3617() {
System.out.print("hello: method3617");
}
public void method3618() {
System.out.print("hello: method3618");
}
public void method3619() {
System.out.print("hello: method3619");
}
public void method3620() {
System.out.print("hello: method3620");
}
public void method3621() {
System.out.print("hello: method3621");
}
public void method3622() {
System.out.print("hello: method3622");
}
public void method3623() {
System.out.print("hello: method3623");
}
public void method3624() {
System.out.print("hello: method3624");
}
public void method3625() {
System.out.print("hello: method3625");
}
public void method3626() {
System.out.print("hello: method3626");
}
public void method3627() {
System.out.print("hello: method3627");
}
public void method3628() {
System.out.print("hello: method3628");
}
public void method3629() {
System.out.print("hello: method3629");
}
public void method3630() {
System.out.print("hello: method3630");
}
public void method3631() {
System.out.print("hello: method3631");
}
public void method3632() {
System.out.print("hello: method3632");
}
public void method3633() {
System.out.print("hello: method3633");
}
public void method3634() {
System.out.print("hello: method3634");
}
public void method3635() {
System.out.print("hello: method3635");
}
public void method3636() {
System.out.print("hello: method3636");
}
public void method3637() {
System.out.print("hello: method3637");
}
public void method3638() {
System.out.print("hello: method3638");
}
public void method3639() {
System.out.print("hello: method3639");
}
public void method3640() {
System.out.print("hello: method3640");
}
public void method3641() {
System.out.print("hello: method3641");
}
public void method3642() {
System.out.print("hello: method3642");
}
public void method3643() {
System.out.print("hello: method3643");
}
public void method3644() {
System.out.print("hello: method3644");
}
public void method3645() {
System.out.print("hello: method3645");
}
public void method3646() {
System.out.print("hello: method3646");
}
public void method3647() {
System.out.print("hello: method3647");
}
public void method3648() {
System.out.print("hello: method3648");
}
public void method3649() {
System.out.print("hello: method3649");
}
public void method3650() {
System.out.print("hello: method3650");
}
public void method3651() {
System.out.print("hello: method3651");
}
public void method3652() {
System.out.print("hello: method3652");
}
public void method3653() {
System.out.print("hello: method3653");
}
public void method3654() {
System.out.print("hello: method3654");
}
public void method3655() {
System.out.print("hello: method3655");
}
public void method3656() {
System.out.print("hello: method3656");
}
public void method3657() {
System.out.print("hello: method3657");
}
public void method3658() {
System.out.print("hello: method3658");
}
public void method3659() {
System.out.print("hello: method3659");
}
public void method3660() {
System.out.print("hello: method3660");
}
public void method3661() {
System.out.print("hello: method3661");
}
public void method3662() {
System.out.print("hello: method3662");
}
public void method3663() {
System.out.print("hello: method3663");
}
public void method3664() {
System.out.print("hello: method3664");
}
public void method3665() {
System.out.print("hello: method3665");
}
public void method3666() {
System.out.print("hello: method3666");
}
public void method3667() {
System.out.print("hello: method3667");
}
public void method3668() {
System.out.print("hello: method3668");
}
public void method3669() {
System.out.print("hello: method3669");
}
public void method3670() {
System.out.print("hello: method3670");
}
public void method3671() {
System.out.print("hello: method3671");
}
public void method3672() {
System.out.print("hello: method3672");
}
public void method3673() {
System.out.print("hello: method3673");
}
public void method3674() {
System.out.print("hello: method3674");
}
public void method3675() {
System.out.print("hello: method3675");
}
public void method3676() {
System.out.print("hello: method3676");
}
public void method3677() {
System.out.print("hello: method3677");
}
public void method3678() {
System.out.print("hello: method3678");
}
public void method3679() {
System.out.print("hello: method3679");
}
public void method3680() {
System.out.print("hello: method3680");
}
public void method3681() {
System.out.print("hello: method3681");
}
public void method3682() {
System.out.print("hello: method3682");
}
public void method3683() {
System.out.print("hello: method3683");
}
public void method3684() {
System.out.print("hello: method3684");
}
public void method3685() {
System.out.print("hello: method3685");
}
public void method3686() {
System.out.print("hello: method3686");
}
public void method3687() {
System.out.print("hello: method3687");
}
public void method3688() {
System.out.print("hello: method3688");
}
public void method3689() {
System.out.print("hello: method3689");
}
public void method3690() {
System.out.print("hello: method3690");
}
public void method3691() {
System.out.print("hello: method3691");
}
public void method3692() {
System.out.print("hello: method3692");
}
public void method3693() {
System.out.print("hello: method3693");
}
public void method3694() {
System.out.print("hello: method3694");
}
public void method3695() {
System.out.print("hello: method3695");
}
public void method3696() {
System.out.print("hello: method3696");
}
public void method3697() {
System.out.print("hello: method3697");
}
public void method3698() {
System.out.print("hello: method3698");
}
public void method3699() {
System.out.print("hello: method3699");
}
public void method3700() {
System.out.print("hello: method3700");
}
public void method3701() {
System.out.print("hello: method3701");
}
public void method3702() {
System.out.print("hello: method3702");
}
public void method3703() {
System.out.print("hello: method3703");
}
public void method3704() {
System.out.print("hello: method3704");
}
public void method3705() {
System.out.print("hello: method3705");
}
public void method3706() {
System.out.print("hello: method3706");
}
public void method3707() {
System.out.print("hello: method3707");
}
public void method3708() {
System.out.print("hello: method3708");
}
public void method3709() {
System.out.print("hello: method3709");
}
public void method3710() {
System.out.print("hello: method3710");
}
public void method3711() {
System.out.print("hello: method3711");
}
public void method3712() {
System.out.print("hello: method3712");
}
public void method3713() {
System.out.print("hello: method3713");
}
public void method3714() {
System.out.print("hello: method3714");
}
public void method3715() {
System.out.print("hello: method3715");
}
public void method3716() {
System.out.print("hello: method3716");
}
public void method3717() {
System.out.print("hello: method3717");
}
public void method3718() {
System.out.print("hello: method3718");
}
public void method3719() {
System.out.print("hello: method3719");
}
public void method3720() {
System.out.print("hello: method3720");
}
public void method3721() {
System.out.print("hello: method3721");
}
public void method3722() {
System.out.print("hello: method3722");
}
public void method3723() {
System.out.print("hello: method3723");
}
public void method3724() {
System.out.print("hello: method3724");
}
public void method3725() {
System.out.print("hello: method3725");
}
public void method3726() {
System.out.print("hello: method3726");
}
public void method3727() {
System.out.print("hello: method3727");
}
public void method3728() {
System.out.print("hello: method3728");
}
public void method3729() {
System.out.print("hello: method3729");
}
public void method3730() {
System.out.print("hello: method3730");
}
public void method3731() {
System.out.print("hello: method3731");
}
public void method3732() {
System.out.print("hello: method3732");
}
public void method3733() {
System.out.print("hello: method3733");
}
public void method3734() {
System.out.print("hello: method3734");
}
public void method3735() {
System.out.print("hello: method3735");
}
public void method3736() {
System.out.print("hello: method3736");
}
public void method3737() {
System.out.print("hello: method3737");
}
public void method3738() {
System.out.print("hello: method3738");
}
public void method3739() {
System.out.print("hello: method3739");
}
public void method3740() {
System.out.print("hello: method3740");
}
public void method3741() {
System.out.print("hello: method3741");
}
public void method3742() {
System.out.print("hello: method3742");
}
public void method3743() {
System.out.print("hello: method3743");
}
public void method3744() {
System.out.print("hello: method3744");
}
public void method3745() {
System.out.print("hello: method3745");
}
public void method3746() {
System.out.print("hello: method3746");
}
public void method3747() {
System.out.print("hello: method3747");
}
public void method3748() {
System.out.print("hello: method3748");
}
public void method3749() {
System.out.print("hello: method3749");
}
public void method3750() {
System.out.print("hello: method3750");
}
public void method3751() {
System.out.print("hello: method3751");
}
public void method3752() {
System.out.print("hello: method3752");
}
public void method3753() {
System.out.print("hello: method3753");
}
public void method3754() {
System.out.print("hello: method3754");
}
public void method3755() {
System.out.print("hello: method3755");
}
public void method3756() {
System.out.print("hello: method3756");
}
public void method3757() {
System.out.print("hello: method3757");
}
public void method3758() {
System.out.print("hello: method3758");
}
public void method3759() {
System.out.print("hello: method3759");
}
public void method3760() {
System.out.print("hello: method3760");
}
public void method3761() {
System.out.print("hello: method3761");
}
public void method3762() {
System.out.print("hello: method3762");
}
public void method3763() {
System.out.print("hello: method3763");
}
public void method3764() {
System.out.print("hello: method3764");
}
public void method3765() {
System.out.print("hello: method3765");
}
public void method3766() {
System.out.print("hello: method3766");
}
public void method3767() {
System.out.print("hello: method3767");
}
public void method3768() {
System.out.print("hello: method3768");
}
public void method3769() {
System.out.print("hello: method3769");
}
public void method3770() {
System.out.print("hello: method3770");
}
public void method3771() {
System.out.print("hello: method3771");
}
public void method3772() {
System.out.print("hello: method3772");
}
public void method3773() {
System.out.print("hello: method3773");
}
public void method3774() {
System.out.print("hello: method3774");
}
public void method3775() {
System.out.print("hello: method3775");
}
public void method3776() {
System.out.print("hello: method3776");
}
public void method3777() {
System.out.print("hello: method3777");
}
public void method3778() {
System.out.print("hello: method3778");
}
public void method3779() {
System.out.print("hello: method3779");
}
public void method3780() {
System.out.print("hello: method3780");
}
public void method3781() {
System.out.print("hello: method3781");
}
public void method3782() {
System.out.print("hello: method3782");
}
public void method3783() {
System.out.print("hello: method3783");
}
public void method3784() {
System.out.print("hello: method3784");
}
public void method3785() {
System.out.print("hello: method3785");
}
public void method3786() {
System.out.print("hello: method3786");
}
public void method3787() {
System.out.print("hello: method3787");
}
public void method3788() {
System.out.print("hello: method3788");
}
public void method3789() {
System.out.print("hello: method3789");
}
public void method3790() {
System.out.print("hello: method3790");
}
public void method3791() {
System.out.print("hello: method3791");
}
public void method3792() {
System.out.print("hello: method3792");
}
public void method3793() {
System.out.print("hello: method3793");
}
public void method3794() {
System.out.print("hello: method3794");
}
public void method3795() {
System.out.print("hello: method3795");
}
public void method3796() {
System.out.print("hello: method3796");
}
public void method3797() {
System.out.print("hello: method3797");
}
public void method3798() {
System.out.print("hello: method3798");
}
public void method3799() {
System.out.print("hello: method3799");
}
public void method3800() {
System.out.print("hello: method3800");
}
public void method3801() {
System.out.print("hello: method3801");
}
public void method3802() {
System.out.print("hello: method3802");
}
public void method3803() {
System.out.print("hello: method3803");
}
public void method3804() {
System.out.print("hello: method3804");
}
public void method3805() {
System.out.print("hello: method3805");
}
public void method3806() {
System.out.print("hello: method3806");
}
public void method3807() {
System.out.print("hello: method3807");
}
public void method3808() {
System.out.print("hello: method3808");
}
public void method3809() {
System.out.print("hello: method3809");
}
public void method3810() {
System.out.print("hello: method3810");
}
public void method3811() {
System.out.print("hello: method3811");
}
public void method3812() {
System.out.print("hello: method3812");
}
public void method3813() {
System.out.print("hello: method3813");
}
public void method3814() {
System.out.print("hello: method3814");
}
public void method3815() {
System.out.print("hello: method3815");
}
public void method3816() {
System.out.print("hello: method3816");
}
public void method3817() {
System.out.print("hello: method3817");
}
public void method3818() {
System.out.print("hello: method3818");
}
public void method3819() {
System.out.print("hello: method3819");
}
public void method3820() {
System.out.print("hello: method3820");
}
public void method3821() {
System.out.print("hello: method3821");
}
public void method3822() {
System.out.print("hello: method3822");
}
public void method3823() {
System.out.print("hello: method3823");
}
public void method3824() {
System.out.print("hello: method3824");
}
public void method3825() {
System.out.print("hello: method3825");
}
public void method3826() {
System.out.print("hello: method3826");
}
public void method3827() {
System.out.print("hello: method3827");
}
public void method3828() {
System.out.print("hello: method3828");
}
public void method3829() {
System.out.print("hello: method3829");
}
public void method3830() {
System.out.print("hello: method3830");
}
public void method3831() {
System.out.print("hello: method3831");
}
public void method3832() {
System.out.print("hello: method3832");
}
public void method3833() {
System.out.print("hello: method3833");
}
public void method3834() {
System.out.print("hello: method3834");
}
public void method3835() {
System.out.print("hello: method3835");
}
public void method3836() {
System.out.print("hello: method3836");
}
public void method3837() {
System.out.print("hello: method3837");
}
public void method3838() {
System.out.print("hello: method3838");
}
public void method3839() {
System.out.print("hello: method3839");
}
public void method3840() {
System.out.print("hello: method3840");
}
public void method3841() {
System.out.print("hello: method3841");
}
public void method3842() {
System.out.print("hello: method3842");
}
public void method3843() {
System.out.print("hello: method3843");
}
public void method3844() {
System.out.print("hello: method3844");
}
public void method3845() {
System.out.print("hello: method3845");
}
public void method3846() {
System.out.print("hello: method3846");
}
public void method3847() {
System.out.print("hello: method3847");
}
public void method3848() {
System.out.print("hello: method3848");
}
public void method3849() {
System.out.print("hello: method3849");
}
public void method3850() {
System.out.print("hello: method3850");
}
public void method3851() {
System.out.print("hello: method3851");
}
public void method3852() {
System.out.print("hello: method3852");
}
public void method3853() {
System.out.print("hello: method3853");
}
public void method3854() {
System.out.print("hello: method3854");
}
public void method3855() {
System.out.print("hello: method3855");
}
public void method3856() {
System.out.print("hello: method3856");
}
public void method3857() {
System.out.print("hello: method3857");
}
public void method3858() {
System.out.print("hello: method3858");
}
public void method3859() {
System.out.print("hello: method3859");
}
public void method3860() {
System.out.print("hello: method3860");
}
public void method3861() {
System.out.print("hello: method3861");
}
public void method3862() {
System.out.print("hello: method3862");
}
public void method3863() {
System.out.print("hello: method3863");
}
public void method3864() {
System.out.print("hello: method3864");
}
public void method3865() {
System.out.print("hello: method3865");
}
public void method3866() {
System.out.print("hello: method3866");
}
public void method3867() {
System.out.print("hello: method3867");
}
public void method3868() {
System.out.print("hello: method3868");
}
public void method3869() {
System.out.print("hello: method3869");
}
public void method3870() {
System.out.print("hello: method3870");
}
public void method3871() {
System.out.print("hello: method3871");
}
public void method3872() {
System.out.print("hello: method3872");
}
public void method3873() {
System.out.print("hello: method3873");
}
public void method3874() {
System.out.print("hello: method3874");
}
public void method3875() {
System.out.print("hello: method3875");
}
public void method3876() {
System.out.print("hello: method3876");
}
public void method3877() {
System.out.print("hello: method3877");
}
public void method3878() {
System.out.print("hello: method3878");
}
public void method3879() {
System.out.print("hello: method3879");
}
public void method3880() {
System.out.print("hello: method3880");
}
public void method3881() {
System.out.print("hello: method3881");
}
public void method3882() {
System.out.print("hello: method3882");
}
public void method3883() {
System.out.print("hello: method3883");
}
public void method3884() {
System.out.print("hello: method3884");
}
public void method3885() {
System.out.print("hello: method3885");
}
public void method3886() {
System.out.print("hello: method3886");
}
public void method3887() {
System.out.print("hello: method3887");
}
public void method3888() {
System.out.print("hello: method3888");
}
public void method3889() {
System.out.print("hello: method3889");
}
public void method3890() {
System.out.print("hello: method3890");
}
public void method3891() {
System.out.print("hello: method3891");
}
public void method3892() {
System.out.print("hello: method3892");
}
public void method3893() {
System.out.print("hello: method3893");
}
public void method3894() {
System.out.print("hello: method3894");
}
public void method3895() {
System.out.print("hello: method3895");
}
public void method3896() {
System.out.print("hello: method3896");
}
public void method3897() {
System.out.print("hello: method3897");
}
public void method3898() {
System.out.print("hello: method3898");
}
public void method3899() {
System.out.print("hello: method3899");
}
public void method3900() {
System.out.print("hello: method3900");
}
public void method3901() {
System.out.print("hello: method3901");
}
public void method3902() {
System.out.print("hello: method3902");
}
public void method3903() {
System.out.print("hello: method3903");
}
public void method3904() {
System.out.print("hello: method3904");
}
public void method3905() {
System.out.print("hello: method3905");
}
public void method3906() {
System.out.print("hello: method3906");
}
public void method3907() {
System.out.print("hello: method3907");
}
public void method3908() {
System.out.print("hello: method3908");
}
public void method3909() {
System.out.print("hello: method3909");
}
public void method3910() {
System.out.print("hello: method3910");
}
public void method3911() {
System.out.print("hello: method3911");
}
public void method3912() {
System.out.print("hello: method3912");
}
public void method3913() {
System.out.print("hello: method3913");
}
public void method3914() {
System.out.print("hello: method3914");
}
public void method3915() {
System.out.print("hello: method3915");
}
public void method3916() {
System.out.print("hello: method3916");
}
public void method3917() {
System.out.print("hello: method3917");
}
public void method3918() {
System.out.print("hello: method3918");
}
public void method3919() {
System.out.print("hello: method3919");
}
public void method3920() {
System.out.print("hello: method3920");
}
public void method3921() {
System.out.print("hello: method3921");
}
public void method3922() {
System.out.print("hello: method3922");
}
public void method3923() {
System.out.print("hello: method3923");
}
public void method3924() {
System.out.print("hello: method3924");
}
public void method3925() {
System.out.print("hello: method3925");
}
public void method3926() {
System.out.print("hello: method3926");
}
public void method3927() {
System.out.print("hello: method3927");
}
public void method3928() {
System.out.print("hello: method3928");
}
public void method3929() {
System.out.print("hello: method3929");
}
public void method3930() {
System.out.print("hello: method3930");
}
public void method3931() {
System.out.print("hello: method3931");
}
public void method3932() {
System.out.print("hello: method3932");
}
public void method3933() {
System.out.print("hello: method3933");
}
public void method3934() {
System.out.print("hello: method3934");
}
public void method3935() {
System.out.print("hello: method3935");
}
public void method3936() {
System.out.print("hello: method3936");
}
public void method3937() {
System.out.print("hello: method3937");
}
public void method3938() {
System.out.print("hello: method3938");
}
public void method3939() {
System.out.print("hello: method3939");
}
public void method3940() {
System.out.print("hello: method3940");
}
public void method3941() {
System.out.print("hello: method3941");
}
public void method3942() {
System.out.print("hello: method3942");
}
public void method3943() {
System.out.print("hello: method3943");
}
public void method3944() {
System.out.print("hello: method3944");
}
public void method3945() {
System.out.print("hello: method3945");
}
public void method3946() {
System.out.print("hello: method3946");
}
public void method3947() {
System.out.print("hello: method3947");
}
public void method3948() {
System.out.print("hello: method3948");
}
public void method3949() {
System.out.print("hello: method3949");
}
public void method3950() {
System.out.print("hello: method3950");
}
public void method3951() {
System.out.print("hello: method3951");
}
public void method3952() {
System.out.print("hello: method3952");
}
public void method3953() {
System.out.print("hello: method3953");
}
public void method3954() {
System.out.print("hello: method3954");
}
public void method3955() {
System.out.print("hello: method3955");
}
public void method3956() {
System.out.print("hello: method3956");
}
public void method3957() {
System.out.print("hello: method3957");
}
public void method3958() {
System.out.print("hello: method3958");
}
public void method3959() {
System.out.print("hello: method3959");
}
public void method3960() {
System.out.print("hello: method3960");
}
public void method3961() {
System.out.print("hello: method3961");
}
public void method3962() {
System.out.print("hello: method3962");
}
public void method3963() {
System.out.print("hello: method3963");
}
public void method3964() {
System.out.print("hello: method3964");
}
public void method3965() {
System.out.print("hello: method3965");
}
public void method3966() {
System.out.print("hello: method3966");
}
public void method3967() {
System.out.print("hello: method3967");
}
public void method3968() {
System.out.print("hello: method3968");
}
public void method3969() {
System.out.print("hello: method3969");
}
public void method3970() {
System.out.print("hello: method3970");
}
public void method3971() {
System.out.print("hello: method3971");
}
public void method3972() {
System.out.print("hello: method3972");
}
public void method3973() {
System.out.print("hello: method3973");
}
public void method3974() {
System.out.print("hello: method3974");
}
public void method3975() {
System.out.print("hello: method3975");
}
public void method3976() {
System.out.print("hello: method3976");
}
public void method3977() {
System.out.print("hello: method3977");
}
public void method3978() {
System.out.print("hello: method3978");
}
public void method3979() {
System.out.print("hello: method3979");
}
public void method3980() {
System.out.print("hello: method3980");
}
public void method3981() {
System.out.print("hello: method3981");
}
public void method3982() {
System.out.print("hello: method3982");
}
public void method3983() {
System.out.print("hello: method3983");
}
public void method3984() {
System.out.print("hello: method3984");
}
public void method3985() {
System.out.print("hello: method3985");
}
public void method3986() {
System.out.print("hello: method3986");
}
public void method3987() {
System.out.print("hello: method3987");
}
public void method3988() {
System.out.print("hello: method3988");
}
public void method3989() {
System.out.print("hello: method3989");
}
public void method3990() {
System.out.print("hello: method3990");
}
public void method3991() {
System.out.print("hello: method3991");
}
public void method3992() {
System.out.print("hello: method3992");
}
public void method3993() {
System.out.print("hello: method3993");
}
public void method3994() {
System.out.print("hello: method3994");
}
public void method3995() {
System.out.print("hello: method3995");
}
public void method3996() {
System.out.print("hello: method3996");
}
public void method3997() {
System.out.print("hello: method3997");
}
public void method3998() {
System.out.print("hello: method3998");
}
public void method3999() {
System.out.print("hello: method3999");
}
public void method4000() {
System.out.print("hello: method4000");
}
public void method4001() {
System.out.print("hello: method4001");
}
public void method4002() {
System.out.print("hello: method4002");
}
public void method4003() {
System.out.print("hello: method4003");
}
public void method4004() {
System.out.print("hello: method4004");
}
public void method4005() {
System.out.print("hello: method4005");
}
public void method4006() {
System.out.print("hello: method4006");
}
public void method4007() {
System.out.print("hello: method4007");
}
public void method4008() {
System.out.print("hello: method4008");
}
public void method4009() {
System.out.print("hello: method4009");
}
public void method4010() {
System.out.print("hello: method4010");
}
public void method4011() {
System.out.print("hello: method4011");
}
public void method4012() {
System.out.print("hello: method4012");
}
public void method4013() {
System.out.print("hello: method4013");
}
public void method4014() {
System.out.print("hello: method4014");
}
public void method4015() {
System.out.print("hello: method4015");
}
public void method4016() {
System.out.print("hello: method4016");
}
public void method4017() {
System.out.print("hello: method4017");
}
public void method4018() {
System.out.print("hello: method4018");
}
public void method4019() {
System.out.print("hello: method4019");
}
public void method4020() {
System.out.print("hello: method4020");
}
public void method4021() {
System.out.print("hello: method4021");
}
public void method4022() {
System.out.print("hello: method4022");
}
public void method4023() {
System.out.print("hello: method4023");
}
public void method4024() {
System.out.print("hello: method4024");
}
public void method4025() {
System.out.print("hello: method4025");
}
public void method4026() {
System.out.print("hello: method4026");
}
public void method4027() {
System.out.print("hello: method4027");
}
public void method4028() {
System.out.print("hello: method4028");
}
public void method4029() {
System.out.print("hello: method4029");
}
public void method4030() {
System.out.print("hello: method4030");
}
public void method4031() {
System.out.print("hello: method4031");
}
public void method4032() {
System.out.print("hello: method4032");
}
public void method4033() {
System.out.print("hello: method4033");
}
public void method4034() {
System.out.print("hello: method4034");
}
public void method4035() {
System.out.print("hello: method4035");
}
public void method4036() {
System.out.print("hello: method4036");
}
public void method4037() {
System.out.print("hello: method4037");
}
public void method4038() {
System.out.print("hello: method4038");
}
public void method4039() {
System.out.print("hello: method4039");
}
public void method4040() {
System.out.print("hello: method4040");
}
public void method4041() {
System.out.print("hello: method4041");
}
public void method4042() {
System.out.print("hello: method4042");
}
public void method4043() {
System.out.print("hello: method4043");
}
public void method4044() {
System.out.print("hello: method4044");
}
public void method4045() {
System.out.print("hello: method4045");
}
public void method4046() {
System.out.print("hello: method4046");
}
public void method4047() {
System.out.print("hello: method4047");
}
public void method4048() {
System.out.print("hello: method4048");
}
public void method4049() {
System.out.print("hello: method4049");
}
public void method4050() {
System.out.print("hello: method4050");
}
public void method4051() {
System.out.print("hello: method4051");
}
public void method4052() {
System.out.print("hello: method4052");
}
public void method4053() {
System.out.print("hello: method4053");
}
public void method4054() {
System.out.print("hello: method4054");
}
public void method4055() {
System.out.print("hello: method4055");
}
public void method4056() {
System.out.print("hello: method4056");
}
public void method4057() {
System.out.print("hello: method4057");
}
public void method4058() {
System.out.print("hello: method4058");
}
public void method4059() {
System.out.print("hello: method4059");
}
public void method4060() {
System.out.print("hello: method4060");
}
public void method4061() {
System.out.print("hello: method4061");
}
public void method4062() {
System.out.print("hello: method4062");
}
public void method4063() {
System.out.print("hello: method4063");
}
public void method4064() {
System.out.print("hello: method4064");
}
public void method4065() {
System.out.print("hello: method4065");
}
public void method4066() {
System.out.print("hello: method4066");
}
public void method4067() {
System.out.print("hello: method4067");
}
public void method4068() {
System.out.print("hello: method4068");
}
public void method4069() {
System.out.print("hello: method4069");
}
public void method4070() {
System.out.print("hello: method4070");
}
public void method4071() {
System.out.print("hello: method4071");
}
public void method4072() {
System.out.print("hello: method4072");
}
public void method4073() {
System.out.print("hello: method4073");
}
public void method4074() {
System.out.print("hello: method4074");
}
public void method4075() {
System.out.print("hello: method4075");
}
public void method4076() {
System.out.print("hello: method4076");
}
public void method4077() {
System.out.print("hello: method4077");
}
public void method4078() {
System.out.print("hello: method4078");
}
public void method4079() {
System.out.print("hello: method4079");
}
public void method4080() {
System.out.print("hello: method4080");
}
public void method4081() {
System.out.print("hello: method4081");
}
public void method4082() {
System.out.print("hello: method4082");
}
public void method4083() {
System.out.print("hello: method4083");
}
public void method4084() {
System.out.print("hello: method4084");
}
public void method4085() {
System.out.print("hello: method4085");
}
public void method4086() {
System.out.print("hello: method4086");
}
public void method4087() {
System.out.print("hello: method4087");
}
public void method4088() {
System.out.print("hello: method4088");
}
public void method4089() {
System.out.print("hello: method4089");
}
public void method4090() {
System.out.print("hello: method4090");
}
public void method4091() {
System.out.print("hello: method4091");
}
public void method4092() {
System.out.print("hello: method4092");
}
public void method4093() {
System.out.print("hello: method4093");
}
public void method4094() {
System.out.print("hello: method4094");
}
public void method4095() {
System.out.print("hello: method4095");
}
public void method4096() {
System.out.print("hello: method4096");
}
public void method4097() {
System.out.print("hello: method4097");
}
public void method4098() {
System.out.print("hello: method4098");
}
public void method4099() {
System.out.print("hello: method4099");
}
public void method4100() {
System.out.print("hello: method4100");
}
public void method4101() {
System.out.print("hello: method4101");
}
public void method4102() {
System.out.print("hello: method4102");
}
public void method4103() {
System.out.print("hello: method4103");
}
public void method4104() {
System.out.print("hello: method4104");
}
public void method4105() {
System.out.print("hello: method4105");
}
public void method4106() {
System.out.print("hello: method4106");
}
public void method4107() {
System.out.print("hello: method4107");
}
public void method4108() {
System.out.print("hello: method4108");
}
public void method4109() {
System.out.print("hello: method4109");
}
public void method4110() {
System.out.print("hello: method4110");
}
public void method4111() {
System.out.print("hello: method4111");
}
public void method4112() {
System.out.print("hello: method4112");
}
public void method4113() {
System.out.print("hello: method4113");
}
public void method4114() {
System.out.print("hello: method4114");
}
public void method4115() {
System.out.print("hello: method4115");
}
public void method4116() {
System.out.print("hello: method4116");
}
public void method4117() {
System.out.print("hello: method4117");
}
public void method4118() {
System.out.print("hello: method4118");
}
public void method4119() {
System.out.print("hello: method4119");
}
public void method4120() {
System.out.print("hello: method4120");
}
public void method4121() {
System.out.print("hello: method4121");
}
public void method4122() {
System.out.print("hello: method4122");
}
public void method4123() {
System.out.print("hello: method4123");
}
public void method4124() {
System.out.print("hello: method4124");
}
public void method4125() {
System.out.print("hello: method4125");
}
public void method4126() {
System.out.print("hello: method4126");
}
public void method4127() {
System.out.print("hello: method4127");
}
public void method4128() {
System.out.print("hello: method4128");
}
public void method4129() {
System.out.print("hello: method4129");
}
public void method4130() {
System.out.print("hello: method4130");
}
public void method4131() {
System.out.print("hello: method4131");
}
public void method4132() {
System.out.print("hello: method4132");
}
public void method4133() {
System.out.print("hello: method4133");
}
public void method4134() {
System.out.print("hello: method4134");
}
public void method4135() {
System.out.print("hello: method4135");
}
public void method4136() {
System.out.print("hello: method4136");
}
public void method4137() {
System.out.print("hello: method4137");
}
public void method4138() {
System.out.print("hello: method4138");
}
public void method4139() {
System.out.print("hello: method4139");
}
public void method4140() {
System.out.print("hello: method4140");
}
public void method4141() {
System.out.print("hello: method4141");
}
public void method4142() {
System.out.print("hello: method4142");
}
public void method4143() {
System.out.print("hello: method4143");
}
public void method4144() {
System.out.print("hello: method4144");
}
public void method4145() {
System.out.print("hello: method4145");
}
public void method4146() {
System.out.print("hello: method4146");
}
public void method4147() {
System.out.print("hello: method4147");
}
public void method4148() {
System.out.print("hello: method4148");
}
public void method4149() {
System.out.print("hello: method4149");
}
public void method4150() {
System.out.print("hello: method4150");
}
public void method4151() {
System.out.print("hello: method4151");
}
public void method4152() {
System.out.print("hello: method4152");
}
public void method4153() {
System.out.print("hello: method4153");
}
public void method4154() {
System.out.print("hello: method4154");
}
public void method4155() {
System.out.print("hello: method4155");
}
public void method4156() {
System.out.print("hello: method4156");
}
public void method4157() {
System.out.print("hello: method4157");
}
public void method4158() {
System.out.print("hello: method4158");
}
public void method4159() {
System.out.print("hello: method4159");
}
public void method4160() {
System.out.print("hello: method4160");
}
public void method4161() {
System.out.print("hello: method4161");
}
public void method4162() {
System.out.print("hello: method4162");
}
public void method4163() {
System.out.print("hello: method4163");
}
public void method4164() {
System.out.print("hello: method4164");
}
public void method4165() {
System.out.print("hello: method4165");
}
public void method4166() {
System.out.print("hello: method4166");
}
public void method4167() {
System.out.print("hello: method4167");
}
public void method4168() {
System.out.print("hello: method4168");
}
public void method4169() {
System.out.print("hello: method4169");
}
public void method4170() {
System.out.print("hello: method4170");
}
public void method4171() {
System.out.print("hello: method4171");
}
public void method4172() {
System.out.print("hello: method4172");
}
public void method4173() {
System.out.print("hello: method4173");
}
public void method4174() {
System.out.print("hello: method4174");
}
public void method4175() {
System.out.print("hello: method4175");
}
public void method4176() {
System.out.print("hello: method4176");
}
public void method4177() {
System.out.print("hello: method4177");
}
public void method4178() {
System.out.print("hello: method4178");
}
public void method4179() {
System.out.print("hello: method4179");
}
public void method4180() {
System.out.print("hello: method4180");
}
public void method4181() {
System.out.print("hello: method4181");
}
public void method4182() {
System.out.print("hello: method4182");
}
public void method4183() {
System.out.print("hello: method4183");
}
public void method4184() {
System.out.print("hello: method4184");
}
public void method4185() {
System.out.print("hello: method4185");
}
public void method4186() {
System.out.print("hello: method4186");
}
public void method4187() {
System.out.print("hello: method4187");
}
public void method4188() {
System.out.print("hello: method4188");
}
public void method4189() {
System.out.print("hello: method4189");
}
public void method4190() {
System.out.print("hello: method4190");
}
public void method4191() {
System.out.print("hello: method4191");
}
public void method4192() {
System.out.print("hello: method4192");
}
public void method4193() {
System.out.print("hello: method4193");
}
public void method4194() {
System.out.print("hello: method4194");
}
public void method4195() {
System.out.print("hello: method4195");
}
public void method4196() {
System.out.print("hello: method4196");
}
public void method4197() {
System.out.print("hello: method4197");
}
public void method4198() {
System.out.print("hello: method4198");
}
public void method4199() {
System.out.print("hello: method4199");
}
public void method4200() {
System.out.print("hello: method4200");
}
public void method4201() {
System.out.print("hello: method4201");
}
public void method4202() {
System.out.print("hello: method4202");
}
public void method4203() {
System.out.print("hello: method4203");
}
public void method4204() {
System.out.print("hello: method4204");
}
public void method4205() {
System.out.print("hello: method4205");
}
public void method4206() {
System.out.print("hello: method4206");
}
public void method4207() {
System.out.print("hello: method4207");
}
public void method4208() {
System.out.print("hello: method4208");
}
public void method4209() {
System.out.print("hello: method4209");
}
public void method4210() {
System.out.print("hello: method4210");
}
public void method4211() {
System.out.print("hello: method4211");
}
public void method4212() {
System.out.print("hello: method4212");
}
public void method4213() {
System.out.print("hello: method4213");
}
public void method4214() {
System.out.print("hello: method4214");
}
public void method4215() {
System.out.print("hello: method4215");
}
public void method4216() {
System.out.print("hello: method4216");
}
public void method4217() {
System.out.print("hello: method4217");
}
public void method4218() {
System.out.print("hello: method4218");
}
public void method4219() {
System.out.print("hello: method4219");
}
public void method4220() {
System.out.print("hello: method4220");
}
public void method4221() {
System.out.print("hello: method4221");
}
public void method4222() {
System.out.print("hello: method4222");
}
public void method4223() {
System.out.print("hello: method4223");
}
public void method4224() {
System.out.print("hello: method4224");
}
public void method4225() {
System.out.print("hello: method4225");
}
public void method4226() {
System.out.print("hello: method4226");
}
public void method4227() {
System.out.print("hello: method4227");
}
public void method4228() {
System.out.print("hello: method4228");
}
public void method4229() {
System.out.print("hello: method4229");
}
public void method4230() {
System.out.print("hello: method4230");
}
public void method4231() {
System.out.print("hello: method4231");
}
public void method4232() {
System.out.print("hello: method4232");
}
public void method4233() {
System.out.print("hello: method4233");
}
public void method4234() {
System.out.print("hello: method4234");
}
public void method4235() {
System.out.print("hello: method4235");
}
public void method4236() {
System.out.print("hello: method4236");
}
public void method4237() {
System.out.print("hello: method4237");
}
public void method4238() {
System.out.print("hello: method4238");
}
public void method4239() {
System.out.print("hello: method4239");
}
public void method4240() {
System.out.print("hello: method4240");
}
public void method4241() {
System.out.print("hello: method4241");
}
public void method4242() {
System.out.print("hello: method4242");
}
public void method4243() {
System.out.print("hello: method4243");
}
public void method4244() {
System.out.print("hello: method4244");
}
public void method4245() {
System.out.print("hello: method4245");
}
public void method4246() {
System.out.print("hello: method4246");
}
public void method4247() {
System.out.print("hello: method4247");
}
public void method4248() {
System.out.print("hello: method4248");
}
public void method4249() {
System.out.print("hello: method4249");
}
public void method4250() {
System.out.print("hello: method4250");
}
public void method4251() {
System.out.print("hello: method4251");
}
public void method4252() {
System.out.print("hello: method4252");
}
public void method4253() {
System.out.print("hello: method4253");
}
public void method4254() {
System.out.print("hello: method4254");
}
public void method4255() {
System.out.print("hello: method4255");
}
public void method4256() {
System.out.print("hello: method4256");
}
public void method4257() {
System.out.print("hello: method4257");
}
public void method4258() {
System.out.print("hello: method4258");
}
public void method4259() {
System.out.print("hello: method4259");
}
public void method4260() {
System.out.print("hello: method4260");
}
public void method4261() {
System.out.print("hello: method4261");
}
public void method4262() {
System.out.print("hello: method4262");
}
public void method4263() {
System.out.print("hello: method4263");
}
public void method4264() {
System.out.print("hello: method4264");
}
public void method4265() {
System.out.print("hello: method4265");
}
public void method4266() {
System.out.print("hello: method4266");
}
public void method4267() {
System.out.print("hello: method4267");
}
public void method4268() {
System.out.print("hello: method4268");
}
public void method4269() {
System.out.print("hello: method4269");
}
public void method4270() {
System.out.print("hello: method4270");
}
public void method4271() {
System.out.print("hello: method4271");
}
public void method4272() {
System.out.print("hello: method4272");
}
public void method4273() {
System.out.print("hello: method4273");
}
public void method4274() {
System.out.print("hello: method4274");
}
public void method4275() {
System.out.print("hello: method4275");
}
public void method4276() {
System.out.print("hello: method4276");
}
public void method4277() {
System.out.print("hello: method4277");
}
public void method4278() {
System.out.print("hello: method4278");
}
public void method4279() {
System.out.print("hello: method4279");
}
public void method4280() {
System.out.print("hello: method4280");
}
public void method4281() {
System.out.print("hello: method4281");
}
public void method4282() {
System.out.print("hello: method4282");
}
public void method4283() {
System.out.print("hello: method4283");
}
public void method4284() {
System.out.print("hello: method4284");
}
public void method4285() {
System.out.print("hello: method4285");
}
public void method4286() {
System.out.print("hello: method4286");
}
public void method4287() {
System.out.print("hello: method4287");
}
public void method4288() {
System.out.print("hello: method4288");
}
public void method4289() {
System.out.print("hello: method4289");
}
public void method4290() {
System.out.print("hello: method4290");
}
public void method4291() {
System.out.print("hello: method4291");
}
public void method4292() {
System.out.print("hello: method4292");
}
public void method4293() {
System.out.print("hello: method4293");
}
public void method4294() {
System.out.print("hello: method4294");
}
public void method4295() {
System.out.print("hello: method4295");
}
public void method4296() {
System.out.print("hello: method4296");
}
public void method4297() {
System.out.print("hello: method4297");
}
public void method4298() {
System.out.print("hello: method4298");
}
public void method4299() {
System.out.print("hello: method4299");
}
public void method4300() {
System.out.print("hello: method4300");
}
public void method4301() {
System.out.print("hello: method4301");
}
public void method4302() {
System.out.print("hello: method4302");
}
public void method4303() {
System.out.print("hello: method4303");
}
public void method4304() {
System.out.print("hello: method4304");
}
public void method4305() {
System.out.print("hello: method4305");
}
public void method4306() {
System.out.print("hello: method4306");
}
public void method4307() {
System.out.print("hello: method4307");
}
public void method4308() {
System.out.print("hello: method4308");
}
public void method4309() {
System.out.print("hello: method4309");
}
public void method4310() {
System.out.print("hello: method4310");
}
public void method4311() {
System.out.print("hello: method4311");
}
public void method4312() {
System.out.print("hello: method4312");
}
public void method4313() {
System.out.print("hello: method4313");
}
public void method4314() {
System.out.print("hello: method4314");
}
public void method4315() {
System.out.print("hello: method4315");
}
public void method4316() {
System.out.print("hello: method4316");
}
public void method4317() {
System.out.print("hello: method4317");
}
public void method4318() {
System.out.print("hello: method4318");
}
public void method4319() {
System.out.print("hello: method4319");
}
public void method4320() {
System.out.print("hello: method4320");
}
public void method4321() {
System.out.print("hello: method4321");
}
public void method4322() {
System.out.print("hello: method4322");
}
public void method4323() {
System.out.print("hello: method4323");
}
public void method4324() {
System.out.print("hello: method4324");
}
public void method4325() {
System.out.print("hello: method4325");
}
public void method4326() {
System.out.print("hello: method4326");
}
public void method4327() {
System.out.print("hello: method4327");
}
public void method4328() {
System.out.print("hello: method4328");
}
public void method4329() {
System.out.print("hello: method4329");
}
public void method4330() {
System.out.print("hello: method4330");
}
public void method4331() {
System.out.print("hello: method4331");
}
public void method4332() {
System.out.print("hello: method4332");
}
public void method4333() {
System.out.print("hello: method4333");
}
public void method4334() {
System.out.print("hello: method4334");
}
public void method4335() {
System.out.print("hello: method4335");
}
public void method4336() {
System.out.print("hello: method4336");
}
public void method4337() {
System.out.print("hello: method4337");
}
public void method4338() {
System.out.print("hello: method4338");
}
public void method4339() {
System.out.print("hello: method4339");
}
public void method4340() {
System.out.print("hello: method4340");
}
public void method4341() {
System.out.print("hello: method4341");
}
public void method4342() {
System.out.print("hello: method4342");
}
public void method4343() {
System.out.print("hello: method4343");
}
public void method4344() {
System.out.print("hello: method4344");
}
public void method4345() {
System.out.print("hello: method4345");
}
public void method4346() {
System.out.print("hello: method4346");
}
public void method4347() {
System.out.print("hello: method4347");
}
public void method4348() {
System.out.print("hello: method4348");
}
public void method4349() {
System.out.print("hello: method4349");
}
public void method4350() {
System.out.print("hello: method4350");
}
public void method4351() {
System.out.print("hello: method4351");
}
public void method4352() {
System.out.print("hello: method4352");
}
public void method4353() {
System.out.print("hello: method4353");
}
public void method4354() {
System.out.print("hello: method4354");
}
public void method4355() {
System.out.print("hello: method4355");
}
public void method4356() {
System.out.print("hello: method4356");
}
public void method4357() {
System.out.print("hello: method4357");
}
public void method4358() {
System.out.print("hello: method4358");
}
public void method4359() {
System.out.print("hello: method4359");
}
public void method4360() {
System.out.print("hello: method4360");
}
public void method4361() {
System.out.print("hello: method4361");
}
public void method4362() {
System.out.print("hello: method4362");
}
public void method4363() {
System.out.print("hello: method4363");
}
public void method4364() {
System.out.print("hello: method4364");
}
public void method4365() {
System.out.print("hello: method4365");
}
public void method4366() {
System.out.print("hello: method4366");
}
public void method4367() {
System.out.print("hello: method4367");
}
public void method4368() {
System.out.print("hello: method4368");
}
public void method4369() {
System.out.print("hello: method4369");
}
public void method4370() {
System.out.print("hello: method4370");
}
public void method4371() {
System.out.print("hello: method4371");
}
public void method4372() {
System.out.print("hello: method4372");
}
public void method4373() {
System.out.print("hello: method4373");
}
public void method4374() {
System.out.print("hello: method4374");
}
public void method4375() {
System.out.print("hello: method4375");
}
public void method4376() {
System.out.print("hello: method4376");
}
public void method4377() {
System.out.print("hello: method4377");
}
public void method4378() {
System.out.print("hello: method4378");
}
public void method4379() {
System.out.print("hello: method4379");
}
public void method4380() {
System.out.print("hello: method4380");
}
public void method4381() {
System.out.print("hello: method4381");
}
public void method4382() {
System.out.print("hello: method4382");
}
public void method4383() {
System.out.print("hello: method4383");
}
public void method4384() {
System.out.print("hello: method4384");
}
public void method4385() {
System.out.print("hello: method4385");
}
public void method4386() {
System.out.print("hello: method4386");
}
public void method4387() {
System.out.print("hello: method4387");
}
public void method4388() {
System.out.print("hello: method4388");
}
public void method4389() {
System.out.print("hello: method4389");
}
public void method4390() {
System.out.print("hello: method4390");
}
public void method4391() {
System.out.print("hello: method4391");
}
public void method4392() {
System.out.print("hello: method4392");
}
public void method4393() {
System.out.print("hello: method4393");
}
public void method4394() {
System.out.print("hello: method4394");
}
public void method4395() {
System.out.print("hello: method4395");
}
public void method4396() {
System.out.print("hello: method4396");
}
public void method4397() {
System.out.print("hello: method4397");
}
public void method4398() {
System.out.print("hello: method4398");
}
public void method4399() {
System.out.print("hello: method4399");
}
public void method4400() {
System.out.print("hello: method4400");
}
public void method4401() {
System.out.print("hello: method4401");
}
public void method4402() {
System.out.print("hello: method4402");
}
public void method4403() {
System.out.print("hello: method4403");
}
public void method4404() {
System.out.print("hello: method4404");
}
public void method4405() {
System.out.print("hello: method4405");
}
public void method4406() {
System.out.print("hello: method4406");
}
public void method4407() {
System.out.print("hello: method4407");
}
public void method4408() {
System.out.print("hello: method4408");
}
public void method4409() {
System.out.print("hello: method4409");
}
public void method4410() {
System.out.print("hello: method4410");
}
public void method4411() {
System.out.print("hello: method4411");
}
public void method4412() {
System.out.print("hello: method4412");
}
public void method4413() {
System.out.print("hello: method4413");
}
public void method4414() {
System.out.print("hello: method4414");
}
public void method4415() {
System.out.print("hello: method4415");
}
public void method4416() {
System.out.print("hello: method4416");
}
public void method4417() {
System.out.print("hello: method4417");
}
public void method4418() {
System.out.print("hello: method4418");
}
public void method4419() {
System.out.print("hello: method4419");
}
public void method4420() {
System.out.print("hello: method4420");
}
public void method4421() {
System.out.print("hello: method4421");
}
public void method4422() {
System.out.print("hello: method4422");
}
public void method4423() {
System.out.print("hello: method4423");
}
public void method4424() {
System.out.print("hello: method4424");
}
public void method4425() {
System.out.print("hello: method4425");
}
public void method4426() {
System.out.print("hello: method4426");
}
public void method4427() {
System.out.print("hello: method4427");
}
public void method4428() {
System.out.print("hello: method4428");
}
public void method4429() {
System.out.print("hello: method4429");
}
public void method4430() {
System.out.print("hello: method4430");
}
public void method4431() {
System.out.print("hello: method4431");
}
public void method4432() {
System.out.print("hello: method4432");
}
public void method4433() {
System.out.print("hello: method4433");
}
public void method4434() {
System.out.print("hello: method4434");
}
public void method4435() {
System.out.print("hello: method4435");
}
public void method4436() {
System.out.print("hello: method4436");
}
public void method4437() {
System.out.print("hello: method4437");
}
public void method4438() {
System.out.print("hello: method4438");
}
public void method4439() {
System.out.print("hello: method4439");
}
public void method4440() {
System.out.print("hello: method4440");
}
public void method4441() {
System.out.print("hello: method4441");
}
public void method4442() {
System.out.print("hello: method4442");
}
public void method4443() {
System.out.print("hello: method4443");
}
public void method4444() {
System.out.print("hello: method4444");
}
public void method4445() {
System.out.print("hello: method4445");
}
public void method4446() {
System.out.print("hello: method4446");
}
public void method4447() {
System.out.print("hello: method4447");
}
public void method4448() {
System.out.print("hello: method4448");
}
public void method4449() {
System.out.print("hello: method4449");
}
public void method4450() {
System.out.print("hello: method4450");
}
public void method4451() {
System.out.print("hello: method4451");
}
public void method4452() {
System.out.print("hello: method4452");
}
public void method4453() {
System.out.print("hello: method4453");
}
public void method4454() {
System.out.print("hello: method4454");
}
public void method4455() {
System.out.print("hello: method4455");
}
public void method4456() {
System.out.print("hello: method4456");
}
public void method4457() {
System.out.print("hello: method4457");
}
public void method4458() {
System.out.print("hello: method4458");
}
public void method4459() {
System.out.print("hello: method4459");
}
public void method4460() {
System.out.print("hello: method4460");
}
public void method4461() {
System.out.print("hello: method4461");
}
public void method4462() {
System.out.print("hello: method4462");
}
public void method4463() {
System.out.print("hello: method4463");
}
public void method4464() {
System.out.print("hello: method4464");
}
public void method4465() {
System.out.print("hello: method4465");
}
public void method4466() {
System.out.print("hello: method4466");
}
public void method4467() {
System.out.print("hello: method4467");
}
public void method4468() {
System.out.print("hello: method4468");
}
public void method4469() {
System.out.print("hello: method4469");
}
public void method4470() {
System.out.print("hello: method4470");
}
public void method4471() {
System.out.print("hello: method4471");
}
public void method4472() {
System.out.print("hello: method4472");
}
public void method4473() {
System.out.print("hello: method4473");
}
public void method4474() {
System.out.print("hello: method4474");
}
public void method4475() {
System.out.print("hello: method4475");
}
public void method4476() {
System.out.print("hello: method4476");
}
public void method4477() {
System.out.print("hello: method4477");
}
public void method4478() {
System.out.print("hello: method4478");
}
public void method4479() {
System.out.print("hello: method4479");
}
public void method4480() {
System.out.print("hello: method4480");
}
public void method4481() {
System.out.print("hello: method4481");
}
public void method4482() {
System.out.print("hello: method4482");
}
public void method4483() {
System.out.print("hello: method4483");
}
public void method4484() {
System.out.print("hello: method4484");
}
public void method4485() {
System.out.print("hello: method4485");
}
public void method4486() {
System.out.print("hello: method4486");
}
public void method4487() {
System.out.print("hello: method4487");
}
public void method4488() {
System.out.print("hello: method4488");
}
public void method4489() {
System.out.print("hello: method4489");
}
public void method4490() {
System.out.print("hello: method4490");
}
public void method4491() {
System.out.print("hello: method4491");
}
public void method4492() {
System.out.print("hello: method4492");
}
public void method4493() {
System.out.print("hello: method4493");
}
public void method4494() {
System.out.print("hello: method4494");
}
public void method4495() {
System.out.print("hello: method4495");
}
public void method4496() {
System.out.print("hello: method4496");
}
public void method4497() {
System.out.print("hello: method4497");
}
public void method4498() {
System.out.print("hello: method4498");
}
public void method4499() {
System.out.print("hello: method4499");
}
public void method4500() {
System.out.print("hello: method4500");
}
public void method4501() {
System.out.print("hello: method4501");
}
public void method4502() {
System.out.print("hello: method4502");
}
public void method4503() {
System.out.print("hello: method4503");
}
public void method4504() {
System.out.print("hello: method4504");
}
public void method4505() {
System.out.print("hello: method4505");
}
public void method4506() {
System.out.print("hello: method4506");
}
public void method4507() {
System.out.print("hello: method4507");
}
public void method4508() {
System.out.print("hello: method4508");
}
public void method4509() {
System.out.print("hello: method4509");
}
public void method4510() {
System.out.print("hello: method4510");
}
public void method4511() {
System.out.print("hello: method4511");
}
public void method4512() {
System.out.print("hello: method4512");
}
public void method4513() {
System.out.print("hello: method4513");
}
public void method4514() {
System.out.print("hello: method4514");
}
public void method4515() {
System.out.print("hello: method4515");
}
public void method4516() {
System.out.print("hello: method4516");
}
public void method4517() {
System.out.print("hello: method4517");
}
public void method4518() {
System.out.print("hello: method4518");
}
public void method4519() {
System.out.print("hello: method4519");
}
public void method4520() {
System.out.print("hello: method4520");
}
public void method4521() {
System.out.print("hello: method4521");
}
public void method4522() {
System.out.print("hello: method4522");
}
public void method4523() {
System.out.print("hello: method4523");
}
public void method4524() {
System.out.print("hello: method4524");
}
public void method4525() {
System.out.print("hello: method4525");
}
public void method4526() {
System.out.print("hello: method4526");
}
public void method4527() {
System.out.print("hello: method4527");
}
public void method4528() {
System.out.print("hello: method4528");
}
public void method4529() {
System.out.print("hello: method4529");
}
public void method4530() {
System.out.print("hello: method4530");
}
public void method4531() {
System.out.print("hello: method4531");
}
public void method4532() {
System.out.print("hello: method4532");
}
public void method4533() {
System.out.print("hello: method4533");
}
public void method4534() {
System.out.print("hello: method4534");
}
public void method4535() {
System.out.print("hello: method4535");
}
public void method4536() {
System.out.print("hello: method4536");
}
public void method4537() {
System.out.print("hello: method4537");
}
public void method4538() {
System.out.print("hello: method4538");
}
public void method4539() {
System.out.print("hello: method4539");
}
public void method4540() {
System.out.print("hello: method4540");
}
public void method4541() {
System.out.print("hello: method4541");
}
public void method4542() {
System.out.print("hello: method4542");
}
public void method4543() {
System.out.print("hello: method4543");
}
public void method4544() {
System.out.print("hello: method4544");
}
public void method4545() {
System.out.print("hello: method4545");
}
public void method4546() {
System.out.print("hello: method4546");
}
public void method4547() {
System.out.print("hello: method4547");
}
public void method4548() {
System.out.print("hello: method4548");
}
public void method4549() {
System.out.print("hello: method4549");
}
public void method4550() {
System.out.print("hello: method4550");
}
public void method4551() {
System.out.print("hello: method4551");
}
public void method4552() {
System.out.print("hello: method4552");
}
public void method4553() {
System.out.print("hello: method4553");
}
public void method4554() {
System.out.print("hello: method4554");
}
public void method4555() {
System.out.print("hello: method4555");
}
public void method4556() {
System.out.print("hello: method4556");
}
public void method4557() {
System.out.print("hello: method4557");
}
public void method4558() {
System.out.print("hello: method4558");
}
public void method4559() {
System.out.print("hello: method4559");
}
public void method4560() {
System.out.print("hello: method4560");
}
public void method4561() {
System.out.print("hello: method4561");
}
public void method4562() {
System.out.print("hello: method4562");
}
public void method4563() {
System.out.print("hello: method4563");
}
public void method4564() {
System.out.print("hello: method4564");
}
public void method4565() {
System.out.print("hello: method4565");
}
public void method4566() {
System.out.print("hello: method4566");
}
public void method4567() {
System.out.print("hello: method4567");
}
public void method4568() {
System.out.print("hello: method4568");
}
public void method4569() {
System.out.print("hello: method4569");
}
public void method4570() {
System.out.print("hello: method4570");
}
public void method4571() {
System.out.print("hello: method4571");
}
public void method4572() {
System.out.print("hello: method4572");
}
public void method4573() {
System.out.print("hello: method4573");
}
public void method4574() {
System.out.print("hello: method4574");
}
public void method4575() {
System.out.print("hello: method4575");
}
public void method4576() {
System.out.print("hello: method4576");
}
public void method4577() {
System.out.print("hello: method4577");
}
public void method4578() {
System.out.print("hello: method4578");
}
public void method4579() {
System.out.print("hello: method4579");
}
public void method4580() {
System.out.print("hello: method4580");
}
public void method4581() {
System.out.print("hello: method4581");
}
public void method4582() {
System.out.print("hello: method4582");
}
public void method4583() {
System.out.print("hello: method4583");
}
public void method4584() {
System.out.print("hello: method4584");
}
public void method4585() {
System.out.print("hello: method4585");
}
public void method4586() {
System.out.print("hello: method4586");
}
public void method4587() {
System.out.print("hello: method4587");
}
public void method4588() {
System.out.print("hello: method4588");
}
public void method4589() {
System.out.print("hello: method4589");
}
public void method4590() {
System.out.print("hello: method4590");
}
public void method4591() {
System.out.print("hello: method4591");
}
public void method4592() {
System.out.print("hello: method4592");
}
public void method4593() {
System.out.print("hello: method4593");
}
public void method4594() {
System.out.print("hello: method4594");
}
public void method4595() {
System.out.print("hello: method4595");
}
public void method4596() {
System.out.print("hello: method4596");
}
public void method4597() {
System.out.print("hello: method4597");
}
public void method4598() {
System.out.print("hello: method4598");
}
public void method4599() {
System.out.print("hello: method4599");
}
public void method4600() {
System.out.print("hello: method4600");
}
public void method4601() {
System.out.print("hello: method4601");
}
public void method4602() {
System.out.print("hello: method4602");
}
public void method4603() {
System.out.print("hello: method4603");
}
public void method4604() {
System.out.print("hello: method4604");
}
public void method4605() {
System.out.print("hello: method4605");
}
public void method4606() {
System.out.print("hello: method4606");
}
public void method4607() {
System.out.print("hello: method4607");
}
public void method4608() {
System.out.print("hello: method4608");
}
public void method4609() {
System.out.print("hello: method4609");
}
public void method4610() {
System.out.print("hello: method4610");
}
public void method4611() {
System.out.print("hello: method4611");
}
public void method4612() {
System.out.print("hello: method4612");
}
public void method4613() {
System.out.print("hello: method4613");
}
public void method4614() {
System.out.print("hello: method4614");
}
public void method4615() {
System.out.print("hello: method4615");
}
public void method4616() {
System.out.print("hello: method4616");
}
public void method4617() {
System.out.print("hello: method4617");
}
public void method4618() {
System.out.print("hello: method4618");
}
public void method4619() {
System.out.print("hello: method4619");
}
public void method4620() {
System.out.print("hello: method4620");
}
public void method4621() {
System.out.print("hello: method4621");
}
public void method4622() {
System.out.print("hello: method4622");
}
public void method4623() {
System.out.print("hello: method4623");
}
public void method4624() {
System.out.print("hello: method4624");
}
public void method4625() {
System.out.print("hello: method4625");
}
public void method4626() {
System.out.print("hello: method4626");
}
public void method4627() {
System.out.print("hello: method4627");
}
public void method4628() {
System.out.print("hello: method4628");
}
public void method4629() {
System.out.print("hello: method4629");
}
public void method4630() {
System.out.print("hello: method4630");
}
public void method4631() {
System.out.print("hello: method4631");
}
public void method4632() {
System.out.print("hello: method4632");
}
public void method4633() {
System.out.print("hello: method4633");
}
public void method4634() {
System.out.print("hello: method4634");
}
public void method4635() {
System.out.print("hello: method4635");
}
public void method4636() {
System.out.print("hello: method4636");
}
public void method4637() {
System.out.print("hello: method4637");
}
public void method4638() {
System.out.print("hello: method4638");
}
public void method4639() {
System.out.print("hello: method4639");
}
public void method4640() {
System.out.print("hello: method4640");
}
public void method4641() {
System.out.print("hello: method4641");
}
public void method4642() {
System.out.print("hello: method4642");
}
public void method4643() {
System.out.print("hello: method4643");
}
public void method4644() {
System.out.print("hello: method4644");
}
public void method4645() {
System.out.print("hello: method4645");
}
public void method4646() {
System.out.print("hello: method4646");
}
public void method4647() {
System.out.print("hello: method4647");
}
public void method4648() {
System.out.print("hello: method4648");
}
public void method4649() {
System.out.print("hello: method4649");
}
public void method4650() {
System.out.print("hello: method4650");
}
public void method4651() {
System.out.print("hello: method4651");
}
public void method4652() {
System.out.print("hello: method4652");
}
public void method4653() {
System.out.print("hello: method4653");
}
public void method4654() {
System.out.print("hello: method4654");
}
public void method4655() {
System.out.print("hello: method4655");
}
public void method4656() {
System.out.print("hello: method4656");
}
public void method4657() {
System.out.print("hello: method4657");
}
public void method4658() {
System.out.print("hello: method4658");
}
public void method4659() {
System.out.print("hello: method4659");
}
public void method4660() {
System.out.print("hello: method4660");
}
public void method4661() {
System.out.print("hello: method4661");
}
public void method4662() {
System.out.print("hello: method4662");
}
public void method4663() {
System.out.print("hello: method4663");
}
public void method4664() {
System.out.print("hello: method4664");
}
public void method4665() {
System.out.print("hello: method4665");
}
public void method4666() {
System.out.print("hello: method4666");
}
public void method4667() {
System.out.print("hello: method4667");
}
public void method4668() {
System.out.print("hello: method4668");
}
public void method4669() {
System.out.print("hello: method4669");
}
public void method4670() {
System.out.print("hello: method4670");
}
public void method4671() {
System.out.print("hello: method4671");
}
public void method4672() {
System.out.print("hello: method4672");
}
public void method4673() {
System.out.print("hello: method4673");
}
public void method4674() {
System.out.print("hello: method4674");
}
public void method4675() {
System.out.print("hello: method4675");
}
public void method4676() {
System.out.print("hello: method4676");
}
public void method4677() {
System.out.print("hello: method4677");
}
public void method4678() {
System.out.print("hello: method4678");
}
public void method4679() {
System.out.print("hello: method4679");
}
public void method4680() {
System.out.print("hello: method4680");
}
public void method4681() {
System.out.print("hello: method4681");
}
public void method4682() {
System.out.print("hello: method4682");
}
public void method4683() {
System.out.print("hello: method4683");
}
public void method4684() {
System.out.print("hello: method4684");
}
public void method4685() {
System.out.print("hello: method4685");
}
public void method4686() {
System.out.print("hello: method4686");
}
public void method4687() {
System.out.print("hello: method4687");
}
public void method4688() {
System.out.print("hello: method4688");
}
public void method4689() {
System.out.print("hello: method4689");
}
public void method4690() {
System.out.print("hello: method4690");
}
public void method4691() {
System.out.print("hello: method4691");
}
public void method4692() {
System.out.print("hello: method4692");
}
public void method4693() {
System.out.print("hello: method4693");
}
public void method4694() {
System.out.print("hello: method4694");
}
public void method4695() {
System.out.print("hello: method4695");
}
public void method4696() {
System.out.print("hello: method4696");
}
public void method4697() {
System.out.print("hello: method4697");
}
public void method4698() {
System.out.print("hello: method4698");
}
public void method4699() {
System.out.print("hello: method4699");
}
public void method4700() {
System.out.print("hello: method4700");
}
public void method4701() {
System.out.print("hello: method4701");
}
public void method4702() {
System.out.print("hello: method4702");
}
public void method4703() {
System.out.print("hello: method4703");
}
public void method4704() {
System.out.print("hello: method4704");
}
public void method4705() {
System.out.print("hello: method4705");
}
public void method4706() {
System.out.print("hello: method4706");
}
public void method4707() {
System.out.print("hello: method4707");
}
public void method4708() {
System.out.print("hello: method4708");
}
public void method4709() {
System.out.print("hello: method4709");
}
public void method4710() {
System.out.print("hello: method4710");
}
public void method4711() {
System.out.print("hello: method4711");
}
public void method4712() {
System.out.print("hello: method4712");
}
public void method4713() {
System.out.print("hello: method4713");
}
public void method4714() {
System.out.print("hello: method4714");
}
public void method4715() {
System.out.print("hello: method4715");
}
public void method4716() {
System.out.print("hello: method4716");
}
public void method4717() {
System.out.print("hello: method4717");
}
public void method4718() {
System.out.print("hello: method4718");
}
public void method4719() {
System.out.print("hello: method4719");
}
public void method4720() {
System.out.print("hello: method4720");
}
public void method4721() {
System.out.print("hello: method4721");
}
public void method4722() {
System.out.print("hello: method4722");
}
public void method4723() {
System.out.print("hello: method4723");
}
public void method4724() {
System.out.print("hello: method4724");
}
public void method4725() {
System.out.print("hello: method4725");
}
public void method4726() {
System.out.print("hello: method4726");
}
public void method4727() {
System.out.print("hello: method4727");
}
public void method4728() {
System.out.print("hello: method4728");
}
public void method4729() {
System.out.print("hello: method4729");
}
public void method4730() {
System.out.print("hello: method4730");
}
public void method4731() {
System.out.print("hello: method4731");
}
public void method4732() {
System.out.print("hello: method4732");
}
public void method4733() {
System.out.print("hello: method4733");
}
public void method4734() {
System.out.print("hello: method4734");
}
public void method4735() {
System.out.print("hello: method4735");
}
public void method4736() {
System.out.print("hello: method4736");
}
public void method4737() {
System.out.print("hello: method4737");
}
public void method4738() {
System.out.print("hello: method4738");
}
public void method4739() {
System.out.print("hello: method4739");
}
public void method4740() {
System.out.print("hello: method4740");
}
public void method4741() {
System.out.print("hello: method4741");
}
public void method4742() {
System.out.print("hello: method4742");
}
public void method4743() {
System.out.print("hello: method4743");
}
public void method4744() {
System.out.print("hello: method4744");
}
public void method4745() {
System.out.print("hello: method4745");
}
public void method4746() {
System.out.print("hello: method4746");
}
public void method4747() {
System.out.print("hello: method4747");
}
public void method4748() {
System.out.print("hello: method4748");
}
public void method4749() {
System.out.print("hello: method4749");
}
public void method4750() {
System.out.print("hello: method4750");
}
public void method4751() {
System.out.print("hello: method4751");
}
public void method4752() {
System.out.print("hello: method4752");
}
public void method4753() {
System.out.print("hello: method4753");
}
public void method4754() {
System.out.print("hello: method4754");
}
public void method4755() {
System.out.print("hello: method4755");
}
public void method4756() {
System.out.print("hello: method4756");
}
public void method4757() {
System.out.print("hello: method4757");
}
public void method4758() {
System.out.print("hello: method4758");
}
public void method4759() {
System.out.print("hello: method4759");
}
public void method4760() {
System.out.print("hello: method4760");
}
public void method4761() {
System.out.print("hello: method4761");
}
public void method4762() {
System.out.print("hello: method4762");
}
public void method4763() {
System.out.print("hello: method4763");
}
public void method4764() {
System.out.print("hello: method4764");
}
public void method4765() {
System.out.print("hello: method4765");
}
public void method4766() {
System.out.print("hello: method4766");
}
public void method4767() {
System.out.print("hello: method4767");
}
public void method4768() {
System.out.print("hello: method4768");
}
public void method4769() {
System.out.print("hello: method4769");
}
public void method4770() {
System.out.print("hello: method4770");
}
public void method4771() {
System.out.print("hello: method4771");
}
public void method4772() {
System.out.print("hello: method4772");
}
public void method4773() {
System.out.print("hello: method4773");
}
public void method4774() {
System.out.print("hello: method4774");
}
public void method4775() {
System.out.print("hello: method4775");
}
public void method4776() {
System.out.print("hello: method4776");
}
public void method4777() {
System.out.print("hello: method4777");
}
public void method4778() {
System.out.print("hello: method4778");
}
public void method4779() {
System.out.print("hello: method4779");
}
public void method4780() {
System.out.print("hello: method4780");
}
public void method4781() {
System.out.print("hello: method4781");
}
public void method4782() {
System.out.print("hello: method4782");
}
public void method4783() {
System.out.print("hello: method4783");
}
public void method4784() {
System.out.print("hello: method4784");
}
public void method4785() {
System.out.print("hello: method4785");
}
public void method4786() {
System.out.print("hello: method4786");
}
public void method4787() {
System.out.print("hello: method4787");
}
public void method4788() {
System.out.print("hello: method4788");
}
public void method4789() {
System.out.print("hello: method4789");
}
public void method4790() {
System.out.print("hello: method4790");
}
public void method4791() {
System.out.print("hello: method4791");
}
public void method4792() {
System.out.print("hello: method4792");
}
public void method4793() {
System.out.print("hello: method4793");
}
public void method4794() {
System.out.print("hello: method4794");
}
public void method4795() {
System.out.print("hello: method4795");
}
public void method4796() {
System.out.print("hello: method4796");
}
public void method4797() {
System.out.print("hello: method4797");
}
public void method4798() {
System.out.print("hello: method4798");
}
public void method4799() {
System.out.print("hello: method4799");
}
public void method4800() {
System.out.print("hello: method4800");
}
public void method4801() {
System.out.print("hello: method4801");
}
public void method4802() {
System.out.print("hello: method4802");
}
public void method4803() {
System.out.print("hello: method4803");
}
public void method4804() {
System.out.print("hello: method4804");
}
public void method4805() {
System.out.print("hello: method4805");
}
public void method4806() {
System.out.print("hello: method4806");
}
public void method4807() {
System.out.print("hello: method4807");
}
public void method4808() {
System.out.print("hello: method4808");
}
public void method4809() {
System.out.print("hello: method4809");
}
public void method4810() {
System.out.print("hello: method4810");
}
public void method4811() {
System.out.print("hello: method4811");
}
public void method4812() {
System.out.print("hello: method4812");
}
public void method4813() {
System.out.print("hello: method4813");
}
public void method4814() {
System.out.print("hello: method4814");
}
public void method4815() {
System.out.print("hello: method4815");
}
public void method4816() {
System.out.print("hello: method4816");
}
public void method4817() {
System.out.print("hello: method4817");
}
public void method4818() {
System.out.print("hello: method4818");
}
public void method4819() {
System.out.print("hello: method4819");
}
public void method4820() {
System.out.print("hello: method4820");
}
public void method4821() {
System.out.print("hello: method4821");
}
public void method4822() {
System.out.print("hello: method4822");
}
public void method4823() {
System.out.print("hello: method4823");
}
public void method4824() {
System.out.print("hello: method4824");
}
public void method4825() {
System.out.print("hello: method4825");
}
public void method4826() {
System.out.print("hello: method4826");
}
public void method4827() {
System.out.print("hello: method4827");
}
public void method4828() {
System.out.print("hello: method4828");
}
public void method4829() {
System.out.print("hello: method4829");
}
public void method4830() {
System.out.print("hello: method4830");
}
public void method4831() {
System.out.print("hello: method4831");
}
public void method4832() {
System.out.print("hello: method4832");
}
public void method4833() {
System.out.print("hello: method4833");
}
public void method4834() {
System.out.print("hello: method4834");
}
public void method4835() {
System.out.print("hello: method4835");
}
public void method4836() {
System.out.print("hello: method4836");
}
public void method4837() {
System.out.print("hello: method4837");
}
public void method4838() {
System.out.print("hello: method4838");
}
public void method4839() {
System.out.print("hello: method4839");
}
public void method4840() {
System.out.print("hello: method4840");
}
public void method4841() {
System.out.print("hello: method4841");
}
public void method4842() {
System.out.print("hello: method4842");
}
public void method4843() {
System.out.print("hello: method4843");
}
public void method4844() {
System.out.print("hello: method4844");
}
public void method4845() {
System.out.print("hello: method4845");
}
public void method4846() {
System.out.print("hello: method4846");
}
public void method4847() {
System.out.print("hello: method4847");
}
public void method4848() {
System.out.print("hello: method4848");
}
public void method4849() {
System.out.print("hello: method4849");
}
public void method4850() {
System.out.print("hello: method4850");
}
public void method4851() {
System.out.print("hello: method4851");
}
public void method4852() {
System.out.print("hello: method4852");
}
public void method4853() {
System.out.print("hello: method4853");
}
public void method4854() {
System.out.print("hello: method4854");
}
public void method4855() {
System.out.print("hello: method4855");
}
public void method4856() {
System.out.print("hello: method4856");
}
public void method4857() {
System.out.print("hello: method4857");
}
public void method4858() {
System.out.print("hello: method4858");
}
public void method4859() {
System.out.print("hello: method4859");
}
public void method4860() {
System.out.print("hello: method4860");
}
public void method4861() {
System.out.print("hello: method4861");
}
public void method4862() {
System.out.print("hello: method4862");
}
public void method4863() {
System.out.print("hello: method4863");
}
public void method4864() {
System.out.print("hello: method4864");
}
public void method4865() {
System.out.print("hello: method4865");
}
public void method4866() {
System.out.print("hello: method4866");
}
public void method4867() {
System.out.print("hello: method4867");
}
public void method4868() {
System.out.print("hello: method4868");
}
public void method4869() {
System.out.print("hello: method4869");
}
public void method4870() {
System.out.print("hello: method4870");
}
public void method4871() {
System.out.print("hello: method4871");
}
public void method4872() {
System.out.print("hello: method4872");
}
public void method4873() {
System.out.print("hello: method4873");
}
public void method4874() {
System.out.print("hello: method4874");
}
public void method4875() {
System.out.print("hello: method4875");
}
public void method4876() {
System.out.print("hello: method4876");
}
public void method4877() {
System.out.print("hello: method4877");
}
public void method4878() {
System.out.print("hello: method4878");
}
public void method4879() {
System.out.print("hello: method4879");
}
public void method4880() {
System.out.print("hello: method4880");
}
public void method4881() {
System.out.print("hello: method4881");
}
public void method4882() {
System.out.print("hello: method4882");
}
public void method4883() {
System.out.print("hello: method4883");
}
public void method4884() {
System.out.print("hello: method4884");
}
public void method4885() {
System.out.print("hello: method4885");
}
public void method4886() {
System.out.print("hello: method4886");
}
public void method4887() {
System.out.print("hello: method4887");
}
public void method4888() {
System.out.print("hello: method4888");
}
public void method4889() {
System.out.print("hello: method4889");
}
public void method4890() {
System.out.print("hello: method4890");
}
public void method4891() {
System.out.print("hello: method4891");
}
public void method4892() {
System.out.print("hello: method4892");
}
public void method4893() {
System.out.print("hello: method4893");
}
public void method4894() {
System.out.print("hello: method4894");
}
public void method4895() {
System.out.print("hello: method4895");
}
public void method4896() {
System.out.print("hello: method4896");
}
public void method4897() {
System.out.print("hello: method4897");
}
public void method4898() {
System.out.print("hello: method4898");
}
public void method4899() {
System.out.print("hello: method4899");
}
public void method4900() {
System.out.print("hello: method4900");
}
public void method4901() {
System.out.print("hello: method4901");
}
public void method4902() {
System.out.print("hello: method4902");
}
public void method4903() {
System.out.print("hello: method4903");
}
public void method4904() {
System.out.print("hello: method4904");
}
public void method4905() {
System.out.print("hello: method4905");
}
public void method4906() {
System.out.print("hello: method4906");
}
public void method4907() {
System.out.print("hello: method4907");
}
public void method4908() {
System.out.print("hello: method4908");
}
public void method4909() {
System.out.print("hello: method4909");
}
public void method4910() {
System.out.print("hello: method4910");
}
public void method4911() {
System.out.print("hello: method4911");
}
public void method4912() {
System.out.print("hello: method4912");
}
public void method4913() {
System.out.print("hello: method4913");
}
public void method4914() {
System.out.print("hello: method4914");
}
public void method4915() {
System.out.print("hello: method4915");
}
public void method4916() {
System.out.print("hello: method4916");
}
public void method4917() {
System.out.print("hello: method4917");
}
public void method4918() {
System.out.print("hello: method4918");
}
public void method4919() {
System.out.print("hello: method4919");
}
public void method4920() {
System.out.print("hello: method4920");
}
public void method4921() {
System.out.print("hello: method4921");
}
public void method4922() {
System.out.print("hello: method4922");
}
public void method4923() {
System.out.print("hello: method4923");
}
public void method4924() {
System.out.print("hello: method4924");
}
public void method4925() {
System.out.print("hello: method4925");
}
public void method4926() {
System.out.print("hello: method4926");
}
public void method4927() {
System.out.print("hello: method4927");
}
public void method4928() {
System.out.print("hello: method4928");
}
public void method4929() {
System.out.print("hello: method4929");
}
public void method4930() {
System.out.print("hello: method4930");
}
public void method4931() {
System.out.print("hello: method4931");
}
public void method4932() {
System.out.print("hello: method4932");
}
public void method4933() {
System.out.print("hello: method4933");
}
public void method4934() {
System.out.print("hello: method4934");
}
public void method4935() {
System.out.print("hello: method4935");
}
public void method4936() {
System.out.print("hello: method4936");
}
public void method4937() {
System.out.print("hello: method4937");
}
public void method4938() {
System.out.print("hello: method4938");
}
public void method4939() {
System.out.print("hello: method4939");
}
public void method4940() {
System.out.print("hello: method4940");
}
public void method4941() {
System.out.print("hello: method4941");
}
public void method4942() {
System.out.print("hello: method4942");
}
public void method4943() {
System.out.print("hello: method4943");
}
public void method4944() {
System.out.print("hello: method4944");
}
public void method4945() {
System.out.print("hello: method4945");
}
public void method4946() {
System.out.print("hello: method4946");
}
public void method4947() {
System.out.print("hello: method4947");
}
public void method4948() {
System.out.print("hello: method4948");
}
public void method4949() {
System.out.print("hello: method4949");
}
public void method4950() {
System.out.print("hello: method4950");
}
public void method4951() {
System.out.print("hello: method4951");
}
public void method4952() {
System.out.print("hello: method4952");
}
public void method4953() {
System.out.print("hello: method4953");
}
public void method4954() {
System.out.print("hello: method4954");
}
public void method4955() {
System.out.print("hello: method4955");
}
public void method4956() {
System.out.print("hello: method4956");
}
public void method4957() {
System.out.print("hello: method4957");
}
public void method4958() {
System.out.print("hello: method4958");
}
public void method4959() {
System.out.print("hello: method4959");
}
public void method4960() {
System.out.print("hello: method4960");
}
public void method4961() {
System.out.print("hello: method4961");
}
public void method4962() {
System.out.print("hello: method4962");
}
public void method4963() {
System.out.print("hello: method4963");
}
public void method4964() {
System.out.print("hello: method4964");
}
public void method4965() {
System.out.print("hello: method4965");
}
public void method4966() {
System.out.print("hello: method4966");
}
public void method4967() {
System.out.print("hello: method4967");
}
public void method4968() {
System.out.print("hello: method4968");
}
public void method4969() {
System.out.print("hello: method4969");
}
public void method4970() {
System.out.print("hello: method4970");
}
public void method4971() {
System.out.print("hello: method4971");
}
public void method4972() {
System.out.print("hello: method4972");
}
public void method4973() {
System.out.print("hello: method4973");
}
public void method4974() {
System.out.print("hello: method4974");
}
public void method4975() {
System.out.print("hello: method4975");
}
public void method4976() {
System.out.print("hello: method4976");
}
public void method4977() {
System.out.print("hello: method4977");
}
public void method4978() {
System.out.print("hello: method4978");
}
public void method4979() {
System.out.print("hello: method4979");
}
public void method4980() {
System.out.print("hello: method4980");
}
public void method4981() {
System.out.print("hello: method4981");
}
public void method4982() {
System.out.print("hello: method4982");
}
public void method4983() {
System.out.print("hello: method4983");
}
public void method4984() {
System.out.print("hello: method4984");
}
public void method4985() {
System.out.print("hello: method4985");
}
public void method4986() {
System.out.print("hello: method4986");
}
public void method4987() {
System.out.print("hello: method4987");
}
public void method4988() {
System.out.print("hello: method4988");
}
public void method4989() {
System.out.print("hello: method4989");
}
public void method4990() {
System.out.print("hello: method4990");
}
public void method4991() {
System.out.print("hello: method4991");
}
public void method4992() {
System.out.print("hello: method4992");
}
public void method4993() {
System.out.print("hello: method4993");
}
public void method4994() {
System.out.print("hello: method4994");
}
public void method4995() {
System.out.print("hello: method4995");
}
public void method4996() {
System.out.print("hello: method4996");
}
public void method4997() {
System.out.print("hello: method4997");
}
public void method4998() {
System.out.print("hello: method4998");
}
public void method4999() {
System.out.print("hello: method4999");
}
public void method5000() {
System.out.print("hello: method5000");
}
public void method5001() {
System.out.print("hello: method5001");
}
public void method5002() {
System.out.print("hello: method5002");
}
public void method5003() {
System.out.print("hello: method5003");
}
public void method5004() {
System.out.print("hello: method5004");
}
public void method5005() {
System.out.print("hello: method5005");
}
public void method5006() {
System.out.print("hello: method5006");
}
public void method5007() {
System.out.print("hello: method5007");
}
public void method5008() {
System.out.print("hello: method5008");
}
public void method5009() {
System.out.print("hello: method5009");
}
public void method5010() {
System.out.print("hello: method5010");
}
public void method5011() {
System.out.print("hello: method5011");
}
public void method5012() {
System.out.print("hello: method5012");
}
public void method5013() {
System.out.print("hello: method5013");
}
public void method5014() {
System.out.print("hello: method5014");
}
public void method5015() {
System.out.print("hello: method5015");
}
public void method5016() {
System.out.print("hello: method5016");
}
public void method5017() {
System.out.print("hello: method5017");
}
public void method5018() {
System.out.print("hello: method5018");
}
public void method5019() {
System.out.print("hello: method5019");
}
public void method5020() {
System.out.print("hello: method5020");
}
public void method5021() {
System.out.print("hello: method5021");
}
public void method5022() {
System.out.print("hello: method5022");
}
public void method5023() {
System.out.print("hello: method5023");
}
public void method5024() {
System.out.print("hello: method5024");
}
public void method5025() {
System.out.print("hello: method5025");
}
public void method5026() {
System.out.print("hello: method5026");
}
public void method5027() {
System.out.print("hello: method5027");
}
public void method5028() {
System.out.print("hello: method5028");
}
public void method5029() {
System.out.print("hello: method5029");
}
public void method5030() {
System.out.print("hello: method5030");
}
public void method5031() {
System.out.print("hello: method5031");
}
public void method5032() {
System.out.print("hello: method5032");
}
public void method5033() {
System.out.print("hello: method5033");
}
public void method5034() {
System.out.print("hello: method5034");
}
public void method5035() {
System.out.print("hello: method5035");
}
public void method5036() {
System.out.print("hello: method5036");
}
public void method5037() {
System.out.print("hello: method5037");
}
public void method5038() {
System.out.print("hello: method5038");
}
public void method5039() {
System.out.print("hello: method5039");
}
public void method5040() {
System.out.print("hello: method5040");
}
public void method5041() {
System.out.print("hello: method5041");
}
public void method5042() {
System.out.print("hello: method5042");
}
public void method5043() {
System.out.print("hello: method5043");
}
public void method5044() {
System.out.print("hello: method5044");
}
public void method5045() {
System.out.print("hello: method5045");
}
public void method5046() {
System.out.print("hello: method5046");
}
public void method5047() {
System.out.print("hello: method5047");
}
public void method5048() {
System.out.print("hello: method5048");
}
public void method5049() {
System.out.print("hello: method5049");
}
public void method5050() {
System.out.print("hello: method5050");
}
public void method5051() {
System.out.print("hello: method5051");
}
public void method5052() {
System.out.print("hello: method5052");
}
public void method5053() {
System.out.print("hello: method5053");
}
public void method5054() {
System.out.print("hello: method5054");
}
public void method5055() {
System.out.print("hello: method5055");
}
public void method5056() {
System.out.print("hello: method5056");
}
public void method5057() {
System.out.print("hello: method5057");
}
public void method5058() {
System.out.print("hello: method5058");
}
public void method5059() {
System.out.print("hello: method5059");
}
public void method5060() {
System.out.print("hello: method5060");
}
public void method5061() {
System.out.print("hello: method5061");
}
public void method5062() {
System.out.print("hello: method5062");
}
public void method5063() {
System.out.print("hello: method5063");
}
public void method5064() {
System.out.print("hello: method5064");
}
public void method5065() {
System.out.print("hello: method5065");
}
public void method5066() {
System.out.print("hello: method5066");
}
public void method5067() {
System.out.print("hello: method5067");
}
public void method5068() {
System.out.print("hello: method5068");
}
public void method5069() {
System.out.print("hello: method5069");
}
public void method5070() {
System.out.print("hello: method5070");
}
public void method5071() {
System.out.print("hello: method5071");
}
public void method5072() {
System.out.print("hello: method5072");
}
public void method5073() {
System.out.print("hello: method5073");
}
public void method5074() {
System.out.print("hello: method5074");
}
public void method5075() {
System.out.print("hello: method5075");
}
public void method5076() {
System.out.print("hello: method5076");
}
public void method5077() {
System.out.print("hello: method5077");
}
public void method5078() {
System.out.print("hello: method5078");
}
public void method5079() {
System.out.print("hello: method5079");
}
public void method5080() {
System.out.print("hello: method5080");
}
public void method5081() {
System.out.print("hello: method5081");
}
public void method5082() {
System.out.print("hello: method5082");
}
public void method5083() {
System.out.print("hello: method5083");
}
public void method5084() {
System.out.print("hello: method5084");
}
public void method5085() {
System.out.print("hello: method5085");
}
public void method5086() {
System.out.print("hello: method5086");
}
public void method5087() {
System.out.print("hello: method5087");
}
public void method5088() {
System.out.print("hello: method5088");
}
public void method5089() {
System.out.print("hello: method5089");
}
public void method5090() {
System.out.print("hello: method5090");
}
public void method5091() {
System.out.print("hello: method5091");
}
public void method5092() {
System.out.print("hello: method5092");
}
public void method5093() {
System.out.print("hello: method5093");
}
public void method5094() {
System.out.print("hello: method5094");
}
public void method5095() {
System.out.print("hello: method5095");
}
public void method5096() {
System.out.print("hello: method5096");
}
public void method5097() {
System.out.print("hello: method5097");
}
public void method5098() {
System.out.print("hello: method5098");
}
public void method5099() {
System.out.print("hello: method5099");
}
public void method5100() {
System.out.print("hello: method5100");
}
public void method5101() {
System.out.print("hello: method5101");
}
public void method5102() {
System.out.print("hello: method5102");
}
public void method5103() {
System.out.print("hello: method5103");
}
public void method5104() {
System.out.print("hello: method5104");
}
public void method5105() {
System.out.print("hello: method5105");
}
public void method5106() {
System.out.print("hello: method5106");
}
public void method5107() {
System.out.print("hello: method5107");
}
public void method5108() {
System.out.print("hello: method5108");
}
public void method5109() {
System.out.print("hello: method5109");
}
public void method5110() {
System.out.print("hello: method5110");
}
public void method5111() {
System.out.print("hello: method5111");
}
public void method5112() {
System.out.print("hello: method5112");
}
public void method5113() {
System.out.print("hello: method5113");
}
public void method5114() {
System.out.print("hello: method5114");
}
public void method5115() {
System.out.print("hello: method5115");
}
public void method5116() {
System.out.print("hello: method5116");
}
public void method5117() {
System.out.print("hello: method5117");
}
public void method5118() {
System.out.print("hello: method5118");
}
public void method5119() {
System.out.print("hello: method5119");
}
public void method5120() {
System.out.print("hello: method5120");
}
public void method5121() {
System.out.print("hello: method5121");
}
public void method5122() {
System.out.print("hello: method5122");
}
public void method5123() {
System.out.print("hello: method5123");
}
public void method5124() {
System.out.print("hello: method5124");
}
public void method5125() {
System.out.print("hello: method5125");
}
public void method5126() {
System.out.print("hello: method5126");
}
public void method5127() {
System.out.print("hello: method5127");
}
public void method5128() {
System.out.print("hello: method5128");
}
public void method5129() {
System.out.print("hello: method5129");
}
public void method5130() {
System.out.print("hello: method5130");
}
public void method5131() {
System.out.print("hello: method5131");
}
public void method5132() {
System.out.print("hello: method5132");
}
public void method5133() {
System.out.print("hello: method5133");
}
public void method5134() {
System.out.print("hello: method5134");
}
public void method5135() {
System.out.print("hello: method5135");
}
public void method5136() {
System.out.print("hello: method5136");
}
public void method5137() {
System.out.print("hello: method5137");
}
public void method5138() {
System.out.print("hello: method5138");
}
public void method5139() {
System.out.print("hello: method5139");
}
public void method5140() {
System.out.print("hello: method5140");
}
public void method5141() {
System.out.print("hello: method5141");
}
public void method5142() {
System.out.print("hello: method5142");
}
public void method5143() {
System.out.print("hello: method5143");
}
public void method5144() {
System.out.print("hello: method5144");
}
public void method5145() {
System.out.print("hello: method5145");
}
public void method5146() {
System.out.print("hello: method5146");
}
public void method5147() {
System.out.print("hello: method5147");
}
public void method5148() {
System.out.print("hello: method5148");
}
public void method5149() {
System.out.print("hello: method5149");
}
public void method5150() {
System.out.print("hello: method5150");
}
public void method5151() {
System.out.print("hello: method5151");
}
public void method5152() {
System.out.print("hello: method5152");
}
public void method5153() {
System.out.print("hello: method5153");
}
public void method5154() {
System.out.print("hello: method5154");
}
public void method5155() {
System.out.print("hello: method5155");
}
public void method5156() {
System.out.print("hello: method5156");
}
public void method5157() {
System.out.print("hello: method5157");
}
public void method5158() {
System.out.print("hello: method5158");
}
public void method5159() {
System.out.print("hello: method5159");
}
public void method5160() {
System.out.print("hello: method5160");
}
public void method5161() {
System.out.print("hello: method5161");
}
public void method5162() {
System.out.print("hello: method5162");
}
public void method5163() {
System.out.print("hello: method5163");
}
public void method5164() {
System.out.print("hello: method5164");
}
public void method5165() {
System.out.print("hello: method5165");
}
public void method5166() {
System.out.print("hello: method5166");
}
public void method5167() {
System.out.print("hello: method5167");
}
public void method5168() {
System.out.print("hello: method5168");
}
public void method5169() {
System.out.print("hello: method5169");
}
public void method5170() {
System.out.print("hello: method5170");
}
public void method5171() {
System.out.print("hello: method5171");
}
public void method5172() {
System.out.print("hello: method5172");
}
public void method5173() {
System.out.print("hello: method5173");
}
public void method5174() {
System.out.print("hello: method5174");
}
public void method5175() {
System.out.print("hello: method5175");
}
public void method5176() {
System.out.print("hello: method5176");
}
public void method5177() {
System.out.print("hello: method5177");
}
public void method5178() {
System.out.print("hello: method5178");
}
public void method5179() {
System.out.print("hello: method5179");
}
public void method5180() {
System.out.print("hello: method5180");
}
public void method5181() {
System.out.print("hello: method5181");
}
public void method5182() {
System.out.print("hello: method5182");
}
public void method5183() {
System.out.print("hello: method5183");
}
public void method5184() {
System.out.print("hello: method5184");
}
public void method5185() {
System.out.print("hello: method5185");
}
public void method5186() {
System.out.print("hello: method5186");
}
public void method5187() {
System.out.print("hello: method5187");
}
public void method5188() {
System.out.print("hello: method5188");
}
public void method5189() {
System.out.print("hello: method5189");
}
public void method5190() {
System.out.print("hello: method5190");
}
public void method5191() {
System.out.print("hello: method5191");
}
public void method5192() {
System.out.print("hello: method5192");
}
public void method5193() {
System.out.print("hello: method5193");
}
public void method5194() {
System.out.print("hello: method5194");
}
public void method5195() {
System.out.print("hello: method5195");
}
public void method5196() {
System.out.print("hello: method5196");
}
public void method5197() {
System.out.print("hello: method5197");
}
public void method5198() {
System.out.print("hello: method5198");
}
public void method5199() {
System.out.print("hello: method5199");
}
public void method5200() {
System.out.print("hello: method5200");
}
public void method5201() {
System.out.print("hello: method5201");
}
public void method5202() {
System.out.print("hello: method5202");
}
public void method5203() {
System.out.print("hello: method5203");
}
public void method5204() {
System.out.print("hello: method5204");
}
public void method5205() {
System.out.print("hello: method5205");
}
public void method5206() {
System.out.print("hello: method5206");
}
public void method5207() {
System.out.print("hello: method5207");
}
public void method5208() {
System.out.print("hello: method5208");
}
public void method5209() {
System.out.print("hello: method5209");
}
public void method5210() {
System.out.print("hello: method5210");
}
public void method5211() {
System.out.print("hello: method5211");
}
public void method5212() {
System.out.print("hello: method5212");
}
public void method5213() {
System.out.print("hello: method5213");
}
public void method5214() {
System.out.print("hello: method5214");
}
public void method5215() {
System.out.print("hello: method5215");
}
public void method5216() {
System.out.print("hello: method5216");
}
public void method5217() {
System.out.print("hello: method5217");
}
public void method5218() {
System.out.print("hello: method5218");
}
public void method5219() {
System.out.print("hello: method5219");
}
public void method5220() {
System.out.print("hello: method5220");
}
public void method5221() {
System.out.print("hello: method5221");
}
public void method5222() {
System.out.print("hello: method5222");
}
public void method5223() {
System.out.print("hello: method5223");
}
public void method5224() {
System.out.print("hello: method5224");
}
public void method5225() {
System.out.print("hello: method5225");
}
public void method5226() {
System.out.print("hello: method5226");
}
public void method5227() {
System.out.print("hello: method5227");
}
public void method5228() {
System.out.print("hello: method5228");
}
public void method5229() {
System.out.print("hello: method5229");
}
public void method5230() {
System.out.print("hello: method5230");
}
public void method5231() {
System.out.print("hello: method5231");
}
public void method5232() {
System.out.print("hello: method5232");
}
public void method5233() {
System.out.print("hello: method5233");
}
public void method5234() {
System.out.print("hello: method5234");
}
public void method5235() {
System.out.print("hello: method5235");
}
public void method5236() {
System.out.print("hello: method5236");
}
public void method5237() {
System.out.print("hello: method5237");
}
public void method5238() {
System.out.print("hello: method5238");
}
public void method5239() {
System.out.print("hello: method5239");
}
public void method5240() {
System.out.print("hello: method5240");
}
public void method5241() {
System.out.print("hello: method5241");
}
public void method5242() {
System.out.print("hello: method5242");
}
public void method5243() {
System.out.print("hello: method5243");
}
public void method5244() {
System.out.print("hello: method5244");
}
public void method5245() {
System.out.print("hello: method5245");
}
public void method5246() {
System.out.print("hello: method5246");
}
public void method5247() {
System.out.print("hello: method5247");
}
public void method5248() {
System.out.print("hello: method5248");
}
public void method5249() {
System.out.print("hello: method5249");
}
public void method5250() {
System.out.print("hello: method5250");
}
public void method5251() {
System.out.print("hello: method5251");
}
public void method5252() {
System.out.print("hello: method5252");
}
public void method5253() {
System.out.print("hello: method5253");
}
public void method5254() {
System.out.print("hello: method5254");
}
public void method5255() {
System.out.print("hello: method5255");
}
public void method5256() {
System.out.print("hello: method5256");
}
public void method5257() {
System.out.print("hello: method5257");
}
public void method5258() {
System.out.print("hello: method5258");
}
public void method5259() {
System.out.print("hello: method5259");
}
public void method5260() {
System.out.print("hello: method5260");
}
public void method5261() {
System.out.print("hello: method5261");
}
public void method5262() {
System.out.print("hello: method5262");
}
public void method5263() {
System.out.print("hello: method5263");
}
public void method5264() {
System.out.print("hello: method5264");
}
public void method5265() {
System.out.print("hello: method5265");
}
public void method5266() {
System.out.print("hello: method5266");
}
public void method5267() {
System.out.print("hello: method5267");
}
public void method5268() {
System.out.print("hello: method5268");
}
public void method5269() {
System.out.print("hello: method5269");
}
public void method5270() {
System.out.print("hello: method5270");
}
public void method5271() {
System.out.print("hello: method5271");
}
public void method5272() {
System.out.print("hello: method5272");
}
public void method5273() {
System.out.print("hello: method5273");
}
public void method5274() {
System.out.print("hello: method5274");
}
public void method5275() {
System.out.print("hello: method5275");
}
public void method5276() {
System.out.print("hello: method5276");
}
public void method5277() {
System.out.print("hello: method5277");
}
public void method5278() {
System.out.print("hello: method5278");
}
public void method5279() {
System.out.print("hello: method5279");
}
public void method5280() {
System.out.print("hello: method5280");
}
public void method5281() {
System.out.print("hello: method5281");
}
public void method5282() {
System.out.print("hello: method5282");
}
public void method5283() {
System.out.print("hello: method5283");
}
public void method5284() {
System.out.print("hello: method5284");
}
public void method5285() {
System.out.print("hello: method5285");
}
public void method5286() {
System.out.print("hello: method5286");
}
public void method5287() {
System.out.print("hello: method5287");
}
public void method5288() {
System.out.print("hello: method5288");
}
public void method5289() {
System.out.print("hello: method5289");
}
public void method5290() {
System.out.print("hello: method5290");
}
public void method5291() {
System.out.print("hello: method5291");
}
public void method5292() {
System.out.print("hello: method5292");
}
public void method5293() {
System.out.print("hello: method5293");
}
public void method5294() {
System.out.print("hello: method5294");
}
public void method5295() {
System.out.print("hello: method5295");
}
public void method5296() {
System.out.print("hello: method5296");
}
public void method5297() {
System.out.print("hello: method5297");
}
public void method5298() {
System.out.print("hello: method5298");
}
public void method5299() {
System.out.print("hello: method5299");
}
public void method5300() {
System.out.print("hello: method5300");
}
public void method5301() {
System.out.print("hello: method5301");
}
public void method5302() {
System.out.print("hello: method5302");
}
public void method5303() {
System.out.print("hello: method5303");
}
public void method5304() {
System.out.print("hello: method5304");
}
public void method5305() {
System.out.print("hello: method5305");
}
public void method5306() {
System.out.print("hello: method5306");
}
public void method5307() {
System.out.print("hello: method5307");
}
public void method5308() {
System.out.print("hello: method5308");
}
public void method5309() {
System.out.print("hello: method5309");
}
public void method5310() {
System.out.print("hello: method5310");
}
public void method5311() {
System.out.print("hello: method5311");
}
public void method5312() {
System.out.print("hello: method5312");
}
public void method5313() {
System.out.print("hello: method5313");
}
public void method5314() {
System.out.print("hello: method5314");
}
public void method5315() {
System.out.print("hello: method5315");
}
public void method5316() {
System.out.print("hello: method5316");
}
public void method5317() {
System.out.print("hello: method5317");
}
public void method5318() {
System.out.print("hello: method5318");
}
public void method5319() {
System.out.print("hello: method5319");
}
public void method5320() {
System.out.print("hello: method5320");
}
public void method5321() {
System.out.print("hello: method5321");
}
public void method5322() {
System.out.print("hello: method5322");
}
public void method5323() {
System.out.print("hello: method5323");
}
public void method5324() {
System.out.print("hello: method5324");
}
public void method5325() {
System.out.print("hello: method5325");
}
public void method5326() {
System.out.print("hello: method5326");
}
public void method5327() {
System.out.print("hello: method5327");
}
public void method5328() {
System.out.print("hello: method5328");
}
public void method5329() {
System.out.print("hello: method5329");
}
public void method5330() {
System.out.print("hello: method5330");
}
public void method5331() {
System.out.print("hello: method5331");
}
public void method5332() {
System.out.print("hello: method5332");
}
public void method5333() {
System.out.print("hello: method5333");
}
public void method5334() {
System.out.print("hello: method5334");
}
public void method5335() {
System.out.print("hello: method5335");
}
public void method5336() {
System.out.print("hello: method5336");
}
public void method5337() {
System.out.print("hello: method5337");
}
public void method5338() {
System.out.print("hello: method5338");
}
public void method5339() {
System.out.print("hello: method5339");
}
public void method5340() {
System.out.print("hello: method5340");
}
public void method5341() {
System.out.print("hello: method5341");
}
public void method5342() {
System.out.print("hello: method5342");
}
public void method5343() {
System.out.print("hello: method5343");
}
public void method5344() {
System.out.print("hello: method5344");
}
public void method5345() {
System.out.print("hello: method5345");
}
public void method5346() {
System.out.print("hello: method5346");
}
public void method5347() {
System.out.print("hello: method5347");
}
public void method5348() {
System.out.print("hello: method5348");
}
public void method5349() {
System.out.print("hello: method5349");
}
public void method5350() {
System.out.print("hello: method5350");
}
public void method5351() {
System.out.print("hello: method5351");
}
public void method5352() {
System.out.print("hello: method5352");
}
public void method5353() {
System.out.print("hello: method5353");
}
public void method5354() {
System.out.print("hello: method5354");
}
public void method5355() {
System.out.print("hello: method5355");
}
public void method5356() {
System.out.print("hello: method5356");
}
public void method5357() {
System.out.print("hello: method5357");
}
public void method5358() {
System.out.print("hello: method5358");
}
public void method5359() {
System.out.print("hello: method5359");
}
public void method5360() {
System.out.print("hello: method5360");
}
public void method5361() {
System.out.print("hello: method5361");
}
public void method5362() {
System.out.print("hello: method5362");
}
public void method5363() {
System.out.print("hello: method5363");
}
public void method5364() {
System.out.print("hello: method5364");
}
public void method5365() {
System.out.print("hello: method5365");
}
public void method5366() {
System.out.print("hello: method5366");
}
public void method5367() {
System.out.print("hello: method5367");
}
public void method5368() {
System.out.print("hello: method5368");
}
public void method5369() {
System.out.print("hello: method5369");
}
public void method5370() {
System.out.print("hello: method5370");
}
public void method5371() {
System.out.print("hello: method5371");
}
public void method5372() {
System.out.print("hello: method5372");
}
public void method5373() {
System.out.print("hello: method5373");
}
public void method5374() {
System.out.print("hello: method5374");
}
public void method5375() {
System.out.print("hello: method5375");
}
public void method5376() {
System.out.print("hello: method5376");
}
public void method5377() {
System.out.print("hello: method5377");
}
public void method5378() {
System.out.print("hello: method5378");
}
public void method5379() {
System.out.print("hello: method5379");
}
public void method5380() {
System.out.print("hello: method5380");
}
public void method5381() {
System.out.print("hello: method5381");
}
public void method5382() {
System.out.print("hello: method5382");
}
public void method5383() {
System.out.print("hello: method5383");
}
public void method5384() {
System.out.print("hello: method5384");
}
public void method5385() {
System.out.print("hello: method5385");
}
public void method5386() {
System.out.print("hello: method5386");
}
public void method5387() {
System.out.print("hello: method5387");
}
public void method5388() {
System.out.print("hello: method5388");
}
public void method5389() {
System.out.print("hello: method5389");
}
public void method5390() {
System.out.print("hello: method5390");
}
public void method5391() {
System.out.print("hello: method5391");
}
public void method5392() {
System.out.print("hello: method5392");
}
public void method5393() {
System.out.print("hello: method5393");
}
public void method5394() {
System.out.print("hello: method5394");
}
public void method5395() {
System.out.print("hello: method5395");
}
public void method5396() {
System.out.print("hello: method5396");
}
public void method5397() {
System.out.print("hello: method5397");
}
public void method5398() {
System.out.print("hello: method5398");
}
public void method5399() {
System.out.print("hello: method5399");
}
public void method5400() {
System.out.print("hello: method5400");
}
public void method5401() {
System.out.print("hello: method5401");
}
public void method5402() {
System.out.print("hello: method5402");
}
public void method5403() {
System.out.print("hello: method5403");
}
public void method5404() {
System.out.print("hello: method5404");
}
public void method5405() {
System.out.print("hello: method5405");
}
public void method5406() {
System.out.print("hello: method5406");
}
public void method5407() {
System.out.print("hello: method5407");
}
public void method5408() {
System.out.print("hello: method5408");
}
public void method5409() {
System.out.print("hello: method5409");
}
public void method5410() {
System.out.print("hello: method5410");
}
public void method5411() {
System.out.print("hello: method5411");
}
public void method5412() {
System.out.print("hello: method5412");
}
public void method5413() {
System.out.print("hello: method5413");
}
public void method5414() {
System.out.print("hello: method5414");
}
public void method5415() {
System.out.print("hello: method5415");
}
public void method5416() {
System.out.print("hello: method5416");
}
public void method5417() {
System.out.print("hello: method5417");
}
public void method5418() {
System.out.print("hello: method5418");
}
public void method5419() {
System.out.print("hello: method5419");
}
public void method5420() {
System.out.print("hello: method5420");
}
public void method5421() {
System.out.print("hello: method5421");
}
public void method5422() {
System.out.print("hello: method5422");
}
public void method5423() {
System.out.print("hello: method5423");
}
public void method5424() {
System.out.print("hello: method5424");
}
public void method5425() {
System.out.print("hello: method5425");
}
public void method5426() {
System.out.print("hello: method5426");
}
public void method5427() {
System.out.print("hello: method5427");
}
public void method5428() {
System.out.print("hello: method5428");
}
public void method5429() {
System.out.print("hello: method5429");
}
public void method5430() {
System.out.print("hello: method5430");
}
public void method5431() {
System.out.print("hello: method5431");
}
public void method5432() {
System.out.print("hello: method5432");
}
public void method5433() {
System.out.print("hello: method5433");
}
public void method5434() {
System.out.print("hello: method5434");
}
public void method5435() {
System.out.print("hello: method5435");
}
public void method5436() {
System.out.print("hello: method5436");
}
public void method5437() {
System.out.print("hello: method5437");
}
public void method5438() {
System.out.print("hello: method5438");
}
public void method5439() {
System.out.print("hello: method5439");
}
public void method5440() {
System.out.print("hello: method5440");
}
public void method5441() {
System.out.print("hello: method5441");
}
public void method5442() {
System.out.print("hello: method5442");
}
public void method5443() {
System.out.print("hello: method5443");
}
public void method5444() {
System.out.print("hello: method5444");
}
public void method5445() {
System.out.print("hello: method5445");
}
public void method5446() {
System.out.print("hello: method5446");
}
public void method5447() {
System.out.print("hello: method5447");
}
public void method5448() {
System.out.print("hello: method5448");
}
public void method5449() {
System.out.print("hello: method5449");
}
public void method5450() {
System.out.print("hello: method5450");
}
public void method5451() {
System.out.print("hello: method5451");
}
public void method5452() {
System.out.print("hello: method5452");
}
public void method5453() {
System.out.print("hello: method5453");
}
public void method5454() {
System.out.print("hello: method5454");
}
public void method5455() {
System.out.print("hello: method5455");
}
public void method5456() {
System.out.print("hello: method5456");
}
public void method5457() {
System.out.print("hello: method5457");
}
public void method5458() {
System.out.print("hello: method5458");
}
public void method5459() {
System.out.print("hello: method5459");
}
public void method5460() {
System.out.print("hello: method5460");
}
public void method5461() {
System.out.print("hello: method5461");
}
public void method5462() {
System.out.print("hello: method5462");
}
public void method5463() {
System.out.print("hello: method5463");
}
public void method5464() {
System.out.print("hello: method5464");
}
public void method5465() {
System.out.print("hello: method5465");
}
public void method5466() {
System.out.print("hello: method5466");
}
public void method5467() {
System.out.print("hello: method5467");
}
public void method5468() {
System.out.print("hello: method5468");
}
public void method5469() {
System.out.print("hello: method5469");
}
public void method5470() {
System.out.print("hello: method5470");
}
public void method5471() {
System.out.print("hello: method5471");
}
public void method5472() {
System.out.print("hello: method5472");
}
public void method5473() {
System.out.print("hello: method5473");
}
public void method5474() {
System.out.print("hello: method5474");
}
public void method5475() {
System.out.print("hello: method5475");
}
public void method5476() {
System.out.print("hello: method5476");
}
public void method5477() {
System.out.print("hello: method5477");
}
public void method5478() {
System.out.print("hello: method5478");
}
public void method5479() {
System.out.print("hello: method5479");
}
public void method5480() {
System.out.print("hello: method5480");
}
public void method5481() {
System.out.print("hello: method5481");
}
public void method5482() {
System.out.print("hello: method5482");
}
public void method5483() {
System.out.print("hello: method5483");
}
public void method5484() {
System.out.print("hello: method5484");
}
public void method5485() {
System.out.print("hello: method5485");
}
public void method5486() {
System.out.print("hello: method5486");
}
public void method5487() {
System.out.print("hello: method5487");
}
public void method5488() {
System.out.print("hello: method5488");
}
public void method5489() {
System.out.print("hello: method5489");
}
public void method5490() {
System.out.print("hello: method5490");
}
public void method5491() {
System.out.print("hello: method5491");
}
public void method5492() {
System.out.print("hello: method5492");
}
public void method5493() {
System.out.print("hello: method5493");
}
public void method5494() {
System.out.print("hello: method5494");
}
public void method5495() {
System.out.print("hello: method5495");
}
public void method5496() {
System.out.print("hello: method5496");
}
public void method5497() {
System.out.print("hello: method5497");
}
public void method5498() {
System.out.print("hello: method5498");
}
public void method5499() {
System.out.print("hello: method5499");
}
public void method5500() {
System.out.print("hello: method5500");
}
public void method5501() {
System.out.print("hello: method5501");
}
public void method5502() {
System.out.print("hello: method5502");
}
public void method5503() {
System.out.print("hello: method5503");
}
public void method5504() {
System.out.print("hello: method5504");
}
public void method5505() {
System.out.print("hello: method5505");
}
public void method5506() {
System.out.print("hello: method5506");
}
public void method5507() {
System.out.print("hello: method5507");
}
public void method5508() {
System.out.print("hello: method5508");
}
public void method5509() {
System.out.print("hello: method5509");
}
public void method5510() {
System.out.print("hello: method5510");
}
public void method5511() {
System.out.print("hello: method5511");
}
public void method5512() {
System.out.print("hello: method5512");
}
public void method5513() {
System.out.print("hello: method5513");
}
public void method5514() {
System.out.print("hello: method5514");
}
public void method5515() {
System.out.print("hello: method5515");
}
public void method5516() {
System.out.print("hello: method5516");
}
public void method5517() {
System.out.print("hello: method5517");
}
public void method5518() {
System.out.print("hello: method5518");
}
public void method5519() {
System.out.print("hello: method5519");
}
public void method5520() {
System.out.print("hello: method5520");
}
public void method5521() {
System.out.print("hello: method5521");
}
public void method5522() {
System.out.print("hello: method5522");
}
public void method5523() {
System.out.print("hello: method5523");
}
public void method5524() {
System.out.print("hello: method5524");
}
public void method5525() {
System.out.print("hello: method5525");
}
public void method5526() {
System.out.print("hello: method5526");
}
public void method5527() {
System.out.print("hello: method5527");
}
public void method5528() {
System.out.print("hello: method5528");
}
public void method5529() {
System.out.print("hello: method5529");
}
public void method5530() {
System.out.print("hello: method5530");
}
public void method5531() {
System.out.print("hello: method5531");
}
public void method5532() {
System.out.print("hello: method5532");
}
public void method5533() {
System.out.print("hello: method5533");
}
public void method5534() {
System.out.print("hello: method5534");
}
public void method5535() {
System.out.print("hello: method5535");
}
public void method5536() {
System.out.print("hello: method5536");
}
public void method5537() {
System.out.print("hello: method5537");
}
public void method5538() {
System.out.print("hello: method5538");
}
public void method5539() {
System.out.print("hello: method5539");
}
public void method5540() {
System.out.print("hello: method5540");
}
public void method5541() {
System.out.print("hello: method5541");
}
public void method5542() {
System.out.print("hello: method5542");
}
public void method5543() {
System.out.print("hello: method5543");
}
public void method5544() {
System.out.print("hello: method5544");
}
public void method5545() {
System.out.print("hello: method5545");
}
public void method5546() {
System.out.print("hello: method5546");
}
public void method5547() {
System.out.print("hello: method5547");
}
public void method5548() {
System.out.print("hello: method5548");
}
public void method5549() {
System.out.print("hello: method5549");
}
public void method5550() {
System.out.print("hello: method5550");
}
public void method5551() {
System.out.print("hello: method5551");
}
public void method5552() {
System.out.print("hello: method5552");
}
public void method5553() {
System.out.print("hello: method5553");
}
public void method5554() {
System.out.print("hello: method5554");
}
public void method5555() {
System.out.print("hello: method5555");
}
public void method5556() {
System.out.print("hello: method5556");
}
public void method5557() {
System.out.print("hello: method5557");
}
public void method5558() {
System.out.print("hello: method5558");
}
public void method5559() {
System.out.print("hello: method5559");
}
public void method5560() {
System.out.print("hello: method5560");
}
public void method5561() {
System.out.print("hello: method5561");
}
public void method5562() {
System.out.print("hello: method5562");
}
public void method5563() {
System.out.print("hello: method5563");
}
public void method5564() {
System.out.print("hello: method5564");
}
public void method5565() {
System.out.print("hello: method5565");
}
public void method5566() {
System.out.print("hello: method5566");
}
public void method5567() {
System.out.print("hello: method5567");
}
public void method5568() {
System.out.print("hello: method5568");
}
public void method5569() {
System.out.print("hello: method5569");
}
public void method5570() {
System.out.print("hello: method5570");
}
public void method5571() {
System.out.print("hello: method5571");
}
public void method5572() {
System.out.print("hello: method5572");
}
public void method5573() {
System.out.print("hello: method5573");
}
public void method5574() {
System.out.print("hello: method5574");
}
public void method5575() {
System.out.print("hello: method5575");
}
public void method5576() {
System.out.print("hello: method5576");
}
public void method5577() {
System.out.print("hello: method5577");
}
public void method5578() {
System.out.print("hello: method5578");
}
public void method5579() {
System.out.print("hello: method5579");
}
public void method5580() {
System.out.print("hello: method5580");
}
public void method5581() {
System.out.print("hello: method5581");
}
public void method5582() {
System.out.print("hello: method5582");
}
public void method5583() {
System.out.print("hello: method5583");
}
public void method5584() {
System.out.print("hello: method5584");
}
public void method5585() {
System.out.print("hello: method5585");
}
public void method5586() {
System.out.print("hello: method5586");
}
public void method5587() {
System.out.print("hello: method5587");
}
public void method5588() {
System.out.print("hello: method5588");
}
public void method5589() {
System.out.print("hello: method5589");
}
public void method5590() {
System.out.print("hello: method5590");
}
public void method5591() {
System.out.print("hello: method5591");
}
public void method5592() {
System.out.print("hello: method5592");
}
public void method5593() {
System.out.print("hello: method5593");
}
public void method5594() {
System.out.print("hello: method5594");
}
public void method5595() {
System.out.print("hello: method5595");
}
public void method5596() {
System.out.print("hello: method5596");
}
public void method5597() {
System.out.print("hello: method5597");
}
public void method5598() {
System.out.print("hello: method5598");
}
public void method5599() {
System.out.print("hello: method5599");
}
public void method5600() {
System.out.print("hello: method5600");
}
public void method5601() {
System.out.print("hello: method5601");
}
public void method5602() {
System.out.print("hello: method5602");
}
public void method5603() {
System.out.print("hello: method5603");
}
public void method5604() {
System.out.print("hello: method5604");
}
public void method5605() {
System.out.print("hello: method5605");
}
public void method5606() {
System.out.print("hello: method5606");
}
public void method5607() {
System.out.print("hello: method5607");
}
public void method5608() {
System.out.print("hello: method5608");
}
public void method5609() {
System.out.print("hello: method5609");
}
public void method5610() {
System.out.print("hello: method5610");
}
public void method5611() {
System.out.print("hello: method5611");
}
public void method5612() {
System.out.print("hello: method5612");
}
public void method5613() {
System.out.print("hello: method5613");
}
public void method5614() {
System.out.print("hello: method5614");
}
public void method5615() {
System.out.print("hello: method5615");
}
public void method5616() {
System.out.print("hello: method5616");
}
public void method5617() {
System.out.print("hello: method5617");
}
public void method5618() {
System.out.print("hello: method5618");
}
public void method5619() {
System.out.print("hello: method5619");
}
public void method5620() {
System.out.print("hello: method5620");
}
public void method5621() {
System.out.print("hello: method5621");
}
public void method5622() {
System.out.print("hello: method5622");
}
public void method5623() {
System.out.print("hello: method5623");
}
public void method5624() {
System.out.print("hello: method5624");
}
public void method5625() {
System.out.print("hello: method5625");
}
public void method5626() {
System.out.print("hello: method5626");
}
public void method5627() {
System.out.print("hello: method5627");
}
public void method5628() {
System.out.print("hello: method5628");
}
public void method5629() {
System.out.print("hello: method5629");
}
public void method5630() {
System.out.print("hello: method5630");
}
public void method5631() {
System.out.print("hello: method5631");
}
public void method5632() {
System.out.print("hello: method5632");
}
public void method5633() {
System.out.print("hello: method5633");
}
public void method5634() {
System.out.print("hello: method5634");
}
public void method5635() {
System.out.print("hello: method5635");
}
public void method5636() {
System.out.print("hello: method5636");
}
public void method5637() {
System.out.print("hello: method5637");
}
public void method5638() {
System.out.print("hello: method5638");
}
public void method5639() {
System.out.print("hello: method5639");
}
public void method5640() {
System.out.print("hello: method5640");
}
public void method5641() {
System.out.print("hello: method5641");
}
public void method5642() {
System.out.print("hello: method5642");
}
public void method5643() {
System.out.print("hello: method5643");
}
public void method5644() {
System.out.print("hello: method5644");
}
public void method5645() {
System.out.print("hello: method5645");
}
public void method5646() {
System.out.print("hello: method5646");
}
public void method5647() {
System.out.print("hello: method5647");
}
public void method5648() {
System.out.print("hello: method5648");
}
public void method5649() {
System.out.print("hello: method5649");
}
public void method5650() {
System.out.print("hello: method5650");
}
public void method5651() {
System.out.print("hello: method5651");
}
public void method5652() {
System.out.print("hello: method5652");
}
public void method5653() {
System.out.print("hello: method5653");
}
public void method5654() {
System.out.print("hello: method5654");
}
public void method5655() {
System.out.print("hello: method5655");
}
public void method5656() {
System.out.print("hello: method5656");
}
public void method5657() {
System.out.print("hello: method5657");
}
public void method5658() {
System.out.print("hello: method5658");
}
public void method5659() {
System.out.print("hello: method5659");
}
public void method5660() {
System.out.print("hello: method5660");
}
public void method5661() {
System.out.print("hello: method5661");
}
public void method5662() {
System.out.print("hello: method5662");
}
public void method5663() {
System.out.print("hello: method5663");
}
public void method5664() {
System.out.print("hello: method5664");
}
public void method5665() {
System.out.print("hello: method5665");
}
public void method5666() {
System.out.print("hello: method5666");
}
public void method5667() {
System.out.print("hello: method5667");
}
public void method5668() {
System.out.print("hello: method5668");
}
public void method5669() {
System.out.print("hello: method5669");
}
public void method5670() {
System.out.print("hello: method5670");
}
public void method5671() {
System.out.print("hello: method5671");
}
public void method5672() {
System.out.print("hello: method5672");
}
public void method5673() {
System.out.print("hello: method5673");
}
public void method5674() {
System.out.print("hello: method5674");
}
public void method5675() {
System.out.print("hello: method5675");
}
public void method5676() {
System.out.print("hello: method5676");
}
public void method5677() {
System.out.print("hello: method5677");
}
public void method5678() {
System.out.print("hello: method5678");
}
public void method5679() {
System.out.print("hello: method5679");
}
public void method5680() {
System.out.print("hello: method5680");
}
public void method5681() {
System.out.print("hello: method5681");
}
public void method5682() {
System.out.print("hello: method5682");
}
public void method5683() {
System.out.print("hello: method5683");
}
public void method5684() {
System.out.print("hello: method5684");
}
public void method5685() {
System.out.print("hello: method5685");
}
public void method5686() {
System.out.print("hello: method5686");
}
public void method5687() {
System.out.print("hello: method5687");
}
public void method5688() {
System.out.print("hello: method5688");
}
public void method5689() {
System.out.print("hello: method5689");
}
public void method5690() {
System.out.print("hello: method5690");
}
public void method5691() {
System.out.print("hello: method5691");
}
public void method5692() {
System.out.print("hello: method5692");
}
public void method5693() {
System.out.print("hello: method5693");
}
public void method5694() {
System.out.print("hello: method5694");
}
public void method5695() {
System.out.print("hello: method5695");
}
public void method5696() {
System.out.print("hello: method5696");
}
public void method5697() {
System.out.print("hello: method5697");
}
public void method5698() {
System.out.print("hello: method5698");
}
public void method5699() {
System.out.print("hello: method5699");
}
public void method5700() {
System.out.print("hello: method5700");
}
public void method5701() {
System.out.print("hello: method5701");
}
public void method5702() {
System.out.print("hello: method5702");
}
public void method5703() {
System.out.print("hello: method5703");
}
public void method5704() {
System.out.print("hello: method5704");
}
public void method5705() {
System.out.print("hello: method5705");
}
public void method5706() {
System.out.print("hello: method5706");
}
public void method5707() {
System.out.print("hello: method5707");
}
public void method5708() {
System.out.print("hello: method5708");
}
public void method5709() {
System.out.print("hello: method5709");
}
public void method5710() {
System.out.print("hello: method5710");
}
public void method5711() {
System.out.print("hello: method5711");
}
public void method5712() {
System.out.print("hello: method5712");
}
public void method5713() {
System.out.print("hello: method5713");
}
public void method5714() {
System.out.print("hello: method5714");
}
public void method5715() {
System.out.print("hello: method5715");
}
public void method5716() {
System.out.print("hello: method5716");
}
public void method5717() {
System.out.print("hello: method5717");
}
public void method5718() {
System.out.print("hello: method5718");
}
public void method5719() {
System.out.print("hello: method5719");
}
public void method5720() {
System.out.print("hello: method5720");
}
public void method5721() {
System.out.print("hello: method5721");
}
public void method5722() {
System.out.print("hello: method5722");
}
public void method5723() {
System.out.print("hello: method5723");
}
public void method5724() {
System.out.print("hello: method5724");
}
public void method5725() {
System.out.print("hello: method5725");
}
public void method5726() {
System.out.print("hello: method5726");
}
public void method5727() {
System.out.print("hello: method5727");
}
public void method5728() {
System.out.print("hello: method5728");
}
public void method5729() {
System.out.print("hello: method5729");
}
public void method5730() {
System.out.print("hello: method5730");
}
public void method5731() {
System.out.print("hello: method5731");
}
public void method5732() {
System.out.print("hello: method5732");
}
public void method5733() {
System.out.print("hello: method5733");
}
public void method5734() {
System.out.print("hello: method5734");
}
public void method5735() {
System.out.print("hello: method5735");
}
public void method5736() {
System.out.print("hello: method5736");
}
public void method5737() {
System.out.print("hello: method5737");
}
public void method5738() {
System.out.print("hello: method5738");
}
public void method5739() {
System.out.print("hello: method5739");
}
public void method5740() {
System.out.print("hello: method5740");
}
public void method5741() {
System.out.print("hello: method5741");
}
public void method5742() {
System.out.print("hello: method5742");
}
public void method5743() {
System.out.print("hello: method5743");
}
public void method5744() {
System.out.print("hello: method5744");
}
public void method5745() {
System.out.print("hello: method5745");
}
public void method5746() {
System.out.print("hello: method5746");
}
public void method5747() {
System.out.print("hello: method5747");
}
public void method5748() {
System.out.print("hello: method5748");
}
public void method5749() {
System.out.print("hello: method5749");
}
public void method5750() {
System.out.print("hello: method5750");
}
public void method5751() {
System.out.print("hello: method5751");
}
public void method5752() {
System.out.print("hello: method5752");
}
public void method5753() {
System.out.print("hello: method5753");
}
public void method5754() {
System.out.print("hello: method5754");
}
public void method5755() {
System.out.print("hello: method5755");
}
public void method5756() {
System.out.print("hello: method5756");
}
public void method5757() {
System.out.print("hello: method5757");
}
public void method5758() {
System.out.print("hello: method5758");
}
public void method5759() {
System.out.print("hello: method5759");
}
public void method5760() {
System.out.print("hello: method5760");
}
public void method5761() {
System.out.print("hello: method5761");
}
public void method5762() {
System.out.print("hello: method5762");
}
public void method5763() {
System.out.print("hello: method5763");
}
public void method5764() {
System.out.print("hello: method5764");
}
public void method5765() {
System.out.print("hello: method5765");
}
public void method5766() {
System.out.print("hello: method5766");
}
public void method5767() {
System.out.print("hello: method5767");
}
public void method5768() {
System.out.print("hello: method5768");
}
public void method5769() {
System.out.print("hello: method5769");
}
public void method5770() {
System.out.print("hello: method5770");
}
public void method5771() {
System.out.print("hello: method5771");
}
public void method5772() {
System.out.print("hello: method5772");
}
public void method5773() {
System.out.print("hello: method5773");
}
public void method5774() {
System.out.print("hello: method5774");
}
public void method5775() {
System.out.print("hello: method5775");
}
public void method5776() {
System.out.print("hello: method5776");
}
public void method5777() {
System.out.print("hello: method5777");
}
public void method5778() {
System.out.print("hello: method5778");
}
public void method5779() {
System.out.print("hello: method5779");
}
public void method5780() {
System.out.print("hello: method5780");
}
public void method5781() {
System.out.print("hello: method5781");
}
public void method5782() {
System.out.print("hello: method5782");
}
public void method5783() {
System.out.print("hello: method5783");
}
public void method5784() {
System.out.print("hello: method5784");
}
public void method5785() {
System.out.print("hello: method5785");
}
public void method5786() {
System.out.print("hello: method5786");
}
public void method5787() {
System.out.print("hello: method5787");
}
public void method5788() {
System.out.print("hello: method5788");
}
public void method5789() {
System.out.print("hello: method5789");
}
public void method5790() {
System.out.print("hello: method5790");
}
public void method5791() {
System.out.print("hello: method5791");
}
public void method5792() {
System.out.print("hello: method5792");
}
public void method5793() {
System.out.print("hello: method5793");
}
public void method5794() {
System.out.print("hello: method5794");
}
public void method5795() {
System.out.print("hello: method5795");
}
public void method5796() {
System.out.print("hello: method5796");
}
public void method5797() {
System.out.print("hello: method5797");
}
public void method5798() {
System.out.print("hello: method5798");
}
public void method5799() {
System.out.print("hello: method5799");
}
public void method5800() {
System.out.print("hello: method5800");
}
public void method5801() {
System.out.print("hello: method5801");
}
public void method5802() {
System.out.print("hello: method5802");
}
public void method5803() {
System.out.print("hello: method5803");
}
public void method5804() {
System.out.print("hello: method5804");
}
public void method5805() {
System.out.print("hello: method5805");
}
public void method5806() {
System.out.print("hello: method5806");
}
public void method5807() {
System.out.print("hello: method5807");
}
public void method5808() {
System.out.print("hello: method5808");
}
public void method5809() {
System.out.print("hello: method5809");
}
public void method5810() {
System.out.print("hello: method5810");
}
public void method5811() {
System.out.print("hello: method5811");
}
public void method5812() {
System.out.print("hello: method5812");
}
public void method5813() {
System.out.print("hello: method5813");
}
public void method5814() {
System.out.print("hello: method5814");
}
public void method5815() {
System.out.print("hello: method5815");
}
public void method5816() {
System.out.print("hello: method5816");
}
public void method5817() {
System.out.print("hello: method5817");
}
public void method5818() {
System.out.print("hello: method5818");
}
public void method5819() {
System.out.print("hello: method5819");
}
public void method5820() {
System.out.print("hello: method5820");
}
public void method5821() {
System.out.print("hello: method5821");
}
public void method5822() {
System.out.print("hello: method5822");
}
public void method5823() {
System.out.print("hello: method5823");
}
public void method5824() {
System.out.print("hello: method5824");
}
public void method5825() {
System.out.print("hello: method5825");
}
public void method5826() {
System.out.print("hello: method5826");
}
public void method5827() {
System.out.print("hello: method5827");
}
public void method5828() {
System.out.print("hello: method5828");
}
public void method5829() {
System.out.print("hello: method5829");
}
public void method5830() {
System.out.print("hello: method5830");
}
public void method5831() {
System.out.print("hello: method5831");
}
public void method5832() {
System.out.print("hello: method5832");
}
public void method5833() {
System.out.print("hello: method5833");
}
public void method5834() {
System.out.print("hello: method5834");
}
public void method5835() {
System.out.print("hello: method5835");
}
public void method5836() {
System.out.print("hello: method5836");
}
public void method5837() {
System.out.print("hello: method5837");
}
public void method5838() {
System.out.print("hello: method5838");
}
public void method5839() {
System.out.print("hello: method5839");
}
public void method5840() {
System.out.print("hello: method5840");
}
public void method5841() {
System.out.print("hello: method5841");
}
public void method5842() {
System.out.print("hello: method5842");
}
public void method5843() {
System.out.print("hello: method5843");
}
public void method5844() {
System.out.print("hello: method5844");
}
public void method5845() {
System.out.print("hello: method5845");
}
public void method5846() {
System.out.print("hello: method5846");
}
public void method5847() {
System.out.print("hello: method5847");
}
public void method5848() {
System.out.print("hello: method5848");
}
public void method5849() {
System.out.print("hello: method5849");
}
public void method5850() {
System.out.print("hello: method5850");
}
public void method5851() {
System.out.print("hello: method5851");
}
public void method5852() {
System.out.print("hello: method5852");
}
public void method5853() {
System.out.print("hello: method5853");
}
public void method5854() {
System.out.print("hello: method5854");
}
public void method5855() {
System.out.print("hello: method5855");
}
public void method5856() {
System.out.print("hello: method5856");
}
public void method5857() {
System.out.print("hello: method5857");
}
public void method5858() {
System.out.print("hello: method5858");
}
public void method5859() {
System.out.print("hello: method5859");
}
public void method5860() {
System.out.print("hello: method5860");
}
public void method5861() {
System.out.print("hello: method5861");
}
public void method5862() {
System.out.print("hello: method5862");
}
public void method5863() {
System.out.print("hello: method5863");
}
public void method5864() {
System.out.print("hello: method5864");
}
public void method5865() {
System.out.print("hello: method5865");
}
public void method5866() {
System.out.print("hello: method5866");
}
public void method5867() {
System.out.print("hello: method5867");
}
public void method5868() {
System.out.print("hello: method5868");
}
public void method5869() {
System.out.print("hello: method5869");
}
public void method5870() {
System.out.print("hello: method5870");
}
public void method5871() {
System.out.print("hello: method5871");
}
public void method5872() {
System.out.print("hello: method5872");
}
public void method5873() {
System.out.print("hello: method5873");
}
public void method5874() {
System.out.print("hello: method5874");
}
public void method5875() {
System.out.print("hello: method5875");
}
public void method5876() {
System.out.print("hello: method5876");
}
public void method5877() {
System.out.print("hello: method5877");
}
public void method5878() {
System.out.print("hello: method5878");
}
public void method5879() {
System.out.print("hello: method5879");
}
public void method5880() {
System.out.print("hello: method5880");
}
public void method5881() {
System.out.print("hello: method5881");
}
public void method5882() {
System.out.print("hello: method5882");
}
public void method5883() {
System.out.print("hello: method5883");
}
public void method5884() {
System.out.print("hello: method5884");
}
public void method5885() {
System.out.print("hello: method5885");
}
public void method5886() {
System.out.print("hello: method5886");
}
public void method5887() {
System.out.print("hello: method5887");
}
public void method5888() {
System.out.print("hello: method5888");
}
public void method5889() {
System.out.print("hello: method5889");
}
public void method5890() {
System.out.print("hello: method5890");
}
public void method5891() {
System.out.print("hello: method5891");
}
public void method5892() {
System.out.print("hello: method5892");
}
public void method5893() {
System.out.print("hello: method5893");
}
public void method5894() {
System.out.print("hello: method5894");
}
public void method5895() {
System.out.print("hello: method5895");
}
public void method5896() {
System.out.print("hello: method5896");
}
public void method5897() {
System.out.print("hello: method5897");
}
public void method5898() {
System.out.print("hello: method5898");
}
public void method5899() {
System.out.print("hello: method5899");
}
public void method5900() {
System.out.print("hello: method5900");
}
public void method5901() {
System.out.print("hello: method5901");
}
public void method5902() {
System.out.print("hello: method5902");
}
public void method5903() {
System.out.print("hello: method5903");
}
public void method5904() {
System.out.print("hello: method5904");
}
public void method5905() {
System.out.print("hello: method5905");
}
public void method5906() {
System.out.print("hello: method5906");
}
public void method5907() {
System.out.print("hello: method5907");
}
public void method5908() {
System.out.print("hello: method5908");
}
public void method5909() {
System.out.print("hello: method5909");
}
public void method5910() {
System.out.print("hello: method5910");
}
public void method5911() {
System.out.print("hello: method5911");
}
public void method5912() {
System.out.print("hello: method5912");
}
public void method5913() {
System.out.print("hello: method5913");
}
public void method5914() {
System.out.print("hello: method5914");
}
public void method5915() {
System.out.print("hello: method5915");
}
public void method5916() {
System.out.print("hello: method5916");
}
public void method5917() {
System.out.print("hello: method5917");
}
public void method5918() {
System.out.print("hello: method5918");
}
public void method5919() {
System.out.print("hello: method5919");
}
public void method5920() {
System.out.print("hello: method5920");
}
public void method5921() {
System.out.print("hello: method5921");
}
public void method5922() {
System.out.print("hello: method5922");
}
public void method5923() {
System.out.print("hello: method5923");
}
public void method5924() {
System.out.print("hello: method5924");
}
public void method5925() {
System.out.print("hello: method5925");
}
public void method5926() {
System.out.print("hello: method5926");
}
public void method5927() {
System.out.print("hello: method5927");
}
public void method5928() {
System.out.print("hello: method5928");
}
public void method5929() {
System.out.print("hello: method5929");
}
public void method5930() {
System.out.print("hello: method5930");
}
public void method5931() {
System.out.print("hello: method5931");
}
public void method5932() {
System.out.print("hello: method5932");
}
public void method5933() {
System.out.print("hello: method5933");
}
public void method5934() {
System.out.print("hello: method5934");
}
public void method5935() {
System.out.print("hello: method5935");
}
public void method5936() {
System.out.print("hello: method5936");
}
public void method5937() {
System.out.print("hello: method5937");
}
public void method5938() {
System.out.print("hello: method5938");
}
public void method5939() {
System.out.print("hello: method5939");
}
public void method5940() {
System.out.print("hello: method5940");
}
public void method5941() {
System.out.print("hello: method5941");
}
public void method5942() {
System.out.print("hello: method5942");
}
public void method5943() {
System.out.print("hello: method5943");
}
public void method5944() {
System.out.print("hello: method5944");
}
public void method5945() {
System.out.print("hello: method5945");
}
public void method5946() {
System.out.print("hello: method5946");
}
public void method5947() {
System.out.print("hello: method5947");
}
public void method5948() {
System.out.print("hello: method5948");
}
public void method5949() {
System.out.print("hello: method5949");
}
public void method5950() {
System.out.print("hello: method5950");
}
public void method5951() {
System.out.print("hello: method5951");
}
public void method5952() {
System.out.print("hello: method5952");
}
public void method5953() {
System.out.print("hello: method5953");
}
public void method5954() {
System.out.print("hello: method5954");
}
public void method5955() {
System.out.print("hello: method5955");
}
public void method5956() {
System.out.print("hello: method5956");
}
public void method5957() {
System.out.print("hello: method5957");
}
public void method5958() {
System.out.print("hello: method5958");
}
public void method5959() {
System.out.print("hello: method5959");
}
public void method5960() {
System.out.print("hello: method5960");
}
public void method5961() {
System.out.print("hello: method5961");
}
public void method5962() {
System.out.print("hello: method5962");
}
public void method5963() {
System.out.print("hello: method5963");
}
public void method5964() {
System.out.print("hello: method5964");
}
public void method5965() {
System.out.print("hello: method5965");
}
public void method5966() {
System.out.print("hello: method5966");
}
public void method5967() {
System.out.print("hello: method5967");
}
public void method5968() {
System.out.print("hello: method5968");
}
public void method5969() {
System.out.print("hello: method5969");
}
public void method5970() {
System.out.print("hello: method5970");
}
public void method5971() {
System.out.print("hello: method5971");
}
public void method5972() {
System.out.print("hello: method5972");
}
public void method5973() {
System.out.print("hello: method5973");
}
public void method5974() {
System.out.print("hello: method5974");
}
public void method5975() {
System.out.print("hello: method5975");
}
public void method5976() {
System.out.print("hello: method5976");
}
public void method5977() {
System.out.print("hello: method5977");
}
public void method5978() {
System.out.print("hello: method5978");
}
public void method5979() {
System.out.print("hello: method5979");
}
public void method5980() {
System.out.print("hello: method5980");
}
public void method5981() {
System.out.print("hello: method5981");
}
public void method5982() {
System.out.print("hello: method5982");
}
public void method5983() {
System.out.print("hello: method5983");
}
public void method5984() {
System.out.print("hello: method5984");
}
public void method5985() {
System.out.print("hello: method5985");
}
public void method5986() {
System.out.print("hello: method5986");
}
public void method5987() {
System.out.print("hello: method5987");
}
public void method5988() {
System.out.print("hello: method5988");
}
public void method5989() {
System.out.print("hello: method5989");
}
public void method5990() {
System.out.print("hello: method5990");
}
public void method5991() {
System.out.print("hello: method5991");
}
public void method5992() {
System.out.print("hello: method5992");
}
public void method5993() {
System.out.print("hello: method5993");
}
public void method5994() {
System.out.print("hello: method5994");
}
public void method5995() {
System.out.print("hello: method5995");
}
public void method5996() {
System.out.print("hello: method5996");
}
public void method5997() {
System.out.print("hello: method5997");
}
public void method5998() {
System.out.print("hello: method5998");
}
public void method5999() {
System.out.print("hello: method5999");
}
public void method6000() {
System.out.print("hello: method6000");
}
public void method6001() {
System.out.print("hello: method6001");
}
public void method6002() {
System.out.print("hello: method6002");
}
public void method6003() {
System.out.print("hello: method6003");
}
public void method6004() {
System.out.print("hello: method6004");
}
public void method6005() {
System.out.print("hello: method6005");
}
public void method6006() {
System.out.print("hello: method6006");
}
public void method6007() {
System.out.print("hello: method6007");
}
public void method6008() {
System.out.print("hello: method6008");
}
public void method6009() {
System.out.print("hello: method6009");
}
public void method6010() {
System.out.print("hello: method6010");
}
public void method6011() {
System.out.print("hello: method6011");
}
public void method6012() {
System.out.print("hello: method6012");
}
public void method6013() {
System.out.print("hello: method6013");
}
public void method6014() {
System.out.print("hello: method6014");
}
public void method6015() {
System.out.print("hello: method6015");
}
public void method6016() {
System.out.print("hello: method6016");
}
public void method6017() {
System.out.print("hello: method6017");
}
public void method6018() {
System.out.print("hello: method6018");
}
public void method6019() {
System.out.print("hello: method6019");
}
public void method6020() {
System.out.print("hello: method6020");
}
public void method6021() {
System.out.print("hello: method6021");
}
public void method6022() {
System.out.print("hello: method6022");
}
public void method6023() {
System.out.print("hello: method6023");
}
public void method6024() {
System.out.print("hello: method6024");
}
public void method6025() {
System.out.print("hello: method6025");
}
public void method6026() {
System.out.print("hello: method6026");
}
public void method6027() {
System.out.print("hello: method6027");
}
public void method6028() {
System.out.print("hello: method6028");
}
public void method6029() {
System.out.print("hello: method6029");
}
public void method6030() {
System.out.print("hello: method6030");
}
public void method6031() {
System.out.print("hello: method6031");
}
public void method6032() {
System.out.print("hello: method6032");
}
public void method6033() {
System.out.print("hello: method6033");
}
public void method6034() {
System.out.print("hello: method6034");
}
public void method6035() {
System.out.print("hello: method6035");
}
public void method6036() {
System.out.print("hello: method6036");
}
public void method6037() {
System.out.print("hello: method6037");
}
public void method6038() {
System.out.print("hello: method6038");
}
public void method6039() {
System.out.print("hello: method6039");
}
public void method6040() {
System.out.print("hello: method6040");
}
public void method6041() {
System.out.print("hello: method6041");
}
public void method6042() {
System.out.print("hello: method6042");
}
public void method6043() {
System.out.print("hello: method6043");
}
public void method6044() {
System.out.print("hello: method6044");
}
public void method6045() {
System.out.print("hello: method6045");
}
public void method6046() {
System.out.print("hello: method6046");
}
public void method6047() {
System.out.print("hello: method6047");
}
public void method6048() {
System.out.print("hello: method6048");
}
public void method6049() {
System.out.print("hello: method6049");
}
public void method6050() {
System.out.print("hello: method6050");
}
public void method6051() {
System.out.print("hello: method6051");
}
public void method6052() {
System.out.print("hello: method6052");
}
public void method6053() {
System.out.print("hello: method6053");
}
public void method6054() {
System.out.print("hello: method6054");
}
public void method6055() {
System.out.print("hello: method6055");
}
public void method6056() {
System.out.print("hello: method6056");
}
public void method6057() {
System.out.print("hello: method6057");
}
public void method6058() {
System.out.print("hello: method6058");
}
public void method6059() {
System.out.print("hello: method6059");
}
public void method6060() {
System.out.print("hello: method6060");
}
public void method6061() {
System.out.print("hello: method6061");
}
public void method6062() {
System.out.print("hello: method6062");
}
public void method6063() {
System.out.print("hello: method6063");
}
public void method6064() {
System.out.print("hello: method6064");
}
public void method6065() {
System.out.print("hello: method6065");
}
public void method6066() {
System.out.print("hello: method6066");
}
public void method6067() {
System.out.print("hello: method6067");
}
public void method6068() {
System.out.print("hello: method6068");
}
public void method6069() {
System.out.print("hello: method6069");
}
public void method6070() {
System.out.print("hello: method6070");
}
public void method6071() {
System.out.print("hello: method6071");
}
public void method6072() {
System.out.print("hello: method6072");
}
public void method6073() {
System.out.print("hello: method6073");
}
public void method6074() {
System.out.print("hello: method6074");
}
public void method6075() {
System.out.print("hello: method6075");
}
public void method6076() {
System.out.print("hello: method6076");
}
public void method6077() {
System.out.print("hello: method6077");
}
public void method6078() {
System.out.print("hello: method6078");
}
public void method6079() {
System.out.print("hello: method6079");
}
public void method6080() {
System.out.print("hello: method6080");
}
public void method6081() {
System.out.print("hello: method6081");
}
public void method6082() {
System.out.print("hello: method6082");
}
public void method6083() {
System.out.print("hello: method6083");
}
public void method6084() {
System.out.print("hello: method6084");
}
public void method6085() {
System.out.print("hello: method6085");
}
public void method6086() {
System.out.print("hello: method6086");
}
public void method6087() {
System.out.print("hello: method6087");
}
public void method6088() {
System.out.print("hello: method6088");
}
public void method6089() {
System.out.print("hello: method6089");
}
public void method6090() {
System.out.print("hello: method6090");
}
public void method6091() {
System.out.print("hello: method6091");
}
public void method6092() {
System.out.print("hello: method6092");
}
public void method6093() {
System.out.print("hello: method6093");
}
public void method6094() {
System.out.print("hello: method6094");
}
public void method6095() {
System.out.print("hello: method6095");
}
public void method6096() {
System.out.print("hello: method6096");
}
public void method6097() {
System.out.print("hello: method6097");
}
public void method6098() {
System.out.print("hello: method6098");
}
public void method6099() {
System.out.print("hello: method6099");
}
public void method6100() {
System.out.print("hello: method6100");
}
public void method6101() {
System.out.print("hello: method6101");
}
public void method6102() {
System.out.print("hello: method6102");
}
public void method6103() {
System.out.print("hello: method6103");
}
public void method6104() {
System.out.print("hello: method6104");
}
public void method6105() {
System.out.print("hello: method6105");
}
public void method6106() {
System.out.print("hello: method6106");
}
public void method6107() {
System.out.print("hello: method6107");
}
public void method6108() {
System.out.print("hello: method6108");
}
public void method6109() {
System.out.print("hello: method6109");
}
public void method6110() {
System.out.print("hello: method6110");
}
public void method6111() {
System.out.print("hello: method6111");
}
public void method6112() {
System.out.print("hello: method6112");
}
public void method6113() {
System.out.print("hello: method6113");
}
public void method6114() {
System.out.print("hello: method6114");
}
public void method6115() {
System.out.print("hello: method6115");
}
public void method6116() {
System.out.print("hello: method6116");
}
public void method6117() {
System.out.print("hello: method6117");
}
public void method6118() {
System.out.print("hello: method6118");
}
public void method6119() {
System.out.print("hello: method6119");
}
public void method6120() {
System.out.print("hello: method6120");
}
public void method6121() {
System.out.print("hello: method6121");
}
public void method6122() {
System.out.print("hello: method6122");
}
public void method6123() {
System.out.print("hello: method6123");
}
public void method6124() {
System.out.print("hello: method6124");
}
public void method6125() {
System.out.print("hello: method6125");
}
public void method6126() {
System.out.print("hello: method6126");
}
public void method6127() {
System.out.print("hello: method6127");
}
public void method6128() {
System.out.print("hello: method6128");
}
public void method6129() {
System.out.print("hello: method6129");
}
public void method6130() {
System.out.print("hello: method6130");
}
public void method6131() {
System.out.print("hello: method6131");
}
public void method6132() {
System.out.print("hello: method6132");
}
public void method6133() {
System.out.print("hello: method6133");
}
public void method6134() {
System.out.print("hello: method6134");
}
public void method6135() {
System.out.print("hello: method6135");
}
public void method6136() {
System.out.print("hello: method6136");
}
public void method6137() {
System.out.print("hello: method6137");
}
public void method6138() {
System.out.print("hello: method6138");
}
public void method6139() {
System.out.print("hello: method6139");
}
public void method6140() {
System.out.print("hello: method6140");
}
public void method6141() {
System.out.print("hello: method6141");
}
public void method6142() {
System.out.print("hello: method6142");
}
public void method6143() {
System.out.print("hello: method6143");
}
public void method6144() {
System.out.print("hello: method6144");
}
public void method6145() {
System.out.print("hello: method6145");
}
public void method6146() {
System.out.print("hello: method6146");
}
public void method6147() {
System.out.print("hello: method6147");
}
public void method6148() {
System.out.print("hello: method6148");
}
public void method6149() {
System.out.print("hello: method6149");
}
public void method6150() {
System.out.print("hello: method6150");
}
public void method6151() {
System.out.print("hello: method6151");
}
public void method6152() {
System.out.print("hello: method6152");
}
public void method6153() {
System.out.print("hello: method6153");
}
public void method6154() {
System.out.print("hello: method6154");
}
public void method6155() {
System.out.print("hello: method6155");
}
public void method6156() {
System.out.print("hello: method6156");
}
public void method6157() {
System.out.print("hello: method6157");
}
public void method6158() {
System.out.print("hello: method6158");
}
public void method6159() {
System.out.print("hello: method6159");
}
public void method6160() {
System.out.print("hello: method6160");
}
public void method6161() {
System.out.print("hello: method6161");
}
public void method6162() {
System.out.print("hello: method6162");
}
public void method6163() {
System.out.print("hello: method6163");
}
public void method6164() {
System.out.print("hello: method6164");
}
public void method6165() {
System.out.print("hello: method6165");
}
public void method6166() {
System.out.print("hello: method6166");
}
public void method6167() {
System.out.print("hello: method6167");
}
public void method6168() {
System.out.print("hello: method6168");
}
public void method6169() {
System.out.print("hello: method6169");
}
public void method6170() {
System.out.print("hello: method6170");
}
public void method6171() {
System.out.print("hello: method6171");
}
public void method6172() {
System.out.print("hello: method6172");
}
public void method6173() {
System.out.print("hello: method6173");
}
public void method6174() {
System.out.print("hello: method6174");
}
public void method6175() {
System.out.print("hello: method6175");
}
public void method6176() {
System.out.print("hello: method6176");
}
public void method6177() {
System.out.print("hello: method6177");
}
public void method6178() {
System.out.print("hello: method6178");
}
public void method6179() {
System.out.print("hello: method6179");
}
public void method6180() {
System.out.print("hello: method6180");
}
public void method6181() {
System.out.print("hello: method6181");
}
public void method6182() {
System.out.print("hello: method6182");
}
public void method6183() {
System.out.print("hello: method6183");
}
public void method6184() {
System.out.print("hello: method6184");
}
public void method6185() {
System.out.print("hello: method6185");
}
public void method6186() {
System.out.print("hello: method6186");
}
public void method6187() {
System.out.print("hello: method6187");
}
public void method6188() {
System.out.print("hello: method6188");
}
public void method6189() {
System.out.print("hello: method6189");
}
public void method6190() {
System.out.print("hello: method6190");
}
public void method6191() {
System.out.print("hello: method6191");
}
public void method6192() {
System.out.print("hello: method6192");
}
public void method6193() {
System.out.print("hello: method6193");
}
public void method6194() {
System.out.print("hello: method6194");
}
public void method6195() {
System.out.print("hello: method6195");
}
public void method6196() {
System.out.print("hello: method6196");
}
public void method6197() {
System.out.print("hello: method6197");
}
public void method6198() {
System.out.print("hello: method6198");
}
public void method6199() {
System.out.print("hello: method6199");
}
public void method6200() {
System.out.print("hello: method6200");
}
public void method6201() {
System.out.print("hello: method6201");
}
public void method6202() {
System.out.print("hello: method6202");
}
public void method6203() {
System.out.print("hello: method6203");
}
public void method6204() {
System.out.print("hello: method6204");
}
public void method6205() {
System.out.print("hello: method6205");
}
public void method6206() {
System.out.print("hello: method6206");
}
public void method6207() {
System.out.print("hello: method6207");
}
public void method6208() {
System.out.print("hello: method6208");
}
public void method6209() {
System.out.print("hello: method6209");
}
public void method6210() {
System.out.print("hello: method6210");
}
public void method6211() {
System.out.print("hello: method6211");
}
public void method6212() {
System.out.print("hello: method6212");
}
public void method6213() {
System.out.print("hello: method6213");
}
public void method6214() {
System.out.print("hello: method6214");
}
public void method6215() {
System.out.print("hello: method6215");
}
public void method6216() {
System.out.print("hello: method6216");
}
public void method6217() {
System.out.print("hello: method6217");
}
public void method6218() {
System.out.print("hello: method6218");
}
public void method6219() {
System.out.print("hello: method6219");
}
public void method6220() {
System.out.print("hello: method6220");
}
public void method6221() {
System.out.print("hello: method6221");
}
public void method6222() {
System.out.print("hello: method6222");
}
public void method6223() {
System.out.print("hello: method6223");
}
public void method6224() {
System.out.print("hello: method6224");
}
public void method6225() {
System.out.print("hello: method6225");
}
public void method6226() {
System.out.print("hello: method6226");
}
public void method6227() {
System.out.print("hello: method6227");
}
public void method6228() {
System.out.print("hello: method6228");
}
public void method6229() {
System.out.print("hello: method6229");
}
public void method6230() {
System.out.print("hello: method6230");
}
public void method6231() {
System.out.print("hello: method6231");
}
public void method6232() {
System.out.print("hello: method6232");
}
public void method6233() {
System.out.print("hello: method6233");
}
public void method6234() {
System.out.print("hello: method6234");
}
public void method6235() {
System.out.print("hello: method6235");
}
public void method6236() {
System.out.print("hello: method6236");
}
public void method6237() {
System.out.print("hello: method6237");
}
public void method6238() {
System.out.print("hello: method6238");
}
public void method6239() {
System.out.print("hello: method6239");
}
public void method6240() {
System.out.print("hello: method6240");
}
public void method6241() {
System.out.print("hello: method6241");
}
public void method6242() {
System.out.print("hello: method6242");
}
public void method6243() {
System.out.print("hello: method6243");
}
public void method6244() {
System.out.print("hello: method6244");
}
public void method6245() {
System.out.print("hello: method6245");
}
public void method6246() {
System.out.print("hello: method6246");
}
public void method6247() {
System.out.print("hello: method6247");
}
public void method6248() {
System.out.print("hello: method6248");
}
public void method6249() {
System.out.print("hello: method6249");
}
public void method6250() {
System.out.print("hello: method6250");
}
public void method6251() {
System.out.print("hello: method6251");
}
public void method6252() {
System.out.print("hello: method6252");
}
public void method6253() {
System.out.print("hello: method6253");
}
public void method6254() {
System.out.print("hello: method6254");
}
public void method6255() {
System.out.print("hello: method6255");
}
public void method6256() {
System.out.print("hello: method6256");
}
public void method6257() {
System.out.print("hello: method6257");
}
public void method6258() {
System.out.print("hello: method6258");
}
public void method6259() {
System.out.print("hello: method6259");
}
public void method6260() {
System.out.print("hello: method6260");
}
public void method6261() {
System.out.print("hello: method6261");
}
public void method6262() {
System.out.print("hello: method6262");
}
public void method6263() {
System.out.print("hello: method6263");
}
public void method6264() {
System.out.print("hello: method6264");
}
public void method6265() {
System.out.print("hello: method6265");
}
public void method6266() {
System.out.print("hello: method6266");
}
public void method6267() {
System.out.print("hello: method6267");
}
public void method6268() {
System.out.print("hello: method6268");
}
public void method6269() {
System.out.print("hello: method6269");
}
public void method6270() {
System.out.print("hello: method6270");
}
public void method6271() {
System.out.print("hello: method6271");
}
public void method6272() {
System.out.print("hello: method6272");
}
public void method6273() {
System.out.print("hello: method6273");
}
public void method6274() {
System.out.print("hello: method6274");
}
public void method6275() {
System.out.print("hello: method6275");
}
public void method6276() {
System.out.print("hello: method6276");
}
public void method6277() {
System.out.print("hello: method6277");
}
public void method6278() {
System.out.print("hello: method6278");
}
public void method6279() {
System.out.print("hello: method6279");
}
public void method6280() {
System.out.print("hello: method6280");
}
public void method6281() {
System.out.print("hello: method6281");
}
public void method6282() {
System.out.print("hello: method6282");
}
public void method6283() {
System.out.print("hello: method6283");
}
public void method6284() {
System.out.print("hello: method6284");
}
public void method6285() {
System.out.print("hello: method6285");
}
public void method6286() {
System.out.print("hello: method6286");
}
public void method6287() {
System.out.print("hello: method6287");
}
public void method6288() {
System.out.print("hello: method6288");
}
public void method6289() {
System.out.print("hello: method6289");
}
public void method6290() {
System.out.print("hello: method6290");
}
public void method6291() {
System.out.print("hello: method6291");
}
public void method6292() {
System.out.print("hello: method6292");
}
public void method6293() {
System.out.print("hello: method6293");
}
public void method6294() {
System.out.print("hello: method6294");
}
public void method6295() {
System.out.print("hello: method6295");
}
public void method6296() {
System.out.print("hello: method6296");
}
public void method6297() {
System.out.print("hello: method6297");
}
public void method6298() {
System.out.print("hello: method6298");
}
public void method6299() {
System.out.print("hello: method6299");
}
public void method6300() {
System.out.print("hello: method6300");
}
public void method6301() {
System.out.print("hello: method6301");
}
public void method6302() {
System.out.print("hello: method6302");
}
public void method6303() {
System.out.print("hello: method6303");
}
public void method6304() {
System.out.print("hello: method6304");
}
public void method6305() {
System.out.print("hello: method6305");
}
public void method6306() {
System.out.print("hello: method6306");
}
public void method6307() {
System.out.print("hello: method6307");
}
public void method6308() {
System.out.print("hello: method6308");
}
public void method6309() {
System.out.print("hello: method6309");
}
public void method6310() {
System.out.print("hello: method6310");
}
public void method6311() {
System.out.print("hello: method6311");
}
public void method6312() {
System.out.print("hello: method6312");
}
public void method6313() {
System.out.print("hello: method6313");
}
public void method6314() {
System.out.print("hello: method6314");
}
public void method6315() {
System.out.print("hello: method6315");
}
public void method6316() {
System.out.print("hello: method6316");
}
public void method6317() {
System.out.print("hello: method6317");
}
public void method6318() {
System.out.print("hello: method6318");
}
public void method6319() {
System.out.print("hello: method6319");
}
public void method6320() {
System.out.print("hello: method6320");
}
public void method6321() {
System.out.print("hello: method6321");
}
public void method6322() {
System.out.print("hello: method6322");
}
public void method6323() {
System.out.print("hello: method6323");
}
public void method6324() {
System.out.print("hello: method6324");
}
public void method6325() {
System.out.print("hello: method6325");
}
public void method6326() {
System.out.print("hello: method6326");
}
public void method6327() {
System.out.print("hello: method6327");
}
public void method6328() {
System.out.print("hello: method6328");
}
public void method6329() {
System.out.print("hello: method6329");
}
public void method6330() {
System.out.print("hello: method6330");
}
public void method6331() {
System.out.print("hello: method6331");
}
public void method6332() {
System.out.print("hello: method6332");
}
public void method6333() {
System.out.print("hello: method6333");
}
public void method6334() {
System.out.print("hello: method6334");
}
public void method6335() {
System.out.print("hello: method6335");
}
public void method6336() {
System.out.print("hello: method6336");
}
public void method6337() {
System.out.print("hello: method6337");
}
public void method6338() {
System.out.print("hello: method6338");
}
public void method6339() {
System.out.print("hello: method6339");
}
public void method6340() {
System.out.print("hello: method6340");
}
public void method6341() {
System.out.print("hello: method6341");
}
public void method6342() {
System.out.print("hello: method6342");
}
public void method6343() {
System.out.print("hello: method6343");
}
public void method6344() {
System.out.print("hello: method6344");
}
public void method6345() {
System.out.print("hello: method6345");
}
public void method6346() {
System.out.print("hello: method6346");
}
public void method6347() {
System.out.print("hello: method6347");
}
public void method6348() {
System.out.print("hello: method6348");
}
public void method6349() {
System.out.print("hello: method6349");
}
public void method6350() {
System.out.print("hello: method6350");
}
public void method6351() {
System.out.print("hello: method6351");
}
public void method6352() {
System.out.print("hello: method6352");
}
public void method6353() {
System.out.print("hello: method6353");
}
public void method6354() {
System.out.print("hello: method6354");
}
public void method6355() {
System.out.print("hello: method6355");
}
public void method6356() {
System.out.print("hello: method6356");
}
public void method6357() {
System.out.print("hello: method6357");
}
public void method6358() {
System.out.print("hello: method6358");
}
public void method6359() {
System.out.print("hello: method6359");
}
public void method6360() {
System.out.print("hello: method6360");
}
public void method6361() {
System.out.print("hello: method6361");
}
public void method6362() {
System.out.print("hello: method6362");
}
public void method6363() {
System.out.print("hello: method6363");
}
public void method6364() {
System.out.print("hello: method6364");
}
public void method6365() {
System.out.print("hello: method6365");
}
public void method6366() {
System.out.print("hello: method6366");
}
public void method6367() {
System.out.print("hello: method6367");
}
public void method6368() {
System.out.print("hello: method6368");
}
public void method6369() {
System.out.print("hello: method6369");
}
public void method6370() {
System.out.print("hello: method6370");
}
public void method6371() {
System.out.print("hello: method6371");
}
public void method6372() {
System.out.print("hello: method6372");
}
public void method6373() {
System.out.print("hello: method6373");
}
public void method6374() {
System.out.print("hello: method6374");
}
public void method6375() {
System.out.print("hello: method6375");
}
public void method6376() {
System.out.print("hello: method6376");
}
public void method6377() {
System.out.print("hello: method6377");
}
public void method6378() {
System.out.print("hello: method6378");
}
public void method6379() {
System.out.print("hello: method6379");
}
public void method6380() {
System.out.print("hello: method6380");
}
public void method6381() {
System.out.print("hello: method6381");
}
public void method6382() {
System.out.print("hello: method6382");
}
public void method6383() {
System.out.print("hello: method6383");
}
public void method6384() {
System.out.print("hello: method6384");
}
public void method6385() {
System.out.print("hello: method6385");
}
public void method6386() {
System.out.print("hello: method6386");
}
public void method6387() {
System.out.print("hello: method6387");
}
public void method6388() {
System.out.print("hello: method6388");
}
public void method6389() {
System.out.print("hello: method6389");
}
public void method6390() {
System.out.print("hello: method6390");
}
public void method6391() {
System.out.print("hello: method6391");
}
public void method6392() {
System.out.print("hello: method6392");
}
public void method6393() {
System.out.print("hello: method6393");
}
public void method6394() {
System.out.print("hello: method6394");
}
public void method6395() {
System.out.print("hello: method6395");
}
public void method6396() {
System.out.print("hello: method6396");
}
public void method6397() {
System.out.print("hello: method6397");
}
public void method6398() {
System.out.print("hello: method6398");
}
public void method6399() {
System.out.print("hello: method6399");
}
public void method6400() {
System.out.print("hello: method6400");
}
public void method6401() {
System.out.print("hello: method6401");
}
public void method6402() {
System.out.print("hello: method6402");
}
public void method6403() {
System.out.print("hello: method6403");
}
public void method6404() {
System.out.print("hello: method6404");
}
public void method6405() {
System.out.print("hello: method6405");
}
public void method6406() {
System.out.print("hello: method6406");
}
public void method6407() {
System.out.print("hello: method6407");
}
public void method6408() {
System.out.print("hello: method6408");
}
public void method6409() {
System.out.print("hello: method6409");
}
public void method6410() {
System.out.print("hello: method6410");
}
public void method6411() {
System.out.print("hello: method6411");
}
public void method6412() {
System.out.print("hello: method6412");
}
public void method6413() {
System.out.print("hello: method6413");
}
public void method6414() {
System.out.print("hello: method6414");
}
public void method6415() {
System.out.print("hello: method6415");
}
public void method6416() {
System.out.print("hello: method6416");
}
public void method6417() {
System.out.print("hello: method6417");
}
public void method6418() {
System.out.print("hello: method6418");
}
public void method6419() {
System.out.print("hello: method6419");
}
public void method6420() {
System.out.print("hello: method6420");
}
public void method6421() {
System.out.print("hello: method6421");
}
public void method6422() {
System.out.print("hello: method6422");
}
public void method6423() {
System.out.print("hello: method6423");
}
public void method6424() {
System.out.print("hello: method6424");
}
public void method6425() {
System.out.print("hello: method6425");
}
public void method6426() {
System.out.print("hello: method6426");
}
public void method6427() {
System.out.print("hello: method6427");
}
public void method6428() {
System.out.print("hello: method6428");
}
public void method6429() {
System.out.print("hello: method6429");
}
public void method6430() {
System.out.print("hello: method6430");
}
public void method6431() {
System.out.print("hello: method6431");
}
public void method6432() {
System.out.print("hello: method6432");
}
public void method6433() {
System.out.print("hello: method6433");
}
public void method6434() {
System.out.print("hello: method6434");
}
public void method6435() {
System.out.print("hello: method6435");
}
public void method6436() {
System.out.print("hello: method6436");
}
public void method6437() {
System.out.print("hello: method6437");
}
public void method6438() {
System.out.print("hello: method6438");
}
public void method6439() {
System.out.print("hello: method6439");
}
public void method6440() {
System.out.print("hello: method6440");
}
public void method6441() {
System.out.print("hello: method6441");
}
public void method6442() {
System.out.print("hello: method6442");
}
public void method6443() {
System.out.print("hello: method6443");
}
public void method6444() {
System.out.print("hello: method6444");
}
public void method6445() {
System.out.print("hello: method6445");
}
public void method6446() {
System.out.print("hello: method6446");
}
public void method6447() {
System.out.print("hello: method6447");
}
public void method6448() {
System.out.print("hello: method6448");
}
public void method6449() {
System.out.print("hello: method6449");
}
public void method6450() {
System.out.print("hello: method6450");
}
public void method6451() {
System.out.print("hello: method6451");
}
public void method6452() {
System.out.print("hello: method6452");
}
public void method6453() {
System.out.print("hello: method6453");
}
public void method6454() {
System.out.print("hello: method6454");
}
public void method6455() {
System.out.print("hello: method6455");
}
public void method6456() {
System.out.print("hello: method6456");
}
public void method6457() {
System.out.print("hello: method6457");
}
public void method6458() {
System.out.print("hello: method6458");
}
public void method6459() {
System.out.print("hello: method6459");
}
public void method6460() {
System.out.print("hello: method6460");
}
public void method6461() {
System.out.print("hello: method6461");
}
public void method6462() {
System.out.print("hello: method6462");
}
public void method6463() {
System.out.print("hello: method6463");
}
public void method6464() {
System.out.print("hello: method6464");
}
public void method6465() {
System.out.print("hello: method6465");
}
public void method6466() {
System.out.print("hello: method6466");
}
public void method6467() {
System.out.print("hello: method6467");
}
public void method6468() {
System.out.print("hello: method6468");
}
public void method6469() {
System.out.print("hello: method6469");
}
public void method6470() {
System.out.print("hello: method6470");
}
public void method6471() {
System.out.print("hello: method6471");
}
public void method6472() {
System.out.print("hello: method6472");
}
public void method6473() {
System.out.print("hello: method6473");
}
public void method6474() {
System.out.print("hello: method6474");
}
public void method6475() {
System.out.print("hello: method6475");
}
public void method6476() {
System.out.print("hello: method6476");
}
public void method6477() {
System.out.print("hello: method6477");
}
public void method6478() {
System.out.print("hello: method6478");
}
public void method6479() {
System.out.print("hello: method6479");
}
public void method6480() {
System.out.print("hello: method6480");
}
public void method6481() {
System.out.print("hello: method6481");
}
public void method6482() {
System.out.print("hello: method6482");
}
public void method6483() {
System.out.print("hello: method6483");
}
public void method6484() {
System.out.print("hello: method6484");
}
public void method6485() {
System.out.print("hello: method6485");
}
public void method6486() {
System.out.print("hello: method6486");
}
public void method6487() {
System.out.print("hello: method6487");
}
public void method6488() {
System.out.print("hello: method6488");
}
public void method6489() {
System.out.print("hello: method6489");
}
public void method6490() {
System.out.print("hello: method6490");
}
public void method6491() {
System.out.print("hello: method6491");
}
public void method6492() {
System.out.print("hello: method6492");
}
public void method6493() {
System.out.print("hello: method6493");
}
public void method6494() {
System.out.print("hello: method6494");
}
public void method6495() {
System.out.print("hello: method6495");
}
public void method6496() {
System.out.print("hello: method6496");
}
public void method6497() {
System.out.print("hello: method6497");
}
public void method6498() {
System.out.print("hello: method6498");
}
public void method6499() {
System.out.print("hello: method6499");
}
public void method6500() {
System.out.print("hello: method6500");
}
public void method6501() {
System.out.print("hello: method6501");
}
public void method6502() {
System.out.print("hello: method6502");
}
public void method6503() {
System.out.print("hello: method6503");
}
public void method6504() {
System.out.print("hello: method6504");
}
public void method6505() {
System.out.print("hello: method6505");
}
public void method6506() {
System.out.print("hello: method6506");
}
public void method6507() {
System.out.print("hello: method6507");
}
public void method6508() {
System.out.print("hello: method6508");
}
public void method6509() {
System.out.print("hello: method6509");
}
public void method6510() {
System.out.print("hello: method6510");
}
public void method6511() {
System.out.print("hello: method6511");
}
public void method6512() {
System.out.print("hello: method6512");
}
public void method6513() {
System.out.print("hello: method6513");
}
public void method6514() {
System.out.print("hello: method6514");
}
public void method6515() {
System.out.print("hello: method6515");
}
public void method6516() {
System.out.print("hello: method6516");
}
public void method6517() {
System.out.print("hello: method6517");
}
public void method6518() {
System.out.print("hello: method6518");
}
public void method6519() {
System.out.print("hello: method6519");
}
public void method6520() {
System.out.print("hello: method6520");
}
public void method6521() {
System.out.print("hello: method6521");
}
public void method6522() {
System.out.print("hello: method6522");
}
public void method6523() {
System.out.print("hello: method6523");
}
public void method6524() {
System.out.print("hello: method6524");
}
public void method6525() {
System.out.print("hello: method6525");
}
public void method6526() {
System.out.print("hello: method6526");
}
public void method6527() {
System.out.print("hello: method6527");
}
public void method6528() {
System.out.print("hello: method6528");
}
public void method6529() {
System.out.print("hello: method6529");
}
public void method6530() {
System.out.print("hello: method6530");
}
public void method6531() {
System.out.print("hello: method6531");
}
public void method6532() {
System.out.print("hello: method6532");
}
public void method6533() {
System.out.print("hello: method6533");
}
public void method6534() {
System.out.print("hello: method6534");
}
public void method6535() {
System.out.print("hello: method6535");
}
public void method6536() {
System.out.print("hello: method6536");
}
public void method6537() {
System.out.print("hello: method6537");
}
public void method6538() {
System.out.print("hello: method6538");
}
public void method6539() {
System.out.print("hello: method6539");
}
public void method6540() {
System.out.print("hello: method6540");
}
public void method6541() {
System.out.print("hello: method6541");
}
public void method6542() {
System.out.print("hello: method6542");
}
public void method6543() {
System.out.print("hello: method6543");
}
public void method6544() {
System.out.print("hello: method6544");
}
public void method6545() {
System.out.print("hello: method6545");
}
public void method6546() {
System.out.print("hello: method6546");
}
public void method6547() {
System.out.print("hello: method6547");
}
public void method6548() {
System.out.print("hello: method6548");
}
public void method6549() {
System.out.print("hello: method6549");
}
public void method6550() {
System.out.print("hello: method6550");
}
public void method6551() {
System.out.print("hello: method6551");
}
public void method6552() {
System.out.print("hello: method6552");
}
public void method6553() {
System.out.print("hello: method6553");
}
public void method6554() {
System.out.print("hello: method6554");
}
public void method6555() {
System.out.print("hello: method6555");
}
public void method6556() {
System.out.print("hello: method6556");
}
public void method6557() {
System.out.print("hello: method6557");
}
public void method6558() {
System.out.print("hello: method6558");
}
public void method6559() {
System.out.print("hello: method6559");
}
public void method6560() {
System.out.print("hello: method6560");
}
public void method6561() {
System.out.print("hello: method6561");
}
public void method6562() {
System.out.print("hello: method6562");
}
public void method6563() {
System.out.print("hello: method6563");
}
public void method6564() {
System.out.print("hello: method6564");
}
public void method6565() {
System.out.print("hello: method6565");
}
public void method6566() {
System.out.print("hello: method6566");
}
public void method6567() {
System.out.print("hello: method6567");
}
public void method6568() {
System.out.print("hello: method6568");
}
public void method6569() {
System.out.print("hello: method6569");
}
public void method6570() {
System.out.print("hello: method6570");
}
public void method6571() {
System.out.print("hello: method6571");
}
public void method6572() {
System.out.print("hello: method6572");
}
public void method6573() {
System.out.print("hello: method6573");
}
public void method6574() {
System.out.print("hello: method6574");
}
public void method6575() {
System.out.print("hello: method6575");
}
public void method6576() {
System.out.print("hello: method6576");
}
public void method6577() {
System.out.print("hello: method6577");
}
public void method6578() {
System.out.print("hello: method6578");
}
public void method6579() {
System.out.print("hello: method6579");
}
public void method6580() {
System.out.print("hello: method6580");
}
public void method6581() {
System.out.print("hello: method6581");
}
public void method6582() {
System.out.print("hello: method6582");
}
public void method6583() {
System.out.print("hello: method6583");
}
public void method6584() {
System.out.print("hello: method6584");
}
public void method6585() {
System.out.print("hello: method6585");
}
public void method6586() {
System.out.print("hello: method6586");
}
public void method6587() {
System.out.print("hello: method6587");
}
public void method6588() {
System.out.print("hello: method6588");
}
public void method6589() {
System.out.print("hello: method6589");
}
public void method6590() {
System.out.print("hello: method6590");
}
public void method6591() {
System.out.print("hello: method6591");
}
public void method6592() {
System.out.print("hello: method6592");
}
public void method6593() {
System.out.print("hello: method6593");
}
public void method6594() {
System.out.print("hello: method6594");
}
public void method6595() {
System.out.print("hello: method6595");
}
public void method6596() {
System.out.print("hello: method6596");
}
public void method6597() {
System.out.print("hello: method6597");
}
public void method6598() {
System.out.print("hello: method6598");
}
public void method6599() {
System.out.print("hello: method6599");
}
public void method6600() {
System.out.print("hello: method6600");
}
public void method6601() {
System.out.print("hello: method6601");
}
public void method6602() {
System.out.print("hello: method6602");
}
public void method6603() {
System.out.print("hello: method6603");
}
public void method6604() {
System.out.print("hello: method6604");
}
public void method6605() {
System.out.print("hello: method6605");
}
public void method6606() {
System.out.print("hello: method6606");
}
public void method6607() {
System.out.print("hello: method6607");
}
public void method6608() {
System.out.print("hello: method6608");
}
public void method6609() {
System.out.print("hello: method6609");
}
public void method6610() {
System.out.print("hello: method6610");
}
public void method6611() {
System.out.print("hello: method6611");
}
public void method6612() {
System.out.print("hello: method6612");
}
public void method6613() {
System.out.print("hello: method6613");
}
public void method6614() {
System.out.print("hello: method6614");
}
public void method6615() {
System.out.print("hello: method6615");
}
public void method6616() {
System.out.print("hello: method6616");
}
public void method6617() {
System.out.print("hello: method6617");
}
public void method6618() {
System.out.print("hello: method6618");
}
public void method6619() {
System.out.print("hello: method6619");
}
public void method6620() {
System.out.print("hello: method6620");
}
public void method6621() {
System.out.print("hello: method6621");
}
public void method6622() {
System.out.print("hello: method6622");
}
public void method6623() {
System.out.print("hello: method6623");
}
public void method6624() {
System.out.print("hello: method6624");
}
public void method6625() {
System.out.print("hello: method6625");
}
public void method6626() {
System.out.print("hello: method6626");
}
public void method6627() {
System.out.print("hello: method6627");
}
public void method6628() {
System.out.print("hello: method6628");
}
public void method6629() {
System.out.print("hello: method6629");
}
public void method6630() {
System.out.print("hello: method6630");
}
public void method6631() {
System.out.print("hello: method6631");
}
public void method6632() {
System.out.print("hello: method6632");
}
public void method6633() {
System.out.print("hello: method6633");
}
public void method6634() {
System.out.print("hello: method6634");
}
public void method6635() {
System.out.print("hello: method6635");
}
public void method6636() {
System.out.print("hello: method6636");
}
public void method6637() {
System.out.print("hello: method6637");
}
public void method6638() {
System.out.print("hello: method6638");
}
public void method6639() {
System.out.print("hello: method6639");
}
public void method6640() {
System.out.print("hello: method6640");
}
public void method6641() {
System.out.print("hello: method6641");
}
public void method6642() {
System.out.print("hello: method6642");
}
public void method6643() {
System.out.print("hello: method6643");
}
public void method6644() {
System.out.print("hello: method6644");
}
public void method6645() {
System.out.print("hello: method6645");
}
public void method6646() {
System.out.print("hello: method6646");
}
public void method6647() {
System.out.print("hello: method6647");
}
public void method6648() {
System.out.print("hello: method6648");
}
public void method6649() {
System.out.print("hello: method6649");
}
public void method6650() {
System.out.print("hello: method6650");
}
public void method6651() {
System.out.print("hello: method6651");
}
public void method6652() {
System.out.print("hello: method6652");
}
public void method6653() {
System.out.print("hello: method6653");
}
public void method6654() {
System.out.print("hello: method6654");
}
public void method6655() {
System.out.print("hello: method6655");
}
public void method6656() {
System.out.print("hello: method6656");
}
public void method6657() {
System.out.print("hello: method6657");
}
public void method6658() {
System.out.print("hello: method6658");
}
public void method6659() {
System.out.print("hello: method6659");
}
public void method6660() {
System.out.print("hello: method6660");
}
public void method6661() {
System.out.print("hello: method6661");
}
public void method6662() {
System.out.print("hello: method6662");
}
public void method6663() {
System.out.print("hello: method6663");
}
public void method6664() {
System.out.print("hello: method6664");
}
public void method6665() {
System.out.print("hello: method6665");
}
public void method6666() {
System.out.print("hello: method6666");
}
public void method6667() {
System.out.print("hello: method6667");
}
public void method6668() {
System.out.print("hello: method6668");
}
public void method6669() {
System.out.print("hello: method6669");
}
public void method6670() {
System.out.print("hello: method6670");
}
public void method6671() {
System.out.print("hello: method6671");
}
public void method6672() {
System.out.print("hello: method6672");
}
public void method6673() {
System.out.print("hello: method6673");
}
public void method6674() {
System.out.print("hello: method6674");
}
public void method6675() {
System.out.print("hello: method6675");
}
public void method6676() {
System.out.print("hello: method6676");
}
public void method6677() {
System.out.print("hello: method6677");
}
public void method6678() {
System.out.print("hello: method6678");
}
public void method6679() {
System.out.print("hello: method6679");
}
public void method6680() {
System.out.print("hello: method6680");
}
public void method6681() {
System.out.print("hello: method6681");
}
public void method6682() {
System.out.print("hello: method6682");
}
public void method6683() {
System.out.print("hello: method6683");
}
public void method6684() {
System.out.print("hello: method6684");
}
public void method6685() {
System.out.print("hello: method6685");
}
public void method6686() {
System.out.print("hello: method6686");
}
public void method6687() {
System.out.print("hello: method6687");
}
public void method6688() {
System.out.print("hello: method6688");
}
public void method6689() {
System.out.print("hello: method6689");
}
public void method6690() {
System.out.print("hello: method6690");
}
public void method6691() {
System.out.print("hello: method6691");
}
public void method6692() {
System.out.print("hello: method6692");
}
public void method6693() {
System.out.print("hello: method6693");
}
public void method6694() {
System.out.print("hello: method6694");
}
public void method6695() {
System.out.print("hello: method6695");
}
public void method6696() {
System.out.print("hello: method6696");
}
public void method6697() {
System.out.print("hello: method6697");
}
public void method6698() {
System.out.print("hello: method6698");
}
public void method6699() {
System.out.print("hello: method6699");
}
public void method6700() {
System.out.print("hello: method6700");
}
public void method6701() {
System.out.print("hello: method6701");
}
public void method6702() {
System.out.print("hello: method6702");
}
public void method6703() {
System.out.print("hello: method6703");
}
public void method6704() {
System.out.print("hello: method6704");
}
public void method6705() {
System.out.print("hello: method6705");
}
public void method6706() {
System.out.print("hello: method6706");
}
public void method6707() {
System.out.print("hello: method6707");
}
public void method6708() {
System.out.print("hello: method6708");
}
public void method6709() {
System.out.print("hello: method6709");
}
public void method6710() {
System.out.print("hello: method6710");
}
public void method6711() {
System.out.print("hello: method6711");
}
public void method6712() {
System.out.print("hello: method6712");
}
public void method6713() {
System.out.print("hello: method6713");
}
public void method6714() {
System.out.print("hello: method6714");
}
public void method6715() {
System.out.print("hello: method6715");
}
public void method6716() {
System.out.print("hello: method6716");
}
public void method6717() {
System.out.print("hello: method6717");
}
public void method6718() {
System.out.print("hello: method6718");
}
public void method6719() {
System.out.print("hello: method6719");
}
public void method6720() {
System.out.print("hello: method6720");
}
public void method6721() {
System.out.print("hello: method6721");
}
public void method6722() {
System.out.print("hello: method6722");
}
public void method6723() {
System.out.print("hello: method6723");
}
public void method6724() {
System.out.print("hello: method6724");
}
public void method6725() {
System.out.print("hello: method6725");
}
public void method6726() {
System.out.print("hello: method6726");
}
public void method6727() {
System.out.print("hello: method6727");
}
public void method6728() {
System.out.print("hello: method6728");
}
public void method6729() {
System.out.print("hello: method6729");
}
public void method6730() {
System.out.print("hello: method6730");
}
public void method6731() {
System.out.print("hello: method6731");
}
public void method6732() {
System.out.print("hello: method6732");
}
public void method6733() {
System.out.print("hello: method6733");
}
public void method6734() {
System.out.print("hello: method6734");
}
public void method6735() {
System.out.print("hello: method6735");
}
public void method6736() {
System.out.print("hello: method6736");
}
public void method6737() {
System.out.print("hello: method6737");
}
public void method6738() {
System.out.print("hello: method6738");
}
public void method6739() {
System.out.print("hello: method6739");
}
public void method6740() {
System.out.print("hello: method6740");
}
public void method6741() {
System.out.print("hello: method6741");
}
public void method6742() {
System.out.print("hello: method6742");
}
public void method6743() {
System.out.print("hello: method6743");
}
public void method6744() {
System.out.print("hello: method6744");
}
public void method6745() {
System.out.print("hello: method6745");
}
public void method6746() {
System.out.print("hello: method6746");
}
public void method6747() {
System.out.print("hello: method6747");
}
public void method6748() {
System.out.print("hello: method6748");
}
public void method6749() {
System.out.print("hello: method6749");
}
public void method6750() {
System.out.print("hello: method6750");
}
public void method6751() {
System.out.print("hello: method6751");
}
public void method6752() {
System.out.print("hello: method6752");
}
public void method6753() {
System.out.print("hello: method6753");
}
public void method6754() {
System.out.print("hello: method6754");
}
public void method6755() {
System.out.print("hello: method6755");
}
public void method6756() {
System.out.print("hello: method6756");
}
public void method6757() {
System.out.print("hello: method6757");
}
public void method6758() {
System.out.print("hello: method6758");
}
public void method6759() {
System.out.print("hello: method6759");
}
public void method6760() {
System.out.print("hello: method6760");
}
public void method6761() {
System.out.print("hello: method6761");
}
public void method6762() {
System.out.print("hello: method6762");
}
public void method6763() {
System.out.print("hello: method6763");
}
public void method6764() {
System.out.print("hello: method6764");
}
public void method6765() {
System.out.print("hello: method6765");
}
public void method6766() {
System.out.print("hello: method6766");
}
public void method6767() {
System.out.print("hello: method6767");
}
public void method6768() {
System.out.print("hello: method6768");
}
public void method6769() {
System.out.print("hello: method6769");
}
public void method6770() {
System.out.print("hello: method6770");
}
public void method6771() {
System.out.print("hello: method6771");
}
public void method6772() {
System.out.print("hello: method6772");
}
public void method6773() {
System.out.print("hello: method6773");
}
public void method6774() {
System.out.print("hello: method6774");
}
public void method6775() {
System.out.print("hello: method6775");
}
public void method6776() {
System.out.print("hello: method6776");
}
public void method6777() {
System.out.print("hello: method6777");
}
public void method6778() {
System.out.print("hello: method6778");
}
public void method6779() {
System.out.print("hello: method6779");
}
public void method6780() {
System.out.print("hello: method6780");
}
public void method6781() {
System.out.print("hello: method6781");
}
public void method6782() {
System.out.print("hello: method6782");
}
public void method6783() {
System.out.print("hello: method6783");
}
public void method6784() {
System.out.print("hello: method6784");
}
public void method6785() {
System.out.print("hello: method6785");
}
public void method6786() {
System.out.print("hello: method6786");
}
public void method6787() {
System.out.print("hello: method6787");
}
public void method6788() {
System.out.print("hello: method6788");
}
public void method6789() {
System.out.print("hello: method6789");
}
public void method6790() {
System.out.print("hello: method6790");
}
public void method6791() {
System.out.print("hello: method6791");
}
public void method6792() {
System.out.print("hello: method6792");
}
public void method6793() {
System.out.print("hello: method6793");
}
public void method6794() {
System.out.print("hello: method6794");
}
public void method6795() {
System.out.print("hello: method6795");
}
public void method6796() {
System.out.print("hello: method6796");
}
public void method6797() {
System.out.print("hello: method6797");
}
public void method6798() {
System.out.print("hello: method6798");
}
public void method6799() {
System.out.print("hello: method6799");
}
public void method6800() {
System.out.print("hello: method6800");
}
public void method6801() {
System.out.print("hello: method6801");
}
public void method6802() {
System.out.print("hello: method6802");
}
public void method6803() {
System.out.print("hello: method6803");
}
public void method6804() {
System.out.print("hello: method6804");
}
public void method6805() {
System.out.print("hello: method6805");
}
public void method6806() {
System.out.print("hello: method6806");
}
public void method6807() {
System.out.print("hello: method6807");
}
public void method6808() {
System.out.print("hello: method6808");
}
public void method6809() {
System.out.print("hello: method6809");
}
public void method6810() {
System.out.print("hello: method6810");
}
public void method6811() {
System.out.print("hello: method6811");
}
public void method6812() {
System.out.print("hello: method6812");
}
public void method6813() {
System.out.print("hello: method6813");
}
public void method6814() {
System.out.print("hello: method6814");
}
public void method6815() {
System.out.print("hello: method6815");
}
public void method6816() {
System.out.print("hello: method6816");
}
public void method6817() {
System.out.print("hello: method6817");
}
public void method6818() {
System.out.print("hello: method6818");
}
public void method6819() {
System.out.print("hello: method6819");
}
public void method6820() {
System.out.print("hello: method6820");
}
public void method6821() {
System.out.print("hello: method6821");
}
public void method6822() {
System.out.print("hello: method6822");
}
public void method6823() {
System.out.print("hello: method6823");
}
public void method6824() {
System.out.print("hello: method6824");
}
public void method6825() {
System.out.print("hello: method6825");
}
public void method6826() {
System.out.print("hello: method6826");
}
public void method6827() {
System.out.print("hello: method6827");
}
public void method6828() {
System.out.print("hello: method6828");
}
public void method6829() {
System.out.print("hello: method6829");
}
public void method6830() {
System.out.print("hello: method6830");
}
public void method6831() {
System.out.print("hello: method6831");
}
public void method6832() {
System.out.print("hello: method6832");
}
public void method6833() {
System.out.print("hello: method6833");
}
public void method6834() {
System.out.print("hello: method6834");
}
public void method6835() {
System.out.print("hello: method6835");
}
public void method6836() {
System.out.print("hello: method6836");
}
public void method6837() {
System.out.print("hello: method6837");
}
public void method6838() {
System.out.print("hello: method6838");
}
public void method6839() {
System.out.print("hello: method6839");
}
public void method6840() {
System.out.print("hello: method6840");
}
public void method6841() {
System.out.print("hello: method6841");
}
public void method6842() {
System.out.print("hello: method6842");
}
public void method6843() {
System.out.print("hello: method6843");
}
public void method6844() {
System.out.print("hello: method6844");
}
public void method6845() {
System.out.print("hello: method6845");
}
public void method6846() {
System.out.print("hello: method6846");
}
public void method6847() {
System.out.print("hello: method6847");
}
public void method6848() {
System.out.print("hello: method6848");
}
public void method6849() {
System.out.print("hello: method6849");
}
public void method6850() {
System.out.print("hello: method6850");
}
public void method6851() {
System.out.print("hello: method6851");
}
public void method6852() {
System.out.print("hello: method6852");
}
public void method6853() {
System.out.print("hello: method6853");
}
public void method6854() {
System.out.print("hello: method6854");
}
public void method6855() {
System.out.print("hello: method6855");
}
public void method6856() {
System.out.print("hello: method6856");
}
public void method6857() {
System.out.print("hello: method6857");
}
public void method6858() {
System.out.print("hello: method6858");
}
public void method6859() {
System.out.print("hello: method6859");
}
public void method6860() {
System.out.print("hello: method6860");
}
public void method6861() {
System.out.print("hello: method6861");
}
public void method6862() {
System.out.print("hello: method6862");
}
public void method6863() {
System.out.print("hello: method6863");
}
public void method6864() {
System.out.print("hello: method6864");
}
public void method6865() {
System.out.print("hello: method6865");
}
public void method6866() {
System.out.print("hello: method6866");
}
public void method6867() {
System.out.print("hello: method6867");
}
public void method6868() {
System.out.print("hello: method6868");
}
public void method6869() {
System.out.print("hello: method6869");
}
public void method6870() {
System.out.print("hello: method6870");
}
public void method6871() {
System.out.print("hello: method6871");
}
public void method6872() {
System.out.print("hello: method6872");
}
public void method6873() {
System.out.print("hello: method6873");
}
public void method6874() {
System.out.print("hello: method6874");
}
public void method6875() {
System.out.print("hello: method6875");
}
public void method6876() {
System.out.print("hello: method6876");
}
public void method6877() {
System.out.print("hello: method6877");
}
public void method6878() {
System.out.print("hello: method6878");
}
public void method6879() {
System.out.print("hello: method6879");
}
public void method6880() {
System.out.print("hello: method6880");
}
public void method6881() {
System.out.print("hello: method6881");
}
public void method6882() {
System.out.print("hello: method6882");
}
public void method6883() {
System.out.print("hello: method6883");
}
public void method6884() {
System.out.print("hello: method6884");
}
public void method6885() {
System.out.print("hello: method6885");
}
public void method6886() {
System.out.print("hello: method6886");
}
public void method6887() {
System.out.print("hello: method6887");
}
public void method6888() {
System.out.print("hello: method6888");
}
public void method6889() {
System.out.print("hello: method6889");
}
public void method6890() {
System.out.print("hello: method6890");
}
public void method6891() {
System.out.print("hello: method6891");
}
public void method6892() {
System.out.print("hello: method6892");
}
public void method6893() {
System.out.print("hello: method6893");
}
public void method6894() {
System.out.print("hello: method6894");
}
public void method6895() {
System.out.print("hello: method6895");
}
public void method6896() {
System.out.print("hello: method6896");
}
public void method6897() {
System.out.print("hello: method6897");
}
public void method6898() {
System.out.print("hello: method6898");
}
public void method6899() {
System.out.print("hello: method6899");
}
public void method6900() {
System.out.print("hello: method6900");
}
public void method6901() {
System.out.print("hello: method6901");
}
public void method6902() {
System.out.print("hello: method6902");
}
public void method6903() {
System.out.print("hello: method6903");
}
public void method6904() {
System.out.print("hello: method6904");
}
public void method6905() {
System.out.print("hello: method6905");
}
public void method6906() {
System.out.print("hello: method6906");
}
public void method6907() {
System.out.print("hello: method6907");
}
public void method6908() {
System.out.print("hello: method6908");
}
public void method6909() {
System.out.print("hello: method6909");
}
public void method6910() {
System.out.print("hello: method6910");
}
public void method6911() {
System.out.print("hello: method6911");
}
public void method6912() {
System.out.print("hello: method6912");
}
public void method6913() {
System.out.print("hello: method6913");
}
public void method6914() {
System.out.print("hello: method6914");
}
public void method6915() {
System.out.print("hello: method6915");
}
public void method6916() {
System.out.print("hello: method6916");
}
public void method6917() {
System.out.print("hello: method6917");
}
public void method6918() {
System.out.print("hello: method6918");
}
public void method6919() {
System.out.print("hello: method6919");
}
public void method6920() {
System.out.print("hello: method6920");
}
public void method6921() {
System.out.print("hello: method6921");
}
public void method6922() {
System.out.print("hello: method6922");
}
public void method6923() {
System.out.print("hello: method6923");
}
public void method6924() {
System.out.print("hello: method6924");
}
public void method6925() {
System.out.print("hello: method6925");
}
public void method6926() {
System.out.print("hello: method6926");
}
public void method6927() {
System.out.print("hello: method6927");
}
public void method6928() {
System.out.print("hello: method6928");
}
public void method6929() {
System.out.print("hello: method6929");
}
public void method6930() {
System.out.print("hello: method6930");
}
public void method6931() {
System.out.print("hello: method6931");
}
public void method6932() {
System.out.print("hello: method6932");
}
public void method6933() {
System.out.print("hello: method6933");
}
public void method6934() {
System.out.print("hello: method6934");
}
public void method6935() {
System.out.print("hello: method6935");
}
public void method6936() {
System.out.print("hello: method6936");
}
public void method6937() {
System.out.print("hello: method6937");
}
public void method6938() {
System.out.print("hello: method6938");
}
public void method6939() {
System.out.print("hello: method6939");
}
public void method6940() {
System.out.print("hello: method6940");
}
public void method6941() {
System.out.print("hello: method6941");
}
public void method6942() {
System.out.print("hello: method6942");
}
public void method6943() {
System.out.print("hello: method6943");
}
public void method6944() {
System.out.print("hello: method6944");
}
public void method6945() {
System.out.print("hello: method6945");
}
public void method6946() {
System.out.print("hello: method6946");
}
public void method6947() {
System.out.print("hello: method6947");
}
public void method6948() {
System.out.print("hello: method6948");
}
public void method6949() {
System.out.print("hello: method6949");
}
public void method6950() {
System.out.print("hello: method6950");
}
public void method6951() {
System.out.print("hello: method6951");
}
public void method6952() {
System.out.print("hello: method6952");
}
public void method6953() {
System.out.print("hello: method6953");
}
public void method6954() {
System.out.print("hello: method6954");
}
public void method6955() {
System.out.print("hello: method6955");
}
public void method6956() {
System.out.print("hello: method6956");
}
public void method6957() {
System.out.print("hello: method6957");
}
public void method6958() {
System.out.print("hello: method6958");
}
public void method6959() {
System.out.print("hello: method6959");
}
public void method6960() {
System.out.print("hello: method6960");
}
public void method6961() {
System.out.print("hello: method6961");
}
public void method6962() {
System.out.print("hello: method6962");
}
public void method6963() {
System.out.print("hello: method6963");
}
public void method6964() {
System.out.print("hello: method6964");
}
public void method6965() {
System.out.print("hello: method6965");
}
public void method6966() {
System.out.print("hello: method6966");
}
public void method6967() {
System.out.print("hello: method6967");
}
public void method6968() {
System.out.print("hello: method6968");
}
public void method6969() {
System.out.print("hello: method6969");
}
public void method6970() {
System.out.print("hello: method6970");
}
public void method6971() {
System.out.print("hello: method6971");
}
public void method6972() {
System.out.print("hello: method6972");
}
public void method6973() {
System.out.print("hello: method6973");
}
public void method6974() {
System.out.print("hello: method6974");
}
public void method6975() {
System.out.print("hello: method6975");
}
public void method6976() {
System.out.print("hello: method6976");
}
public void method6977() {
System.out.print("hello: method6977");
}
public void method6978() {
System.out.print("hello: method6978");
}
public void method6979() {
System.out.print("hello: method6979");
}
public void method6980() {
System.out.print("hello: method6980");
}
public void method6981() {
System.out.print("hello: method6981");
}
public void method6982() {
System.out.print("hello: method6982");
}
public void method6983() {
System.out.print("hello: method6983");
}
public void method6984() {
System.out.print("hello: method6984");
}
public void method6985() {
System.out.print("hello: method6985");
}
public void method6986() {
System.out.print("hello: method6986");
}
public void method6987() {
System.out.print("hello: method6987");
}
public void method6988() {
System.out.print("hello: method6988");
}
public void method6989() {
System.out.print("hello: method6989");
}
public void method6990() {
System.out.print("hello: method6990");
}
public void method6991() {
System.out.print("hello: method6991");
}
public void method6992() {
System.out.print("hello: method6992");
}
public void method6993() {
System.out.print("hello: method6993");
}
public void method6994() {
System.out.print("hello: method6994");
}
public void method6995() {
System.out.print("hello: method6995");
}
public void method6996() {
System.out.print("hello: method6996");
}
public void method6997() {
System.out.print("hello: method6997");
}
public void method6998() {
System.out.print("hello: method6998");
}
public void method6999() {
System.out.print("hello: method6999");
}
public void method7000() {
System.out.print("hello: method7000");
}
public void method7001() {
System.out.print("hello: method7001");
}
public void method7002() {
System.out.print("hello: method7002");
}
public void method7003() {
System.out.print("hello: method7003");
}
public void method7004() {
System.out.print("hello: method7004");
}
public void method7005() {
System.out.print("hello: method7005");
}
public void method7006() {
System.out.print("hello: method7006");
}
public void method7007() {
System.out.print("hello: method7007");
}
public void method7008() {
System.out.print("hello: method7008");
}
public void method7009() {
System.out.print("hello: method7009");
}
public void method7010() {
System.out.print("hello: method7010");
}
public void method7011() {
System.out.print("hello: method7011");
}
public void method7012() {
System.out.print("hello: method7012");
}
public void method7013() {
System.out.print("hello: method7013");
}
public void method7014() {
System.out.print("hello: method7014");
}
public void method7015() {
System.out.print("hello: method7015");
}
public void method7016() {
System.out.print("hello: method7016");
}
public void method7017() {
System.out.print("hello: method7017");
}
public void method7018() {
System.out.print("hello: method7018");
}
public void method7019() {
System.out.print("hello: method7019");
}
public void method7020() {
System.out.print("hello: method7020");
}
public void method7021() {
System.out.print("hello: method7021");
}
public void method7022() {
System.out.print("hello: method7022");
}
public void method7023() {
System.out.print("hello: method7023");
}
public void method7024() {
System.out.print("hello: method7024");
}
public void method7025() {
System.out.print("hello: method7025");
}
public void method7026() {
System.out.print("hello: method7026");
}
public void method7027() {
System.out.print("hello: method7027");
}
public void method7028() {
System.out.print("hello: method7028");
}
public void method7029() {
System.out.print("hello: method7029");
}
public void method7030() {
System.out.print("hello: method7030");
}
public void method7031() {
System.out.print("hello: method7031");
}
public void method7032() {
System.out.print("hello: method7032");
}
public void method7033() {
System.out.print("hello: method7033");
}
public void method7034() {
System.out.print("hello: method7034");
}
public void method7035() {
System.out.print("hello: method7035");
}
public void method7036() {
System.out.print("hello: method7036");
}
public void method7037() {
System.out.print("hello: method7037");
}
public void method7038() {
System.out.print("hello: method7038");
}
public void method7039() {
System.out.print("hello: method7039");
}
public void method7040() {
System.out.print("hello: method7040");
}
public void method7041() {
System.out.print("hello: method7041");
}
public void method7042() {
System.out.print("hello: method7042");
}
public void method7043() {
System.out.print("hello: method7043");
}
public void method7044() {
System.out.print("hello: method7044");
}
public void method7045() {
System.out.print("hello: method7045");
}
public void method7046() {
System.out.print("hello: method7046");
}
public void method7047() {
System.out.print("hello: method7047");
}
public void method7048() {
System.out.print("hello: method7048");
}
public void method7049() {
System.out.print("hello: method7049");
}
public void method7050() {
System.out.print("hello: method7050");
}
public void method7051() {
System.out.print("hello: method7051");
}
public void method7052() {
System.out.print("hello: method7052");
}
public void method7053() {
System.out.print("hello: method7053");
}
public void method7054() {
System.out.print("hello: method7054");
}
public void method7055() {
System.out.print("hello: method7055");
}
public void method7056() {
System.out.print("hello: method7056");
}
public void method7057() {
System.out.print("hello: method7057");
}
public void method7058() {
System.out.print("hello: method7058");
}
public void method7059() {
System.out.print("hello: method7059");
}
public void method7060() {
System.out.print("hello: method7060");
}
public void method7061() {
System.out.print("hello: method7061");
}
public void method7062() {
System.out.print("hello: method7062");
}
public void method7063() {
System.out.print("hello: method7063");
}
public void method7064() {
System.out.print("hello: method7064");
}
public void method7065() {
System.out.print("hello: method7065");
}
public void method7066() {
System.out.print("hello: method7066");
}
public void method7067() {
System.out.print("hello: method7067");
}
public void method7068() {
System.out.print("hello: method7068");
}
public void method7069() {
System.out.print("hello: method7069");
}
public void method7070() {
System.out.print("hello: method7070");
}
public void method7071() {
System.out.print("hello: method7071");
}
public void method7072() {
System.out.print("hello: method7072");
}
public void method7073() {
System.out.print("hello: method7073");
}
public void method7074() {
System.out.print("hello: method7074");
}
public void method7075() {
System.out.print("hello: method7075");
}
public void method7076() {
System.out.print("hello: method7076");
}
public void method7077() {
System.out.print("hello: method7077");
}
public void method7078() {
System.out.print("hello: method7078");
}
public void method7079() {
System.out.print("hello: method7079");
}
public void method7080() {
System.out.print("hello: method7080");
}
public void method7081() {
System.out.print("hello: method7081");
}
public void method7082() {
System.out.print("hello: method7082");
}
public void method7083() {
System.out.print("hello: method7083");
}
public void method7084() {
System.out.print("hello: method7084");
}
public void method7085() {
System.out.print("hello: method7085");
}
public void method7086() {
System.out.print("hello: method7086");
}
public void method7087() {
System.out.print("hello: method7087");
}
public void method7088() {
System.out.print("hello: method7088");
}
public void method7089() {
System.out.print("hello: method7089");
}
public void method7090() {
System.out.print("hello: method7090");
}
public void method7091() {
System.out.print("hello: method7091");
}
public void method7092() {
System.out.print("hello: method7092");
}
public void method7093() {
System.out.print("hello: method7093");
}
public void method7094() {
System.out.print("hello: method7094");
}
public void method7095() {
System.out.print("hello: method7095");
}
public void method7096() {
System.out.print("hello: method7096");
}
public void method7097() {
System.out.print("hello: method7097");
}
public void method7098() {
System.out.print("hello: method7098");
}
public void method7099() {
System.out.print("hello: method7099");
}
public void method7100() {
System.out.print("hello: method7100");
}
public void method7101() {
System.out.print("hello: method7101");
}
public void method7102() {
System.out.print("hello: method7102");
}
public void method7103() {
System.out.print("hello: method7103");
}
public void method7104() {
System.out.print("hello: method7104");
}
public void method7105() {
System.out.print("hello: method7105");
}
public void method7106() {
System.out.print("hello: method7106");
}
public void method7107() {
System.out.print("hello: method7107");
}
public void method7108() {
System.out.print("hello: method7108");
}
public void method7109() {
System.out.print("hello: method7109");
}
public void method7110() {
System.out.print("hello: method7110");
}
public void method7111() {
System.out.print("hello: method7111");
}
public void method7112() {
System.out.print("hello: method7112");
}
public void method7113() {
System.out.print("hello: method7113");
}
public void method7114() {
System.out.print("hello: method7114");
}
public void method7115() {
System.out.print("hello: method7115");
}
public void method7116() {
System.out.print("hello: method7116");
}
public void method7117() {
System.out.print("hello: method7117");
}
public void method7118() {
System.out.print("hello: method7118");
}
public void method7119() {
System.out.print("hello: method7119");
}
public void method7120() {
System.out.print("hello: method7120");
}
public void method7121() {
System.out.print("hello: method7121");
}
public void method7122() {
System.out.print("hello: method7122");
}
public void method7123() {
System.out.print("hello: method7123");
}
public void method7124() {
System.out.print("hello: method7124");
}
public void method7125() {
System.out.print("hello: method7125");
}
public void method7126() {
System.out.print("hello: method7126");
}
public void method7127() {
System.out.print("hello: method7127");
}
public void method7128() {
System.out.print("hello: method7128");
}
public void method7129() {
System.out.print("hello: method7129");
}
public void method7130() {
System.out.print("hello: method7130");
}
public void method7131() {
System.out.print("hello: method7131");
}
public void method7132() {
System.out.print("hello: method7132");
}
public void method7133() {
System.out.print("hello: method7133");
}
public void method7134() {
System.out.print("hello: method7134");
}
public void method7135() {
System.out.print("hello: method7135");
}
public void method7136() {
System.out.print("hello: method7136");
}
public void method7137() {
System.out.print("hello: method7137");
}
public void method7138() {
System.out.print("hello: method7138");
}
public void method7139() {
System.out.print("hello: method7139");
}
public void method7140() {
System.out.print("hello: method7140");
}
public void method7141() {
System.out.print("hello: method7141");
}
public void method7142() {
System.out.print("hello: method7142");
}
public void method7143() {
System.out.print("hello: method7143");
}
public void method7144() {
System.out.print("hello: method7144");
}
public void method7145() {
System.out.print("hello: method7145");
}
public void method7146() {
System.out.print("hello: method7146");
}
public void method7147() {
System.out.print("hello: method7147");
}
public void method7148() {
System.out.print("hello: method7148");
}
public void method7149() {
System.out.print("hello: method7149");
}
public void method7150() {
System.out.print("hello: method7150");
}
public void method7151() {
System.out.print("hello: method7151");
}
public void method7152() {
System.out.print("hello: method7152");
}
public void method7153() {
System.out.print("hello: method7153");
}
public void method7154() {
System.out.print("hello: method7154");
}
public void method7155() {
System.out.print("hello: method7155");
}
public void method7156() {
System.out.print("hello: method7156");
}
public void method7157() {
System.out.print("hello: method7157");
}
public void method7158() {
System.out.print("hello: method7158");
}
public void method7159() {
System.out.print("hello: method7159");
}
public void method7160() {
System.out.print("hello: method7160");
}
public void method7161() {
System.out.print("hello: method7161");
}
public void method7162() {
System.out.print("hello: method7162");
}
public void method7163() {
System.out.print("hello: method7163");
}
public void method7164() {
System.out.print("hello: method7164");
}
public void method7165() {
System.out.print("hello: method7165");
}
public void method7166() {
System.out.print("hello: method7166");
}
public void method7167() {
System.out.print("hello: method7167");
}
public void method7168() {
System.out.print("hello: method7168");
}
public void method7169() {
System.out.print("hello: method7169");
}
public void method7170() {
System.out.print("hello: method7170");
}
public void method7171() {
System.out.print("hello: method7171");
}
public void method7172() {
System.out.print("hello: method7172");
}
public void method7173() {
System.out.print("hello: method7173");
}
public void method7174() {
System.out.print("hello: method7174");
}
public void method7175() {
System.out.print("hello: method7175");
}
public void method7176() {
System.out.print("hello: method7176");
}
public void method7177() {
System.out.print("hello: method7177");
}
public void method7178() {
System.out.print("hello: method7178");
}
public void method7179() {
System.out.print("hello: method7179");
}
public void method7180() {
System.out.print("hello: method7180");
}
public void method7181() {
System.out.print("hello: method7181");
}
public void method7182() {
System.out.print("hello: method7182");
}
public void method7183() {
System.out.print("hello: method7183");
}
public void method7184() {
System.out.print("hello: method7184");
}
public void method7185() {
System.out.print("hello: method7185");
}
public void method7186() {
System.out.print("hello: method7186");
}
public void method7187() {
System.out.print("hello: method7187");
}
public void method7188() {
System.out.print("hello: method7188");
}
public void method7189() {
System.out.print("hello: method7189");
}
public void method7190() {
System.out.print("hello: method7190");
}
public void method7191() {
System.out.print("hello: method7191");
}
public void method7192() {
System.out.print("hello: method7192");
}
public void method7193() {
System.out.print("hello: method7193");
}
public void method7194() {
System.out.print("hello: method7194");
}
public void method7195() {
System.out.print("hello: method7195");
}
public void method7196() {
System.out.print("hello: method7196");
}
public void method7197() {
System.out.print("hello: method7197");
}
public void method7198() {
System.out.print("hello: method7198");
}
public void method7199() {
System.out.print("hello: method7199");
}
public void method7200() {
System.out.print("hello: method7200");
}
public void method7201() {
System.out.print("hello: method7201");
}
public void method7202() {
System.out.print("hello: method7202");
}
public void method7203() {
System.out.print("hello: method7203");
}
public void method7204() {
System.out.print("hello: method7204");
}
public void method7205() {
System.out.print("hello: method7205");
}
public void method7206() {
System.out.print("hello: method7206");
}
public void method7207() {
System.out.print("hello: method7207");
}
public void method7208() {
System.out.print("hello: method7208");
}
public void method7209() {
System.out.print("hello: method7209");
}
public void method7210() {
System.out.print("hello: method7210");
}
public void method7211() {
System.out.print("hello: method7211");
}
public void method7212() {
System.out.print("hello: method7212");
}
public void method7213() {
System.out.print("hello: method7213");
}
public void method7214() {
System.out.print("hello: method7214");
}
public void method7215() {
System.out.print("hello: method7215");
}
public void method7216() {
System.out.print("hello: method7216");
}
public void method7217() {
System.out.print("hello: method7217");
}
public void method7218() {
System.out.print("hello: method7218");
}
public void method7219() {
System.out.print("hello: method7219");
}
public void method7220() {
System.out.print("hello: method7220");
}
public void method7221() {
System.out.print("hello: method7221");
}
public void method7222() {
System.out.print("hello: method7222");
}
public void method7223() {
System.out.print("hello: method7223");
}
public void method7224() {
System.out.print("hello: method7224");
}
public void method7225() {
System.out.print("hello: method7225");
}
public void method7226() {
System.out.print("hello: method7226");
}
public void method7227() {
System.out.print("hello: method7227");
}
public void method7228() {
System.out.print("hello: method7228");
}
public void method7229() {
System.out.print("hello: method7229");
}
public void method7230() {
System.out.print("hello: method7230");
}
public void method7231() {
System.out.print("hello: method7231");
}
public void method7232() {
System.out.print("hello: method7232");
}
public void method7233() {
System.out.print("hello: method7233");
}
public void method7234() {
System.out.print("hello: method7234");
}
public void method7235() {
System.out.print("hello: method7235");
}
public void method7236() {
System.out.print("hello: method7236");
}
public void method7237() {
System.out.print("hello: method7237");
}
public void method7238() {
System.out.print("hello: method7238");
}
public void method7239() {
System.out.print("hello: method7239");
}
public void method7240() {
System.out.print("hello: method7240");
}
public void method7241() {
System.out.print("hello: method7241");
}
public void method7242() {
System.out.print("hello: method7242");
}
public void method7243() {
System.out.print("hello: method7243");
}
public void method7244() {
System.out.print("hello: method7244");
}
public void method7245() {
System.out.print("hello: method7245");
}
public void method7246() {
System.out.print("hello: method7246");
}
public void method7247() {
System.out.print("hello: method7247");
}
public void method7248() {
System.out.print("hello: method7248");
}
public void method7249() {
System.out.print("hello: method7249");
}
public void method7250() {
System.out.print("hello: method7250");
}
public void method7251() {
System.out.print("hello: method7251");
}
public void method7252() {
System.out.print("hello: method7252");
}
public void method7253() {
System.out.print("hello: method7253");
}
public void method7254() {
System.out.print("hello: method7254");
}
public void method7255() {
System.out.print("hello: method7255");
}
public void method7256() {
System.out.print("hello: method7256");
}
public void method7257() {
System.out.print("hello: method7257");
}
public void method7258() {
System.out.print("hello: method7258");
}
public void method7259() {
System.out.print("hello: method7259");
}
public void method7260() {
System.out.print("hello: method7260");
}
public void method7261() {
System.out.print("hello: method7261");
}
public void method7262() {
System.out.print("hello: method7262");
}
public void method7263() {
System.out.print("hello: method7263");
}
public void method7264() {
System.out.print("hello: method7264");
}
public void method7265() {
System.out.print("hello: method7265");
}
public void method7266() {
System.out.print("hello: method7266");
}
public void method7267() {
System.out.print("hello: method7267");
}
public void method7268() {
System.out.print("hello: method7268");
}
public void method7269() {
System.out.print("hello: method7269");
}
public void method7270() {
System.out.print("hello: method7270");
}
public void method7271() {
System.out.print("hello: method7271");
}
public void method7272() {
System.out.print("hello: method7272");
}
public void method7273() {
System.out.print("hello: method7273");
}
public void method7274() {
System.out.print("hello: method7274");
}
public void method7275() {
System.out.print("hello: method7275");
}
public void method7276() {
System.out.print("hello: method7276");
}
public void method7277() {
System.out.print("hello: method7277");
}
public void method7278() {
System.out.print("hello: method7278");
}
public void method7279() {
System.out.print("hello: method7279");
}
public void method7280() {
System.out.print("hello: method7280");
}
public void method7281() {
System.out.print("hello: method7281");
}
public void method7282() {
System.out.print("hello: method7282");
}
public void method7283() {
System.out.print("hello: method7283");
}
public void method7284() {
System.out.print("hello: method7284");
}
public void method7285() {
System.out.print("hello: method7285");
}
public void method7286() {
System.out.print("hello: method7286");
}
public void method7287() {
System.out.print("hello: method7287");
}
public void method7288() {
System.out.print("hello: method7288");
}
public void method7289() {
System.out.print("hello: method7289");
}
public void method7290() {
System.out.print("hello: method7290");
}
public void method7291() {
System.out.print("hello: method7291");
}
public void method7292() {
System.out.print("hello: method7292");
}
public void method7293() {
System.out.print("hello: method7293");
}
public void method7294() {
System.out.print("hello: method7294");
}
public void method7295() {
System.out.print("hello: method7295");
}
public void method7296() {
System.out.print("hello: method7296");
}
public void method7297() {
System.out.print("hello: method7297");
}
public void method7298() {
System.out.print("hello: method7298");
}
public void method7299() {
System.out.print("hello: method7299");
}
public void method7300() {
System.out.print("hello: method7300");
}
public void method7301() {
System.out.print("hello: method7301");
}
public void method7302() {
System.out.print("hello: method7302");
}
public void method7303() {
System.out.print("hello: method7303");
}
public void method7304() {
System.out.print("hello: method7304");
}
public void method7305() {
System.out.print("hello: method7305");
}
public void method7306() {
System.out.print("hello: method7306");
}
public void method7307() {
System.out.print("hello: method7307");
}
public void method7308() {
System.out.print("hello: method7308");
}
public void method7309() {
System.out.print("hello: method7309");
}
public void method7310() {
System.out.print("hello: method7310");
}
public void method7311() {
System.out.print("hello: method7311");
}
public void method7312() {
System.out.print("hello: method7312");
}
public void method7313() {
System.out.print("hello: method7313");
}
public void method7314() {
System.out.print("hello: method7314");
}
public void method7315() {
System.out.print("hello: method7315");
}
public void method7316() {
System.out.print("hello: method7316");
}
public void method7317() {
System.out.print("hello: method7317");
}
public void method7318() {
System.out.print("hello: method7318");
}
public void method7319() {
System.out.print("hello: method7319");
}
public void method7320() {
System.out.print("hello: method7320");
}
public void method7321() {
System.out.print("hello: method7321");
}
public void method7322() {
System.out.print("hello: method7322");
}
public void method7323() {
System.out.print("hello: method7323");
}
public void method7324() {
System.out.print("hello: method7324");
}
public void method7325() {
System.out.print("hello: method7325");
}
public void method7326() {
System.out.print("hello: method7326");
}
public void method7327() {
System.out.print("hello: method7327");
}
public void method7328() {
System.out.print("hello: method7328");
}
public void method7329() {
System.out.print("hello: method7329");
}
public void method7330() {
System.out.print("hello: method7330");
}
public void method7331() {
System.out.print("hello: method7331");
}
public void method7332() {
System.out.print("hello: method7332");
}
public void method7333() {
System.out.print("hello: method7333");
}
public void method7334() {
System.out.print("hello: method7334");
}
public void method7335() {
System.out.print("hello: method7335");
}
public void method7336() {
System.out.print("hello: method7336");
}
public void method7337() {
System.out.print("hello: method7337");
}
public void method7338() {
System.out.print("hello: method7338");
}
public void method7339() {
System.out.print("hello: method7339");
}
public void method7340() {
System.out.print("hello: method7340");
}
public void method7341() {
System.out.print("hello: method7341");
}
public void method7342() {
System.out.print("hello: method7342");
}
public void method7343() {
System.out.print("hello: method7343");
}
public void method7344() {
System.out.print("hello: method7344");
}
public void method7345() {
System.out.print("hello: method7345");
}
public void method7346() {
System.out.print("hello: method7346");
}
public void method7347() {
System.out.print("hello: method7347");
}
public void method7348() {
System.out.print("hello: method7348");
}
public void method7349() {
System.out.print("hello: method7349");
}
public void method7350() {
System.out.print("hello: method7350");
}
public void method7351() {
System.out.print("hello: method7351");
}
public void method7352() {
System.out.print("hello: method7352");
}
public void method7353() {
System.out.print("hello: method7353");
}
public void method7354() {
System.out.print("hello: method7354");
}
public void method7355() {
System.out.print("hello: method7355");
}
public void method7356() {
System.out.print("hello: method7356");
}
public void method7357() {
System.out.print("hello: method7357");
}
public void method7358() {
System.out.print("hello: method7358");
}
public void method7359() {
System.out.print("hello: method7359");
}
public void method7360() {
System.out.print("hello: method7360");
}
public void method7361() {
System.out.print("hello: method7361");
}
public void method7362() {
System.out.print("hello: method7362");
}
public void method7363() {
System.out.print("hello: method7363");
}
public void method7364() {
System.out.print("hello: method7364");
}
public void method7365() {
System.out.print("hello: method7365");
}
public void method7366() {
System.out.print("hello: method7366");
}
public void method7367() {
System.out.print("hello: method7367");
}
public void method7368() {
System.out.print("hello: method7368");
}
public void method7369() {
System.out.print("hello: method7369");
}
public void method7370() {
System.out.print("hello: method7370");
}
public void method7371() {
System.out.print("hello: method7371");
}
public void method7372() {
System.out.print("hello: method7372");
}
public void method7373() {
System.out.print("hello: method7373");
}
public void method7374() {
System.out.print("hello: method7374");
}
public void method7375() {
System.out.print("hello: method7375");
}
public void method7376() {
System.out.print("hello: method7376");
}
public void method7377() {
System.out.print("hello: method7377");
}
public void method7378() {
System.out.print("hello: method7378");
}
public void method7379() {
System.out.print("hello: method7379");
}
public void method7380() {
System.out.print("hello: method7380");
}
public void method7381() {
System.out.print("hello: method7381");
}
public void method7382() {
System.out.print("hello: method7382");
}
public void method7383() {
System.out.print("hello: method7383");
}
public void method7384() {
System.out.print("hello: method7384");
}
public void method7385() {
System.out.print("hello: method7385");
}
public void method7386() {
System.out.print("hello: method7386");
}
public void method7387() {
System.out.print("hello: method7387");
}
public void method7388() {
System.out.print("hello: method7388");
}
public void method7389() {
System.out.print("hello: method7389");
}
public void method7390() {
System.out.print("hello: method7390");
}
public void method7391() {
System.out.print("hello: method7391");
}
public void method7392() {
System.out.print("hello: method7392");
}
public void method7393() {
System.out.print("hello: method7393");
}
public void method7394() {
System.out.print("hello: method7394");
}
public void method7395() {
System.out.print("hello: method7395");
}
public void method7396() {
System.out.print("hello: method7396");
}
public void method7397() {
System.out.print("hello: method7397");
}
public void method7398() {
System.out.print("hello: method7398");
}
public void method7399() {
System.out.print("hello: method7399");
}
public void method7400() {
System.out.print("hello: method7400");
}
public void method7401() {
System.out.print("hello: method7401");
}
public void method7402() {
System.out.print("hello: method7402");
}
public void method7403() {
System.out.print("hello: method7403");
}
public void method7404() {
System.out.print("hello: method7404");
}
public void method7405() {
System.out.print("hello: method7405");
}
public void method7406() {
System.out.print("hello: method7406");
}
public void method7407() {
System.out.print("hello: method7407");
}
public void method7408() {
System.out.print("hello: method7408");
}
public void method7409() {
System.out.print("hello: method7409");
}
public void method7410() {
System.out.print("hello: method7410");
}
public void method7411() {
System.out.print("hello: method7411");
}
public void method7412() {
System.out.print("hello: method7412");
}
public void method7413() {
System.out.print("hello: method7413");
}
public void method7414() {
System.out.print("hello: method7414");
}
public void method7415() {
System.out.print("hello: method7415");
}
public void method7416() {
System.out.print("hello: method7416");
}
public void method7417() {
System.out.print("hello: method7417");
}
public void method7418() {
System.out.print("hello: method7418");
}
public void method7419() {
System.out.print("hello: method7419");
}
public void method7420() {
System.out.print("hello: method7420");
}
public void method7421() {
System.out.print("hello: method7421");
}
public void method7422() {
System.out.print("hello: method7422");
}
public void method7423() {
System.out.print("hello: method7423");
}
public void method7424() {
System.out.print("hello: method7424");
}
public void method7425() {
System.out.print("hello: method7425");
}
public void method7426() {
System.out.print("hello: method7426");
}
public void method7427() {
System.out.print("hello: method7427");
}
public void method7428() {
System.out.print("hello: method7428");
}
public void method7429() {
System.out.print("hello: method7429");
}
public void method7430() {
System.out.print("hello: method7430");
}
public void method7431() {
System.out.print("hello: method7431");
}
public void method7432() {
System.out.print("hello: method7432");
}
public void method7433() {
System.out.print("hello: method7433");
}
public void method7434() {
System.out.print("hello: method7434");
}
public void method7435() {
System.out.print("hello: method7435");
}
public void method7436() {
System.out.print("hello: method7436");
}
public void method7437() {
System.out.print("hello: method7437");
}
public void method7438() {
System.out.print("hello: method7438");
}
public void method7439() {
System.out.print("hello: method7439");
}
public void method7440() {
System.out.print("hello: method7440");
}
public void method7441() {
System.out.print("hello: method7441");
}
public void method7442() {
System.out.print("hello: method7442");
}
public void method7443() {
System.out.print("hello: method7443");
}
public void method7444() {
System.out.print("hello: method7444");
}
public void method7445() {
System.out.print("hello: method7445");
}
public void method7446() {
System.out.print("hello: method7446");
}
public void method7447() {
System.out.print("hello: method7447");
}
public void method7448() {
System.out.print("hello: method7448");
}
public void method7449() {
System.out.print("hello: method7449");
}
public void method7450() {
System.out.print("hello: method7450");
}
public void method7451() {
System.out.print("hello: method7451");
}
public void method7452() {
System.out.print("hello: method7452");
}
public void method7453() {
System.out.print("hello: method7453");
}
public void method7454() {
System.out.print("hello: method7454");
}
public void method7455() {
System.out.print("hello: method7455");
}
public void method7456() {
System.out.print("hello: method7456");
}
public void method7457() {
System.out.print("hello: method7457");
}
public void method7458() {
System.out.print("hello: method7458");
}
public void method7459() {
System.out.print("hello: method7459");
}
public void method7460() {
System.out.print("hello: method7460");
}
public void method7461() {
System.out.print("hello: method7461");
}
public void method7462() {
System.out.print("hello: method7462");
}
public void method7463() {
System.out.print("hello: method7463");
}
public void method7464() {
System.out.print("hello: method7464");
}
public void method7465() {
System.out.print("hello: method7465");
}
public void method7466() {
System.out.print("hello: method7466");
}
public void method7467() {
System.out.print("hello: method7467");
}
public void method7468() {
System.out.print("hello: method7468");
}
public void method7469() {
System.out.print("hello: method7469");
}
public void method7470() {
System.out.print("hello: method7470");
}
public void method7471() {
System.out.print("hello: method7471");
}
public void method7472() {
System.out.print("hello: method7472");
}
public void method7473() {
System.out.print("hello: method7473");
}
public void method7474() {
System.out.print("hello: method7474");
}
public void method7475() {
System.out.print("hello: method7475");
}
public void method7476() {
System.out.print("hello: method7476");
}
public void method7477() {
System.out.print("hello: method7477");
}
public void method7478() {
System.out.print("hello: method7478");
}
public void method7479() {
System.out.print("hello: method7479");
}
public void method7480() {
System.out.print("hello: method7480");
}
public void method7481() {
System.out.print("hello: method7481");
}
public void method7482() {
System.out.print("hello: method7482");
}
public void method7483() {
System.out.print("hello: method7483");
}
public void method7484() {
System.out.print("hello: method7484");
}
public void method7485() {
System.out.print("hello: method7485");
}
public void method7486() {
System.out.print("hello: method7486");
}
public void method7487() {
System.out.print("hello: method7487");
}
public void method7488() {
System.out.print("hello: method7488");
}
public void method7489() {
System.out.print("hello: method7489");
}
public void method7490() {
System.out.print("hello: method7490");
}
public void method7491() {
System.out.print("hello: method7491");
}
public void method7492() {
System.out.print("hello: method7492");
}
public void method7493() {
System.out.print("hello: method7493");
}
public void method7494() {
System.out.print("hello: method7494");
}
public void method7495() {
System.out.print("hello: method7495");
}
public void method7496() {
System.out.print("hello: method7496");
}
public void method7497() {
System.out.print("hello: method7497");
}
public void method7498() {
System.out.print("hello: method7498");
}
public void method7499() {
System.out.print("hello: method7499");
}
public void method7500() {
System.out.print("hello: method7500");
}
public void method7501() {
System.out.print("hello: method7501");
}
public void method7502() {
System.out.print("hello: method7502");
}
public void method7503() {
System.out.print("hello: method7503");
}
public void method7504() {
System.out.print("hello: method7504");
}
public void method7505() {
System.out.print("hello: method7505");
}
public void method7506() {
System.out.print("hello: method7506");
}
public void method7507() {
System.out.print("hello: method7507");
}
public void method7508() {
System.out.print("hello: method7508");
}
public void method7509() {
System.out.print("hello: method7509");
}
public void method7510() {
System.out.print("hello: method7510");
}
public void method7511() {
System.out.print("hello: method7511");
}
public void method7512() {
System.out.print("hello: method7512");
}
public void method7513() {
System.out.print("hello: method7513");
}
public void method7514() {
System.out.print("hello: method7514");
}
public void method7515() {
System.out.print("hello: method7515");
}
public void method7516() {
System.out.print("hello: method7516");
}
public void method7517() {
System.out.print("hello: method7517");
}
public void method7518() {
System.out.print("hello: method7518");
}
public void method7519() {
System.out.print("hello: method7519");
}
public void method7520() {
System.out.print("hello: method7520");
}
public void method7521() {
System.out.print("hello: method7521");
}
public void method7522() {
System.out.print("hello: method7522");
}
public void method7523() {
System.out.print("hello: method7523");
}
public void method7524() {
System.out.print("hello: method7524");
}
public void method7525() {
System.out.print("hello: method7525");
}
public void method7526() {
System.out.print("hello: method7526");
}
public void method7527() {
System.out.print("hello: method7527");
}
public void method7528() {
System.out.print("hello: method7528");
}
public void method7529() {
System.out.print("hello: method7529");
}
public void method7530() {
System.out.print("hello: method7530");
}
public void method7531() {
System.out.print("hello: method7531");
}
public void method7532() {
System.out.print("hello: method7532");
}
public void method7533() {
System.out.print("hello: method7533");
}
public void method7534() {
System.out.print("hello: method7534");
}
public void method7535() {
System.out.print("hello: method7535");
}
public void method7536() {
System.out.print("hello: method7536");
}
public void method7537() {
System.out.print("hello: method7537");
}
public void method7538() {
System.out.print("hello: method7538");
}
public void method7539() {
System.out.print("hello: method7539");
}
public void method7540() {
System.out.print("hello: method7540");
}
public void method7541() {
System.out.print("hello: method7541");
}
public void method7542() {
System.out.print("hello: method7542");
}
public void method7543() {
System.out.print("hello: method7543");
}
public void method7544() {
System.out.print("hello: method7544");
}
public void method7545() {
System.out.print("hello: method7545");
}
public void method7546() {
System.out.print("hello: method7546");
}
public void method7547() {
System.out.print("hello: method7547");
}
public void method7548() {
System.out.print("hello: method7548");
}
public void method7549() {
System.out.print("hello: method7549");
}
public void method7550() {
System.out.print("hello: method7550");
}
public void method7551() {
System.out.print("hello: method7551");
}
public void method7552() {
System.out.print("hello: method7552");
}
public void method7553() {
System.out.print("hello: method7553");
}
public void method7554() {
System.out.print("hello: method7554");
}
public void method7555() {
System.out.print("hello: method7555");
}
public void method7556() {
System.out.print("hello: method7556");
}
public void method7557() {
System.out.print("hello: method7557");
}
public void method7558() {
System.out.print("hello: method7558");
}
public void method7559() {
System.out.print("hello: method7559");
}
public void method7560() {
System.out.print("hello: method7560");
}
public void method7561() {
System.out.print("hello: method7561");
}
public void method7562() {
System.out.print("hello: method7562");
}
public void method7563() {
System.out.print("hello: method7563");
}
public void method7564() {
System.out.print("hello: method7564");
}
public void method7565() {
System.out.print("hello: method7565");
}
public void method7566() {
System.out.print("hello: method7566");
}
public void method7567() {
System.out.print("hello: method7567");
}
public void method7568() {
System.out.print("hello: method7568");
}
public void method7569() {
System.out.print("hello: method7569");
}
public void method7570() {
System.out.print("hello: method7570");
}
public void method7571() {
System.out.print("hello: method7571");
}
public void method7572() {
System.out.print("hello: method7572");
}
public void method7573() {
System.out.print("hello: method7573");
}
public void method7574() {
System.out.print("hello: method7574");
}
public void method7575() {
System.out.print("hello: method7575");
}
public void method7576() {
System.out.print("hello: method7576");
}
public void method7577() {
System.out.print("hello: method7577");
}
public void method7578() {
System.out.print("hello: method7578");
}
public void method7579() {
System.out.print("hello: method7579");
}
public void method7580() {
System.out.print("hello: method7580");
}
public void method7581() {
System.out.print("hello: method7581");
}
public void method7582() {
System.out.print("hello: method7582");
}
public void method7583() {
System.out.print("hello: method7583");
}
public void method7584() {
System.out.print("hello: method7584");
}
public void method7585() {
System.out.print("hello: method7585");
}
public void method7586() {
System.out.print("hello: method7586");
}
public void method7587() {
System.out.print("hello: method7587");
}
public void method7588() {
System.out.print("hello: method7588");
}
public void method7589() {
System.out.print("hello: method7589");
}
public void method7590() {
System.out.print("hello: method7590");
}
public void method7591() {
System.out.print("hello: method7591");
}
public void method7592() {
System.out.print("hello: method7592");
}
public void method7593() {
System.out.print("hello: method7593");
}
public void method7594() {
System.out.print("hello: method7594");
}
public void method7595() {
System.out.print("hello: method7595");
}
public void method7596() {
System.out.print("hello: method7596");
}
public void method7597() {
System.out.print("hello: method7597");
}
public void method7598() {
System.out.print("hello: method7598");
}
public void method7599() {
System.out.print("hello: method7599");
}
public void method7600() {
System.out.print("hello: method7600");
}
public void method7601() {
System.out.print("hello: method7601");
}
public void method7602() {
System.out.print("hello: method7602");
}
public void method7603() {
System.out.print("hello: method7603");
}
public void method7604() {
System.out.print("hello: method7604");
}
public void method7605() {
System.out.print("hello: method7605");
}
public void method7606() {
System.out.print("hello: method7606");
}
public void method7607() {
System.out.print("hello: method7607");
}
public void method7608() {
System.out.print("hello: method7608");
}
public void method7609() {
System.out.print("hello: method7609");
}
public void method7610() {
System.out.print("hello: method7610");
}
public void method7611() {
System.out.print("hello: method7611");
}
public void method7612() {
System.out.print("hello: method7612");
}
public void method7613() {
System.out.print("hello: method7613");
}
public void method7614() {
System.out.print("hello: method7614");
}
public void method7615() {
System.out.print("hello: method7615");
}
public void method7616() {
System.out.print("hello: method7616");
}
public void method7617() {
System.out.print("hello: method7617");
}
public void method7618() {
System.out.print("hello: method7618");
}
public void method7619() {
System.out.print("hello: method7619");
}
public void method7620() {
System.out.print("hello: method7620");
}
public void method7621() {
System.out.print("hello: method7621");
}
public void method7622() {
System.out.print("hello: method7622");
}
public void method7623() {
System.out.print("hello: method7623");
}
public void method7624() {
System.out.print("hello: method7624");
}
public void method7625() {
System.out.print("hello: method7625");
}
public void method7626() {
System.out.print("hello: method7626");
}
public void method7627() {
System.out.print("hello: method7627");
}
public void method7628() {
System.out.print("hello: method7628");
}
public void method7629() {
System.out.print("hello: method7629");
}
public void method7630() {
System.out.print("hello: method7630");
}
public void method7631() {
System.out.print("hello: method7631");
}
public void method7632() {
System.out.print("hello: method7632");
}
public void method7633() {
System.out.print("hello: method7633");
}
public void method7634() {
System.out.print("hello: method7634");
}
public void method7635() {
System.out.print("hello: method7635");
}
public void method7636() {
System.out.print("hello: method7636");
}
public void method7637() {
System.out.print("hello: method7637");
}
public void method7638() {
System.out.print("hello: method7638");
}
public void method7639() {
System.out.print("hello: method7639");
}
public void method7640() {
System.out.print("hello: method7640");
}
public void method7641() {
System.out.print("hello: method7641");
}
public void method7642() {
System.out.print("hello: method7642");
}
public void method7643() {
System.out.print("hello: method7643");
}
public void method7644() {
System.out.print("hello: method7644");
}
public void method7645() {
System.out.print("hello: method7645");
}
public void method7646() {
System.out.print("hello: method7646");
}
public void method7647() {
System.out.print("hello: method7647");
}
public void method7648() {
System.out.print("hello: method7648");
}
public void method7649() {
System.out.print("hello: method7649");
}
public void method7650() {
System.out.print("hello: method7650");
}
public void method7651() {
System.out.print("hello: method7651");
}
public void method7652() {
System.out.print("hello: method7652");
}
public void method7653() {
System.out.print("hello: method7653");
}
public void method7654() {
System.out.print("hello: method7654");
}
public void method7655() {
System.out.print("hello: method7655");
}
public void method7656() {
System.out.print("hello: method7656");
}
public void method7657() {
System.out.print("hello: method7657");
}
public void method7658() {
System.out.print("hello: method7658");
}
public void method7659() {
System.out.print("hello: method7659");
}
public void method7660() {
System.out.print("hello: method7660");
}
public void method7661() {
System.out.print("hello: method7661");
}
public void method7662() {
System.out.print("hello: method7662");
}
public void method7663() {
System.out.print("hello: method7663");
}
public void method7664() {
System.out.print("hello: method7664");
}
public void method7665() {
System.out.print("hello: method7665");
}
public void method7666() {
System.out.print("hello: method7666");
}
public void method7667() {
System.out.print("hello: method7667");
}
public void method7668() {
System.out.print("hello: method7668");
}
public void method7669() {
System.out.print("hello: method7669");
}
public void method7670() {
System.out.print("hello: method7670");
}
public void method7671() {
System.out.print("hello: method7671");
}
public void method7672() {
System.out.print("hello: method7672");
}
public void method7673() {
System.out.print("hello: method7673");
}
public void method7674() {
System.out.print("hello: method7674");
}
public void method7675() {
System.out.print("hello: method7675");
}
public void method7676() {
System.out.print("hello: method7676");
}
public void method7677() {
System.out.print("hello: method7677");
}
public void method7678() {
System.out.print("hello: method7678");
}
public void method7679() {
System.out.print("hello: method7679");
}
public void method7680() {
System.out.print("hello: method7680");
}
public void method7681() {
System.out.print("hello: method7681");
}
public void method7682() {
System.out.print("hello: method7682");
}
public void method7683() {
System.out.print("hello: method7683");
}
public void method7684() {
System.out.print("hello: method7684");
}
public void method7685() {
System.out.print("hello: method7685");
}
public void method7686() {
System.out.print("hello: method7686");
}
public void method7687() {
System.out.print("hello: method7687");
}
public void method7688() {
System.out.print("hello: method7688");
}
public void method7689() {
System.out.print("hello: method7689");
}
public void method7690() {
System.out.print("hello: method7690");
}
public void method7691() {
System.out.print("hello: method7691");
}
public void method7692() {
System.out.print("hello: method7692");
}
public void method7693() {
System.out.print("hello: method7693");
}
public void method7694() {
System.out.print("hello: method7694");
}
public void method7695() {
System.out.print("hello: method7695");
}
public void method7696() {
System.out.print("hello: method7696");
}
public void method7697() {
System.out.print("hello: method7697");
}
public void method7698() {
System.out.print("hello: method7698");
}
public void method7699() {
System.out.print("hello: method7699");
}
public void method7700() {
System.out.print("hello: method7700");
}
public void method7701() {
System.out.print("hello: method7701");
}
public void method7702() {
System.out.print("hello: method7702");
}
public void method7703() {
System.out.print("hello: method7703");
}
public void method7704() {
System.out.print("hello: method7704");
}
public void method7705() {
System.out.print("hello: method7705");
}
public void method7706() {
System.out.print("hello: method7706");
}
public void method7707() {
System.out.print("hello: method7707");
}
public void method7708() {
System.out.print("hello: method7708");
}
public void method7709() {
System.out.print("hello: method7709");
}
public void method7710() {
System.out.print("hello: method7710");
}
public void method7711() {
System.out.print("hello: method7711");
}
public void method7712() {
System.out.print("hello: method7712");
}
public void method7713() {
System.out.print("hello: method7713");
}
public void method7714() {
System.out.print("hello: method7714");
}
public void method7715() {
System.out.print("hello: method7715");
}
public void method7716() {
System.out.print("hello: method7716");
}
public void method7717() {
System.out.print("hello: method7717");
}
public void method7718() {
System.out.print("hello: method7718");
}
public void method7719() {
System.out.print("hello: method7719");
}
public void method7720() {
System.out.print("hello: method7720");
}
public void method7721() {
System.out.print("hello: method7721");
}
public void method7722() {
System.out.print("hello: method7722");
}
public void method7723() {
System.out.print("hello: method7723");
}
public void method7724() {
System.out.print("hello: method7724");
}
public void method7725() {
System.out.print("hello: method7725");
}
public void method7726() {
System.out.print("hello: method7726");
}
public void method7727() {
System.out.print("hello: method7727");
}
public void method7728() {
System.out.print("hello: method7728");
}
public void method7729() {
System.out.print("hello: method7729");
}
public void method7730() {
System.out.print("hello: method7730");
}
public void method7731() {
System.out.print("hello: method7731");
}
public void method7732() {
System.out.print("hello: method7732");
}
public void method7733() {
System.out.print("hello: method7733");
}
public void method7734() {
System.out.print("hello: method7734");
}
public void method7735() {
System.out.print("hello: method7735");
}
public void method7736() {
System.out.print("hello: method7736");
}
public void method7737() {
System.out.print("hello: method7737");
}
public void method7738() {
System.out.print("hello: method7738");
}
public void method7739() {
System.out.print("hello: method7739");
}
public void method7740() {
System.out.print("hello: method7740");
}
public void method7741() {
System.out.print("hello: method7741");
}
public void method7742() {
System.out.print("hello: method7742");
}
public void method7743() {
System.out.print("hello: method7743");
}
public void method7744() {
System.out.print("hello: method7744");
}
public void method7745() {
System.out.print("hello: method7745");
}
public void method7746() {
System.out.print("hello: method7746");
}
public void method7747() {
System.out.print("hello: method7747");
}
public void method7748() {
System.out.print("hello: method7748");
}
public void method7749() {
System.out.print("hello: method7749");
}
public void method7750() {
System.out.print("hello: method7750");
}
public void method7751() {
System.out.print("hello: method7751");
}
public void method7752() {
System.out.print("hello: method7752");
}
public void method7753() {
System.out.print("hello: method7753");
}
public void method7754() {
System.out.print("hello: method7754");
}
public void method7755() {
System.out.print("hello: method7755");
}
public void method7756() {
System.out.print("hello: method7756");
}
public void method7757() {
System.out.print("hello: method7757");
}
public void method7758() {
System.out.print("hello: method7758");
}
public void method7759() {
System.out.print("hello: method7759");
}
public void method7760() {
System.out.print("hello: method7760");
}
public void method7761() {
System.out.print("hello: method7761");
}
public void method7762() {
System.out.print("hello: method7762");
}
public void method7763() {
System.out.print("hello: method7763");
}
public void method7764() {
System.out.print("hello: method7764");
}
public void method7765() {
System.out.print("hello: method7765");
}
public void method7766() {
System.out.print("hello: method7766");
}
public void method7767() {
System.out.print("hello: method7767");
}
public void method7768() {
System.out.print("hello: method7768");
}
public void method7769() {
System.out.print("hello: method7769");
}
public void method7770() {
System.out.print("hello: method7770");
}
public void method7771() {
System.out.print("hello: method7771");
}
public void method7772() {
System.out.print("hello: method7772");
}
public void method7773() {
System.out.print("hello: method7773");
}
public void method7774() {
System.out.print("hello: method7774");
}
public void method7775() {
System.out.print("hello: method7775");
}
public void method7776() {
System.out.print("hello: method7776");
}
public void method7777() {
System.out.print("hello: method7777");
}
public void method7778() {
System.out.print("hello: method7778");
}
public void method7779() {
System.out.print("hello: method7779");
}
public void method7780() {
System.out.print("hello: method7780");
}
public void method7781() {
System.out.print("hello: method7781");
}
public void method7782() {
System.out.print("hello: method7782");
}
public void method7783() {
System.out.print("hello: method7783");
}
public void method7784() {
System.out.print("hello: method7784");
}
public void method7785() {
System.out.print("hello: method7785");
}
public void method7786() {
System.out.print("hello: method7786");
}
public void method7787() {
System.out.print("hello: method7787");
}
public void method7788() {
System.out.print("hello: method7788");
}
public void method7789() {
System.out.print("hello: method7789");
}
public void method7790() {
System.out.print("hello: method7790");
}
public void method7791() {
System.out.print("hello: method7791");
}
public void method7792() {
System.out.print("hello: method7792");
}
public void method7793() {
System.out.print("hello: method7793");
}
public void method7794() {
System.out.print("hello: method7794");
}
public void method7795() {
System.out.print("hello: method7795");
}
public void method7796() {
System.out.print("hello: method7796");
}
public void method7797() {
System.out.print("hello: method7797");
}
public void method7798() {
System.out.print("hello: method7798");
}
public void method7799() {
System.out.print("hello: method7799");
}
public void method7800() {
System.out.print("hello: method7800");
}
public void method7801() {
System.out.print("hello: method7801");
}
public void method7802() {
System.out.print("hello: method7802");
}
public void method7803() {
System.out.print("hello: method7803");
}
public void method7804() {
System.out.print("hello: method7804");
}
public void method7805() {
System.out.print("hello: method7805");
}
public void method7806() {
System.out.print("hello: method7806");
}
public void method7807() {
System.out.print("hello: method7807");
}
public void method7808() {
System.out.print("hello: method7808");
}
public void method7809() {
System.out.print("hello: method7809");
}
public void method7810() {
System.out.print("hello: method7810");
}
public void method7811() {
System.out.print("hello: method7811");
}
public void method7812() {
System.out.print("hello: method7812");
}
public void method7813() {
System.out.print("hello: method7813");
}
public void method7814() {
System.out.print("hello: method7814");
}
public void method7815() {
System.out.print("hello: method7815");
}
public void method7816() {
System.out.print("hello: method7816");
}
public void method7817() {
System.out.print("hello: method7817");
}
public void method7818() {
System.out.print("hello: method7818");
}
public void method7819() {
System.out.print("hello: method7819");
}
public void method7820() {
System.out.print("hello: method7820");
}
public void method7821() {
System.out.print("hello: method7821");
}
public void method7822() {
System.out.print("hello: method7822");
}
public void method7823() {
System.out.print("hello: method7823");
}
public void method7824() {
System.out.print("hello: method7824");
}
public void method7825() {
System.out.print("hello: method7825");
}
public void method7826() {
System.out.print("hello: method7826");
}
public void method7827() {
System.out.print("hello: method7827");
}
public void method7828() {
System.out.print("hello: method7828");
}
public void method7829() {
System.out.print("hello: method7829");
}
public void method7830() {
System.out.print("hello: method7830");
}
public void method7831() {
System.out.print("hello: method7831");
}
public void method7832() {
System.out.print("hello: method7832");
}
public void method7833() {
System.out.print("hello: method7833");
}
public void method7834() {
System.out.print("hello: method7834");
}
public void method7835() {
System.out.print("hello: method7835");
}
public void method7836() {
System.out.print("hello: method7836");
}
public void method7837() {
System.out.print("hello: method7837");
}
public void method7838() {
System.out.print("hello: method7838");
}
public void method7839() {
System.out.print("hello: method7839");
}
public void method7840() {
System.out.print("hello: method7840");
}
public void method7841() {
System.out.print("hello: method7841");
}
public void method7842() {
System.out.print("hello: method7842");
}
public void method7843() {
System.out.print("hello: method7843");
}
public void method7844() {
System.out.print("hello: method7844");
}
public void method7845() {
System.out.print("hello: method7845");
}
public void method7846() {
System.out.print("hello: method7846");
}
public void method7847() {
System.out.print("hello: method7847");
}
public void method7848() {
System.out.print("hello: method7848");
}
public void method7849() {
System.out.print("hello: method7849");
}
public void method7850() {
System.out.print("hello: method7850");
}
public void method7851() {
System.out.print("hello: method7851");
}
public void method7852() {
System.out.print("hello: method7852");
}
public void method7853() {
System.out.print("hello: method7853");
}
public void method7854() {
System.out.print("hello: method7854");
}
public void method7855() {
System.out.print("hello: method7855");
}
public void method7856() {
System.out.print("hello: method7856");
}
public void method7857() {
System.out.print("hello: method7857");
}
public void method7858() {
System.out.print("hello: method7858");
}
public void method7859() {
System.out.print("hello: method7859");
}
public void method7860() {
System.out.print("hello: method7860");
}
public void method7861() {
System.out.print("hello: method7861");
}
public void method7862() {
System.out.print("hello: method7862");
}
public void method7863() {
System.out.print("hello: method7863");
}
public void method7864() {
System.out.print("hello: method7864");
}
public void method7865() {
System.out.print("hello: method7865");
}
public void method7866() {
System.out.print("hello: method7866");
}
public void method7867() {
System.out.print("hello: method7867");
}
public void method7868() {
System.out.print("hello: method7868");
}
public void method7869() {
System.out.print("hello: method7869");
}
public void method7870() {
System.out.print("hello: method7870");
}
public void method7871() {
System.out.print("hello: method7871");
}
public void method7872() {
System.out.print("hello: method7872");
}
public void method7873() {
System.out.print("hello: method7873");
}
public void method7874() {
System.out.print("hello: method7874");
}
public void method7875() {
System.out.print("hello: method7875");
}
public void method7876() {
System.out.print("hello: method7876");
}
public void method7877() {
System.out.print("hello: method7877");
}
public void method7878() {
System.out.print("hello: method7878");
}
public void method7879() {
System.out.print("hello: method7879");
}
public void method7880() {
System.out.print("hello: method7880");
}
public void method7881() {
System.out.print("hello: method7881");
}
public void method7882() {
System.out.print("hello: method7882");
}
public void method7883() {
System.out.print("hello: method7883");
}
public void method7884() {
System.out.print("hello: method7884");
}
public void method7885() {
System.out.print("hello: method7885");
}
public void method7886() {
System.out.print("hello: method7886");
}
public void method7887() {
System.out.print("hello: method7887");
}
public void method7888() {
System.out.print("hello: method7888");
}
public void method7889() {
System.out.print("hello: method7889");
}
public void method7890() {
System.out.print("hello: method7890");
}
public void method7891() {
System.out.print("hello: method7891");
}
public void method7892() {
System.out.print("hello: method7892");
}
public void method7893() {
System.out.print("hello: method7893");
}
public void method7894() {
System.out.print("hello: method7894");
}
public void method7895() {
System.out.print("hello: method7895");
}
public void method7896() {
System.out.print("hello: method7896");
}
public void method7897() {
System.out.print("hello: method7897");
}
public void method7898() {
System.out.print("hello: method7898");
}
public void method7899() {
System.out.print("hello: method7899");
}
public void method7900() {
System.out.print("hello: method7900");
}
public void method7901() {
System.out.print("hello: method7901");
}
public void method7902() {
System.out.print("hello: method7902");
}
public void method7903() {
System.out.print("hello: method7903");
}
public void method7904() {
System.out.print("hello: method7904");
}
public void method7905() {
System.out.print("hello: method7905");
}
public void method7906() {
System.out.print("hello: method7906");
}
public void method7907() {
System.out.print("hello: method7907");
}
public void method7908() {
System.out.print("hello: method7908");
}
public void method7909() {
System.out.print("hello: method7909");
}
public void method7910() {
System.out.print("hello: method7910");
}
public void method7911() {
System.out.print("hello: method7911");
}
public void method7912() {
System.out.print("hello: method7912");
}
public void method7913() {
System.out.print("hello: method7913");
}
public void method7914() {
System.out.print("hello: method7914");
}
public void method7915() {
System.out.print("hello: method7915");
}
public void method7916() {
System.out.print("hello: method7916");
}
public void method7917() {
System.out.print("hello: method7917");
}
public void method7918() {
System.out.print("hello: method7918");
}
public void method7919() {
System.out.print("hello: method7919");
}
public void method7920() {
System.out.print("hello: method7920");
}
public void method7921() {
System.out.print("hello: method7921");
}
public void method7922() {
System.out.print("hello: method7922");
}
public void method7923() {
System.out.print("hello: method7923");
}
public void method7924() {
System.out.print("hello: method7924");
}
public void method7925() {
System.out.print("hello: method7925");
}
public void method7926() {
System.out.print("hello: method7926");
}
public void method7927() {
System.out.print("hello: method7927");
}
public void method7928() {
System.out.print("hello: method7928");
}
public void method7929() {
System.out.print("hello: method7929");
}
public void method7930() {
System.out.print("hello: method7930");
}
public void method7931() {
System.out.print("hello: method7931");
}
public void method7932() {
System.out.print("hello: method7932");
}
public void method7933() {
System.out.print("hello: method7933");
}
public void method7934() {
System.out.print("hello: method7934");
}
public void method7935() {
System.out.print("hello: method7935");
}
public void method7936() {
System.out.print("hello: method7936");
}
public void method7937() {
System.out.print("hello: method7937");
}
public void method7938() {
System.out.print("hello: method7938");
}
public void method7939() {
System.out.print("hello: method7939");
}
public void method7940() {
System.out.print("hello: method7940");
}
public void method7941() {
System.out.print("hello: method7941");
}
public void method7942() {
System.out.print("hello: method7942");
}
public void method7943() {
System.out.print("hello: method7943");
}
public void method7944() {
System.out.print("hello: method7944");
}
public void method7945() {
System.out.print("hello: method7945");
}
public void method7946() {
System.out.print("hello: method7946");
}
public void method7947() {
System.out.print("hello: method7947");
}
public void method7948() {
System.out.print("hello: method7948");
}
public void method7949() {
System.out.print("hello: method7949");
}
public void method7950() {
System.out.print("hello: method7950");
}
public void method7951() {
System.out.print("hello: method7951");
}
public void method7952() {
System.out.print("hello: method7952");
}
public void method7953() {
System.out.print("hello: method7953");
}
public void method7954() {
System.out.print("hello: method7954");
}
public void method7955() {
System.out.print("hello: method7955");
}
public void method7956() {
System.out.print("hello: method7956");
}
public void method7957() {
System.out.print("hello: method7957");
}
public void method7958() {
System.out.print("hello: method7958");
}
public void method7959() {
System.out.print("hello: method7959");
}
public void method7960() {
System.out.print("hello: method7960");
}
public void method7961() {
System.out.print("hello: method7961");
}
public void method7962() {
System.out.print("hello: method7962");
}
public void method7963() {
System.out.print("hello: method7963");
}
public void method7964() {
System.out.print("hello: method7964");
}
public void method7965() {
System.out.print("hello: method7965");
}
public void method7966() {
System.out.print("hello: method7966");
}
public void method7967() {
System.out.print("hello: method7967");
}
public void method7968() {
System.out.print("hello: method7968");
}
public void method7969() {
System.out.print("hello: method7969");
}
public void method7970() {
System.out.print("hello: method7970");
}
public void method7971() {
System.out.print("hello: method7971");
}
public void method7972() {
System.out.print("hello: method7972");
}
public void method7973() {
System.out.print("hello: method7973");
}
public void method7974() {
System.out.print("hello: method7974");
}
public void method7975() {
System.out.print("hello: method7975");
}
public void method7976() {
System.out.print("hello: method7976");
}
public void method7977() {
System.out.print("hello: method7977");
}
public void method7978() {
System.out.print("hello: method7978");
}
public void method7979() {
System.out.print("hello: method7979");
}
public void method7980() {
System.out.print("hello: method7980");
}
public void method7981() {
System.out.print("hello: method7981");
}
public void method7982() {
System.out.print("hello: method7982");
}
public void method7983() {
System.out.print("hello: method7983");
}
public void method7984() {
System.out.print("hello: method7984");
}
public void method7985() {
System.out.print("hello: method7985");
}
public void method7986() {
System.out.print("hello: method7986");
}
public void method7987() {
System.out.print("hello: method7987");
}
public void method7988() {
System.out.print("hello: method7988");
}
public void method7989() {
System.out.print("hello: method7989");
}
public void method7990() {
System.out.print("hello: method7990");
}
public void method7991() {
System.out.print("hello: method7991");
}
public void method7992() {
System.out.print("hello: method7992");
}
public void method7993() {
System.out.print("hello: method7993");
}
public void method7994() {
System.out.print("hello: method7994");
}
public void method7995() {
System.out.print("hello: method7995");
}
public void method7996() {
System.out.print("hello: method7996");
}
public void method7997() {
System.out.print("hello: method7997");
}
public void method7998() {
System.out.print("hello: method7998");
}
public void method7999() {
System.out.print("hello: method7999");
}
public void method8000() {
System.out.print("hello: method8000");
}
public void method8001() {
System.out.print("hello: method8001");
}
public void method8002() {
System.out.print("hello: method8002");
}
public void method8003() {
System.out.print("hello: method8003");
}
public void method8004() {
System.out.print("hello: method8004");
}
public void method8005() {
System.out.print("hello: method8005");
}
public void method8006() {
System.out.print("hello: method8006");
}
public void method8007() {
System.out.print("hello: method8007");
}
public void method8008() {
System.out.print("hello: method8008");
}
public void method8009() {
System.out.print("hello: method8009");
}
public void method8010() {
System.out.print("hello: method8010");
}
public void method8011() {
System.out.print("hello: method8011");
}
public void method8012() {
System.out.print("hello: method8012");
}
public void method8013() {
System.out.print("hello: method8013");
}
public void method8014() {
System.out.print("hello: method8014");
}
public void method8015() {
System.out.print("hello: method8015");
}
public void method8016() {
System.out.print("hello: method8016");
}
public void method8017() {
System.out.print("hello: method8017");
}
public void method8018() {
System.out.print("hello: method8018");
}
public void method8019() {
System.out.print("hello: method8019");
}
public void method8020() {
System.out.print("hello: method8020");
}
public void method8021() {
System.out.print("hello: method8021");
}
public void method8022() {
System.out.print("hello: method8022");
}
public void method8023() {
System.out.print("hello: method8023");
}
public void method8024() {
System.out.print("hello: method8024");
}
public void method8025() {
System.out.print("hello: method8025");
}
public void method8026() {
System.out.print("hello: method8026");
}
public void method8027() {
System.out.print("hello: method8027");
}
public void method8028() {
System.out.print("hello: method8028");
}
public void method8029() {
System.out.print("hello: method8029");
}
public void method8030() {
System.out.print("hello: method8030");
}
public void method8031() {
System.out.print("hello: method8031");
}
public void method8032() {
System.out.print("hello: method8032");
}
public void method8033() {
System.out.print("hello: method8033");
}
public void method8034() {
System.out.print("hello: method8034");
}
public void method8035() {
System.out.print("hello: method8035");
}
public void method8036() {
System.out.print("hello: method8036");
}
public void method8037() {
System.out.print("hello: method8037");
}
public void method8038() {
System.out.print("hello: method8038");
}
public void method8039() {
System.out.print("hello: method8039");
}
public void method8040() {
System.out.print("hello: method8040");
}
public void method8041() {
System.out.print("hello: method8041");
}
public void method8042() {
System.out.print("hello: method8042");
}
public void method8043() {
System.out.print("hello: method8043");
}
public void method8044() {
System.out.print("hello: method8044");
}
public void method8045() {
System.out.print("hello: method8045");
}
public void method8046() {
System.out.print("hello: method8046");
}
public void method8047() {
System.out.print("hello: method8047");
}
public void method8048() {
System.out.print("hello: method8048");
}
public void method8049() {
System.out.print("hello: method8049");
}
public void method8050() {
System.out.print("hello: method8050");
}
public void method8051() {
System.out.print("hello: method8051");
}
public void method8052() {
System.out.print("hello: method8052");
}
public void method8053() {
System.out.print("hello: method8053");
}
public void method8054() {
System.out.print("hello: method8054");
}
public void method8055() {
System.out.print("hello: method8055");
}
public void method8056() {
System.out.print("hello: method8056");
}
public void method8057() {
System.out.print("hello: method8057");
}
public void method8058() {
System.out.print("hello: method8058");
}
public void method8059() {
System.out.print("hello: method8059");
}
public void method8060() {
System.out.print("hello: method8060");
}
public void method8061() {
System.out.print("hello: method8061");
}
public void method8062() {
System.out.print("hello: method8062");
}
public void method8063() {
System.out.print("hello: method8063");
}
public void method8064() {
System.out.print("hello: method8064");
}
public void method8065() {
System.out.print("hello: method8065");
}
public void method8066() {
System.out.print("hello: method8066");
}
public void method8067() {
System.out.print("hello: method8067");
}
public void method8068() {
System.out.print("hello: method8068");
}
public void method8069() {
System.out.print("hello: method8069");
}
public void method8070() {
System.out.print("hello: method8070");
}
public void method8071() {
System.out.print("hello: method8071");
}
public void method8072() {
System.out.print("hello: method8072");
}
public void method8073() {
System.out.print("hello: method8073");
}
public void method8074() {
System.out.print("hello: method8074");
}
public void method8075() {
System.out.print("hello: method8075");
}
public void method8076() {
System.out.print("hello: method8076");
}
public void method8077() {
System.out.print("hello: method8077");
}
public void method8078() {
System.out.print("hello: method8078");
}
public void method8079() {
System.out.print("hello: method8079");
}
public void method8080() {
System.out.print("hello: method8080");
}
public void method8081() {
System.out.print("hello: method8081");
}
public void method8082() {
System.out.print("hello: method8082");
}
public void method8083() {
System.out.print("hello: method8083");
}
public void method8084() {
System.out.print("hello: method8084");
}
public void method8085() {
System.out.print("hello: method8085");
}
public void method8086() {
System.out.print("hello: method8086");
}
public void method8087() {
System.out.print("hello: method8087");
}
public void method8088() {
System.out.print("hello: method8088");
}
public void method8089() {
System.out.print("hello: method8089");
}
public void method8090() {
System.out.print("hello: method8090");
}
public void method8091() {
System.out.print("hello: method8091");
}
public void method8092() {
System.out.print("hello: method8092");
}
public void method8093() {
System.out.print("hello: method8093");
}
public void method8094() {
System.out.print("hello: method8094");
}
public void method8095() {
System.out.print("hello: method8095");
}
public void method8096() {
System.out.print("hello: method8096");
}
public void method8097() {
System.out.print("hello: method8097");
}
public void method8098() {
System.out.print("hello: method8098");
}
public void method8099() {
System.out.print("hello: method8099");
}
public void method8100() {
System.out.print("hello: method8100");
}
public void method8101() {
System.out.print("hello: method8101");
}
public void method8102() {
System.out.print("hello: method8102");
}
public void method8103() {
System.out.print("hello: method8103");
}
public void method8104() {
System.out.print("hello: method8104");
}
public void method8105() {
System.out.print("hello: method8105");
}
public void method8106() {
System.out.print("hello: method8106");
}
public void method8107() {
System.out.print("hello: method8107");
}
public void method8108() {
System.out.print("hello: method8108");
}
public void method8109() {
System.out.print("hello: method8109");
}
public void method8110() {
System.out.print("hello: method8110");
}
public void method8111() {
System.out.print("hello: method8111");
}
public void method8112() {
System.out.print("hello: method8112");
}
public void method8113() {
System.out.print("hello: method8113");
}
public void method8114() {
System.out.print("hello: method8114");
}
public void method8115() {
System.out.print("hello: method8115");
}
public void method8116() {
System.out.print("hello: method8116");
}
public void method8117() {
System.out.print("hello: method8117");
}
public void method8118() {
System.out.print("hello: method8118");
}
public void method8119() {
System.out.print("hello: method8119");
}
public void method8120() {
System.out.print("hello: method8120");
}
public void method8121() {
System.out.print("hello: method8121");
}
public void method8122() {
System.out.print("hello: method8122");
}
public void method8123() {
System.out.print("hello: method8123");
}
public void method8124() {
System.out.print("hello: method8124");
}
public void method8125() {
System.out.print("hello: method8125");
}
public void method8126() {
System.out.print("hello: method8126");
}
public void method8127() {
System.out.print("hello: method8127");
}
public void method8128() {
System.out.print("hello: method8128");
}
public void method8129() {
System.out.print("hello: method8129");
}
public void method8130() {
System.out.print("hello: method8130");
}
public void method8131() {
System.out.print("hello: method8131");
}
public void method8132() {
System.out.print("hello: method8132");
}
public void method8133() {
System.out.print("hello: method8133");
}
public void method8134() {
System.out.print("hello: method8134");
}
public void method8135() {
System.out.print("hello: method8135");
}
public void method8136() {
System.out.print("hello: method8136");
}
public void method8137() {
System.out.print("hello: method8137");
}
public void method8138() {
System.out.print("hello: method8138");
}
public void method8139() {
System.out.print("hello: method8139");
}
public void method8140() {
System.out.print("hello: method8140");
}
public void method8141() {
System.out.print("hello: method8141");
}
public void method8142() {
System.out.print("hello: method8142");
}
public void method8143() {
System.out.print("hello: method8143");
}
public void method8144() {
System.out.print("hello: method8144");
}
public void method8145() {
System.out.print("hello: method8145");
}
public void method8146() {
System.out.print("hello: method8146");
}
public void method8147() {
System.out.print("hello: method8147");
}
public void method8148() {
System.out.print("hello: method8148");
}
public void method8149() {
System.out.print("hello: method8149");
}
public void method8150() {
System.out.print("hello: method8150");
}
public void method8151() {
System.out.print("hello: method8151");
}
public void method8152() {
System.out.print("hello: method8152");
}
public void method8153() {
System.out.print("hello: method8153");
}
public void method8154() {
System.out.print("hello: method8154");
}
public void method8155() {
System.out.print("hello: method8155");
}
public void method8156() {
System.out.print("hello: method8156");
}
public void method8157() {
System.out.print("hello: method8157");
}
public void method8158() {
System.out.print("hello: method8158");
}
public void method8159() {
System.out.print("hello: method8159");
}
public void method8160() {
System.out.print("hello: method8160");
}
public void method8161() {
System.out.print("hello: method8161");
}
public void method8162() {
System.out.print("hello: method8162");
}
public void method8163() {
System.out.print("hello: method8163");
}
public void method8164() {
System.out.print("hello: method8164");
}
public void method8165() {
System.out.print("hello: method8165");
}
public void method8166() {
System.out.print("hello: method8166");
}
public void method8167() {
System.out.print("hello: method8167");
}
public void method8168() {
System.out.print("hello: method8168");
}
public void method8169() {
System.out.print("hello: method8169");
}
public void method8170() {
System.out.print("hello: method8170");
}
public void method8171() {
System.out.print("hello: method8171");
}
public void method8172() {
System.out.print("hello: method8172");
}
public void method8173() {
System.out.print("hello: method8173");
}
public void method8174() {
System.out.print("hello: method8174");
}
public void method8175() {
System.out.print("hello: method8175");
}
public void method8176() {
System.out.print("hello: method8176");
}
public void method8177() {
System.out.print("hello: method8177");
}
public void method8178() {
System.out.print("hello: method8178");
}
public void method8179() {
System.out.print("hello: method8179");
}
public void method8180() {
System.out.print("hello: method8180");
}
public void method8181() {
System.out.print("hello: method8181");
}
public void method8182() {
System.out.print("hello: method8182");
}
public void method8183() {
System.out.print("hello: method8183");
}
public void method8184() {
System.out.print("hello: method8184");
}
public void method8185() {
System.out.print("hello: method8185");
}
public void method8186() {
System.out.print("hello: method8186");
}
public void method8187() {
System.out.print("hello: method8187");
}
public void method8188() {
System.out.print("hello: method8188");
}
public void method8189() {
System.out.print("hello: method8189");
}
public void method8190() {
System.out.print("hello: method8190");
}
public void method8191() {
System.out.print("hello: method8191");
}
public void method8192() {
System.out.print("hello: method8192");
}
public void method8193() {
System.out.print("hello: method8193");
}
public void method8194() {
System.out.print("hello: method8194");
}
public void method8195() {
System.out.print("hello: method8195");
}
public void method8196() {
System.out.print("hello: method8196");
}
public void method8197() {
System.out.print("hello: method8197");
}
public void method8198() {
System.out.print("hello: method8198");
}
public void method8199() {
System.out.print("hello: method8199");
}
public void method8200() {
System.out.print("hello: method8200");
}
public void method8201() {
System.out.print("hello: method8201");
}
public void method8202() {
System.out.print("hello: method8202");
}
public void method8203() {
System.out.print("hello: method8203");
}
public void method8204() {
System.out.print("hello: method8204");
}
public void method8205() {
System.out.print("hello: method8205");
}
public void method8206() {
System.out.print("hello: method8206");
}
public void method8207() {
System.out.print("hello: method8207");
}
public void method8208() {
System.out.print("hello: method8208");
}
public void method8209() {
System.out.print("hello: method8209");
}
public void method8210() {
System.out.print("hello: method8210");
}
public void method8211() {
System.out.print("hello: method8211");
}
public void method8212() {
System.out.print("hello: method8212");
}
public void method8213() {
System.out.print("hello: method8213");
}
public void method8214() {
System.out.print("hello: method8214");
}
public void method8215() {
System.out.print("hello: method8215");
}
public void method8216() {
System.out.print("hello: method8216");
}
public void method8217() {
System.out.print("hello: method8217");
}
public void method8218() {
System.out.print("hello: method8218");
}
public void method8219() {
System.out.print("hello: method8219");
}
public void method8220() {
System.out.print("hello: method8220");
}
public void method8221() {
System.out.print("hello: method8221");
}
public void method8222() {
System.out.print("hello: method8222");
}
public void method8223() {
System.out.print("hello: method8223");
}
public void method8224() {
System.out.print("hello: method8224");
}
public void method8225() {
System.out.print("hello: method8225");
}
public void method8226() {
System.out.print("hello: method8226");
}
public void method8227() {
System.out.print("hello: method8227");
}
public void method8228() {
System.out.print("hello: method8228");
}
public void method8229() {
System.out.print("hello: method8229");
}
public void method8230() {
System.out.print("hello: method8230");
}
public void method8231() {
System.out.print("hello: method8231");
}
public void method8232() {
System.out.print("hello: method8232");
}
public void method8233() {
System.out.print("hello: method8233");
}
public void method8234() {
System.out.print("hello: method8234");
}
public void method8235() {
System.out.print("hello: method8235");
}
public void method8236() {
System.out.print("hello: method8236");
}
public void method8237() {
System.out.print("hello: method8237");
}
public void method8238() {
System.out.print("hello: method8238");
}
public void method8239() {
System.out.print("hello: method8239");
}
public void method8240() {
System.out.print("hello: method8240");
}
public void method8241() {
System.out.print("hello: method8241");
}
public void method8242() {
System.out.print("hello: method8242");
}
public void method8243() {
System.out.print("hello: method8243");
}
public void method8244() {
System.out.print("hello: method8244");
}
public void method8245() {
System.out.print("hello: method8245");
}
public void method8246() {
System.out.print("hello: method8246");
}
public void method8247() {
System.out.print("hello: method8247");
}
public void method8248() {
System.out.print("hello: method8248");
}
public void method8249() {
System.out.print("hello: method8249");
}
public void method8250() {
System.out.print("hello: method8250");
}
public void method8251() {
System.out.print("hello: method8251");
}
public void method8252() {
System.out.print("hello: method8252");
}
public void method8253() {
System.out.print("hello: method8253");
}
public void method8254() {
System.out.print("hello: method8254");
}
public void method8255() {
System.out.print("hello: method8255");
}
public void method8256() {
System.out.print("hello: method8256");
}
public void method8257() {
System.out.print("hello: method8257");
}
public void method8258() {
System.out.print("hello: method8258");
}
public void method8259() {
System.out.print("hello: method8259");
}
public void method8260() {
System.out.print("hello: method8260");
}
public void method8261() {
System.out.print("hello: method8261");
}
public void method8262() {
System.out.print("hello: method8262");
}
public void method8263() {
System.out.print("hello: method8263");
}
public void method8264() {
System.out.print("hello: method8264");
}
public void method8265() {
System.out.print("hello: method8265");
}
public void method8266() {
System.out.print("hello: method8266");
}
public void method8267() {
System.out.print("hello: method8267");
}
public void method8268() {
System.out.print("hello: method8268");
}
public void method8269() {
System.out.print("hello: method8269");
}
public void method8270() {
System.out.print("hello: method8270");
}
public void method8271() {
System.out.print("hello: method8271");
}
public void method8272() {
System.out.print("hello: method8272");
}
public void method8273() {
System.out.print("hello: method8273");
}
public void method8274() {
System.out.print("hello: method8274");
}
public void method8275() {
System.out.print("hello: method8275");
}
public void method8276() {
System.out.print("hello: method8276");
}
public void method8277() {
System.out.print("hello: method8277");
}
public void method8278() {
System.out.print("hello: method8278");
}
public void method8279() {
System.out.print("hello: method8279");
}
public void method8280() {
System.out.print("hello: method8280");
}
public void method8281() {
System.out.print("hello: method8281");
}
public void method8282() {
System.out.print("hello: method8282");
}
public void method8283() {
System.out.print("hello: method8283");
}
public void method8284() {
System.out.print("hello: method8284");
}
public void method8285() {
System.out.print("hello: method8285");
}
public void method8286() {
System.out.print("hello: method8286");
}
public void method8287() {
System.out.print("hello: method8287");
}
public void method8288() {
System.out.print("hello: method8288");
}
public void method8289() {
System.out.print("hello: method8289");
}
public void method8290() {
System.out.print("hello: method8290");
}
public void method8291() {
System.out.print("hello: method8291");
}
public void method8292() {
System.out.print("hello: method8292");
}
public void method8293() {
System.out.print("hello: method8293");
}
public void method8294() {
System.out.print("hello: method8294");
}
public void method8295() {
System.out.print("hello: method8295");
}
public void method8296() {
System.out.print("hello: method8296");
}
public void method8297() {
System.out.print("hello: method8297");
}
public void method8298() {
System.out.print("hello: method8298");
}
public void method8299() {
System.out.print("hello: method8299");
}
public void method8300() {
System.out.print("hello: method8300");
}
public void method8301() {
System.out.print("hello: method8301");
}
public void method8302() {
System.out.print("hello: method8302");
}
public void method8303() {
System.out.print("hello: method8303");
}
public void method8304() {
System.out.print("hello: method8304");
}
public void method8305() {
System.out.print("hello: method8305");
}
public void method8306() {
System.out.print("hello: method8306");
}
public void method8307() {
System.out.print("hello: method8307");
}
public void method8308() {
System.out.print("hello: method8308");
}
public void method8309() {
System.out.print("hello: method8309");
}
public void method8310() {
System.out.print("hello: method8310");
}
public void method8311() {
System.out.print("hello: method8311");
}
public void method8312() {
System.out.print("hello: method8312");
}
public void method8313() {
System.out.print("hello: method8313");
}
public void method8314() {
System.out.print("hello: method8314");
}
public void method8315() {
System.out.print("hello: method8315");
}
public void method8316() {
System.out.print("hello: method8316");
}
public void method8317() {
System.out.print("hello: method8317");
}
public void method8318() {
System.out.print("hello: method8318");
}
public void method8319() {
System.out.print("hello: method8319");
}
public void method8320() {
System.out.print("hello: method8320");
}
public void method8321() {
System.out.print("hello: method8321");
}
public void method8322() {
System.out.print("hello: method8322");
}
public void method8323() {
System.out.print("hello: method8323");
}
public void method8324() {
System.out.print("hello: method8324");
}
public void method8325() {
System.out.print("hello: method8325");
}
public void method8326() {
System.out.print("hello: method8326");
}
public void method8327() {
System.out.print("hello: method8327");
}
public void method8328() {
System.out.print("hello: method8328");
}
public void method8329() {
System.out.print("hello: method8329");
}
public void method8330() {
System.out.print("hello: method8330");
}
public void method8331() {
System.out.print("hello: method8331");
}
public void method8332() {
System.out.print("hello: method8332");
}
public void method8333() {
System.out.print("hello: method8333");
}
public void method8334() {
System.out.print("hello: method8334");
}
public void method8335() {
System.out.print("hello: method8335");
}
public void method8336() {
System.out.print("hello: method8336");
}
public void method8337() {
System.out.print("hello: method8337");
}
public void method8338() {
System.out.print("hello: method8338");
}
public void method8339() {
System.out.print("hello: method8339");
}
public void method8340() {
System.out.print("hello: method8340");
}
public void method8341() {
System.out.print("hello: method8341");
}
public void method8342() {
System.out.print("hello: method8342");
}
public void method8343() {
System.out.print("hello: method8343");
}
public void method8344() {
System.out.print("hello: method8344");
}
public void method8345() {
System.out.print("hello: method8345");
}
public void method8346() {
System.out.print("hello: method8346");
}
public void method8347() {
System.out.print("hello: method8347");
}
public void method8348() {
System.out.print("hello: method8348");
}
public void method8349() {
System.out.print("hello: method8349");
}
public void method8350() {
System.out.print("hello: method8350");
}
public void method8351() {
System.out.print("hello: method8351");
}
public void method8352() {
System.out.print("hello: method8352");
}
public void method8353() {
System.out.print("hello: method8353");
}
public void method8354() {
System.out.print("hello: method8354");
}
public void method8355() {
System.out.print("hello: method8355");
}
public void method8356() {
System.out.print("hello: method8356");
}
public void method8357() {
System.out.print("hello: method8357");
}
public void method8358() {
System.out.print("hello: method8358");
}
public void method8359() {
System.out.print("hello: method8359");
}
public void method8360() {
System.out.print("hello: method8360");
}
public void method8361() {
System.out.print("hello: method8361");
}
public void method8362() {
System.out.print("hello: method8362");
}
public void method8363() {
System.out.print("hello: method8363");
}
public void method8364() {
System.out.print("hello: method8364");
}
public void method8365() {
System.out.print("hello: method8365");
}
public void method8366() {
System.out.print("hello: method8366");
}
public void method8367() {
System.out.print("hello: method8367");
}
public void method8368() {
System.out.print("hello: method8368");
}
public void method8369() {
System.out.print("hello: method8369");
}
public void method8370() {
System.out.print("hello: method8370");
}
public void method8371() {
System.out.print("hello: method8371");
}
public void method8372() {
System.out.print("hello: method8372");
}
public void method8373() {
System.out.print("hello: method8373");
}
public void method8374() {
System.out.print("hello: method8374");
}
public void method8375() {
System.out.print("hello: method8375");
}
public void method8376() {
System.out.print("hello: method8376");
}
public void method8377() {
System.out.print("hello: method8377");
}
public void method8378() {
System.out.print("hello: method8378");
}
public void method8379() {
System.out.print("hello: method8379");
}
public void method8380() {
System.out.print("hello: method8380");
}
public void method8381() {
System.out.print("hello: method8381");
}
public void method8382() {
System.out.print("hello: method8382");
}
public void method8383() {
System.out.print("hello: method8383");
}
public void method8384() {
System.out.print("hello: method8384");
}
public void method8385() {
System.out.print("hello: method8385");
}
public void method8386() {
System.out.print("hello: method8386");
}
public void method8387() {
System.out.print("hello: method8387");
}
public void method8388() {
System.out.print("hello: method8388");
}
public void method8389() {
System.out.print("hello: method8389");
}
public void method8390() {
System.out.print("hello: method8390");
}
public void method8391() {
System.out.print("hello: method8391");
}
public void method8392() {
System.out.print("hello: method8392");
}
public void method8393() {
System.out.print("hello: method8393");
}
public void method8394() {
System.out.print("hello: method8394");
}
public void method8395() {
System.out.print("hello: method8395");
}
public void method8396() {
System.out.print("hello: method8396");
}
public void method8397() {
System.out.print("hello: method8397");
}
public void method8398() {
System.out.print("hello: method8398");
}
public void method8399() {
System.out.print("hello: method8399");
}
public void method8400() {
System.out.print("hello: method8400");
}
public void method8401() {
System.out.print("hello: method8401");
}
public void method8402() {
System.out.print("hello: method8402");
}
public void method8403() {
System.out.print("hello: method8403");
}
public void method8404() {
System.out.print("hello: method8404");
}
public void method8405() {
System.out.print("hello: method8405");
}
public void method8406() {
System.out.print("hello: method8406");
}
public void method8407() {
System.out.print("hello: method8407");
}
public void method8408() {
System.out.print("hello: method8408");
}
public void method8409() {
System.out.print("hello: method8409");
}
public void method8410() {
System.out.print("hello: method8410");
}
public void method8411() {
System.out.print("hello: method8411");
}
public void method8412() {
System.out.print("hello: method8412");
}
public void method8413() {
System.out.print("hello: method8413");
}
public void method8414() {
System.out.print("hello: method8414");
}
public void method8415() {
System.out.print("hello: method8415");
}
public void method8416() {
System.out.print("hello: method8416");
}
public void method8417() {
System.out.print("hello: method8417");
}
public void method8418() {
System.out.print("hello: method8418");
}
public void method8419() {
System.out.print("hello: method8419");
}
public void method8420() {
System.out.print("hello: method8420");
}
public void method8421() {
System.out.print("hello: method8421");
}
public void method8422() {
System.out.print("hello: method8422");
}
public void method8423() {
System.out.print("hello: method8423");
}
public void method8424() {
System.out.print("hello: method8424");
}
public void method8425() {
System.out.print("hello: method8425");
}
public void method8426() {
System.out.print("hello: method8426");
}
public void method8427() {
System.out.print("hello: method8427");
}
public void method8428() {
System.out.print("hello: method8428");
}
public void method8429() {
System.out.print("hello: method8429");
}
public void method8430() {
System.out.print("hello: method8430");
}
public void method8431() {
System.out.print("hello: method8431");
}
public void method8432() {
System.out.print("hello: method8432");
}
public void method8433() {
System.out.print("hello: method8433");
}
public void method8434() {
System.out.print("hello: method8434");
}
public void method8435() {
System.out.print("hello: method8435");
}
public void method8436() {
System.out.print("hello: method8436");
}
public void method8437() {
System.out.print("hello: method8437");
}
public void method8438() {
System.out.print("hello: method8438");
}
public void method8439() {
System.out.print("hello: method8439");
}
public void method8440() {
System.out.print("hello: method8440");
}
public void method8441() {
System.out.print("hello: method8441");
}
public void method8442() {
System.out.print("hello: method8442");
}
public void method8443() {
System.out.print("hello: method8443");
}
public void method8444() {
System.out.print("hello: method8444");
}
public void method8445() {
System.out.print("hello: method8445");
}
public void method8446() {
System.out.print("hello: method8446");
}
public void method8447() {
System.out.print("hello: method8447");
}
public void method8448() {
System.out.print("hello: method8448");
}
public void method8449() {
System.out.print("hello: method8449");
}
public void method8450() {
System.out.print("hello: method8450");
}
public void method8451() {
System.out.print("hello: method8451");
}
public void method8452() {
System.out.print("hello: method8452");
}
public void method8453() {
System.out.print("hello: method8453");
}
public void method8454() {
System.out.print("hello: method8454");
}
public void method8455() {
System.out.print("hello: method8455");
}
public void method8456() {
System.out.print("hello: method8456");
}
public void method8457() {
System.out.print("hello: method8457");
}
public void method8458() {
System.out.print("hello: method8458");
}
public void method8459() {
System.out.print("hello: method8459");
}
public void method8460() {
System.out.print("hello: method8460");
}
public void method8461() {
System.out.print("hello: method8461");
}
public void method8462() {
System.out.print("hello: method8462");
}
public void method8463() {
System.out.print("hello: method8463");
}
public void method8464() {
System.out.print("hello: method8464");
}
public void method8465() {
System.out.print("hello: method8465");
}
public void method8466() {
System.out.print("hello: method8466");
}
public void method8467() {
System.out.print("hello: method8467");
}
public void method8468() {
System.out.print("hello: method8468");
}
public void method8469() {
System.out.print("hello: method8469");
}
public void method8470() {
System.out.print("hello: method8470");
}
public void method8471() {
System.out.print("hello: method8471");
}
public void method8472() {
System.out.print("hello: method8472");
}
public void method8473() {
System.out.print("hello: method8473");
}
public void method8474() {
System.out.print("hello: method8474");
}
public void method8475() {
System.out.print("hello: method8475");
}
public void method8476() {
System.out.print("hello: method8476");
}
public void method8477() {
System.out.print("hello: method8477");
}
public void method8478() {
System.out.print("hello: method8478");
}
public void method8479() {
System.out.print("hello: method8479");
}
public void method8480() {
System.out.print("hello: method8480");
}
public void method8481() {
System.out.print("hello: method8481");
}
public void method8482() {
System.out.print("hello: method8482");
}
public void method8483() {
System.out.print("hello: method8483");
}
public void method8484() {
System.out.print("hello: method8484");
}
public void method8485() {
System.out.print("hello: method8485");
}
public void method8486() {
System.out.print("hello: method8486");
}
public void method8487() {
System.out.print("hello: method8487");
}
public void method8488() {
System.out.print("hello: method8488");
}
public void method8489() {
System.out.print("hello: method8489");
}
public void method8490() {
System.out.print("hello: method8490");
}
public void method8491() {
System.out.print("hello: method8491");
}
public void method8492() {
System.out.print("hello: method8492");
}
public void method8493() {
System.out.print("hello: method8493");
}
public void method8494() {
System.out.print("hello: method8494");
}
public void method8495() {
System.out.print("hello: method8495");
}
public void method8496() {
System.out.print("hello: method8496");
}
public void method8497() {
System.out.print("hello: method8497");
}
public void method8498() {
System.out.print("hello: method8498");
}
public void method8499() {
System.out.print("hello: method8499");
}
public void method8500() {
System.out.print("hello: method8500");
}
public void method8501() {
System.out.print("hello: method8501");
}
public void method8502() {
System.out.print("hello: method8502");
}
public void method8503() {
System.out.print("hello: method8503");
}
public void method8504() {
System.out.print("hello: method8504");
}
public void method8505() {
System.out.print("hello: method8505");
}
public void method8506() {
System.out.print("hello: method8506");
}
public void method8507() {
System.out.print("hello: method8507");
}
public void method8508() {
System.out.print("hello: method8508");
}
public void method8509() {
System.out.print("hello: method8509");
}
public void method8510() {
System.out.print("hello: method8510");
}
public void method8511() {
System.out.print("hello: method8511");
}
public void method8512() {
System.out.print("hello: method8512");
}
public void method8513() {
System.out.print("hello: method8513");
}
public void method8514() {
System.out.print("hello: method8514");
}
public void method8515() {
System.out.print("hello: method8515");
}
public void method8516() {
System.out.print("hello: method8516");
}
public void method8517() {
System.out.print("hello: method8517");
}
public void method8518() {
System.out.print("hello: method8518");
}
public void method8519() {
System.out.print("hello: method8519");
}
public void method8520() {
System.out.print("hello: method8520");
}
public void method8521() {
System.out.print("hello: method8521");
}
public void method8522() {
System.out.print("hello: method8522");
}
public void method8523() {
System.out.print("hello: method8523");
}
public void method8524() {
System.out.print("hello: method8524");
}
public void method8525() {
System.out.print("hello: method8525");
}
public void method8526() {
System.out.print("hello: method8526");
}
public void method8527() {
System.out.print("hello: method8527");
}
public void method8528() {
System.out.print("hello: method8528");
}
public void method8529() {
System.out.print("hello: method8529");
}
public void method8530() {
System.out.print("hello: method8530");
}
public void method8531() {
System.out.print("hello: method8531");
}
public void method8532() {
System.out.print("hello: method8532");
}
public void method8533() {
System.out.print("hello: method8533");
}
public void method8534() {
System.out.print("hello: method8534");
}
public void method8535() {
System.out.print("hello: method8535");
}
public void method8536() {
System.out.print("hello: method8536");
}
public void method8537() {
System.out.print("hello: method8537");
}
public void method8538() {
System.out.print("hello: method8538");
}
public void method8539() {
System.out.print("hello: method8539");
}
public void method8540() {
System.out.print("hello: method8540");
}
public void method8541() {
System.out.print("hello: method8541");
}
public void method8542() {
System.out.print("hello: method8542");
}
public void method8543() {
System.out.print("hello: method8543");
}
public void method8544() {
System.out.print("hello: method8544");
}
public void method8545() {
System.out.print("hello: method8545");
}
public void method8546() {
System.out.print("hello: method8546");
}
public void method8547() {
System.out.print("hello: method8547");
}
public void method8548() {
System.out.print("hello: method8548");
}
public void method8549() {
System.out.print("hello: method8549");
}
public void method8550() {
System.out.print("hello: method8550");
}
public void method8551() {
System.out.print("hello: method8551");
}
public void method8552() {
System.out.print("hello: method8552");
}
public void method8553() {
System.out.print("hello: method8553");
}
public void method8554() {
System.out.print("hello: method8554");
}
public void method8555() {
System.out.print("hello: method8555");
}
public void method8556() {
System.out.print("hello: method8556");
}
public void method8557() {
System.out.print("hello: method8557");
}
public void method8558() {
System.out.print("hello: method8558");
}
public void method8559() {
System.out.print("hello: method8559");
}
public void method8560() {
System.out.print("hello: method8560");
}
public void method8561() {
System.out.print("hello: method8561");
}
public void method8562() {
System.out.print("hello: method8562");
}
public void method8563() {
System.out.print("hello: method8563");
}
public void method8564() {
System.out.print("hello: method8564");
}
public void method8565() {
System.out.print("hello: method8565");
}
public void method8566() {
System.out.print("hello: method8566");
}
public void method8567() {
System.out.print("hello: method8567");
}
public void method8568() {
System.out.print("hello: method8568");
}
public void method8569() {
System.out.print("hello: method8569");
}
public void method8570() {
System.out.print("hello: method8570");
}
public void method8571() {
System.out.print("hello: method8571");
}
public void method8572() {
System.out.print("hello: method8572");
}
public void method8573() {
System.out.print("hello: method8573");
}
public void method8574() {
System.out.print("hello: method8574");
}
public void method8575() {
System.out.print("hello: method8575");
}
public void method8576() {
System.out.print("hello: method8576");
}
public void method8577() {
System.out.print("hello: method8577");
}
public void method8578() {
System.out.print("hello: method8578");
}
public void method8579() {
System.out.print("hello: method8579");
}
public void method8580() {
System.out.print("hello: method8580");
}
public void method8581() {
System.out.print("hello: method8581");
}
public void method8582() {
System.out.print("hello: method8582");
}
public void method8583() {
System.out.print("hello: method8583");
}
public void method8584() {
System.out.print("hello: method8584");
}
public void method8585() {
System.out.print("hello: method8585");
}
public void method8586() {
System.out.print("hello: method8586");
}
public void method8587() {
System.out.print("hello: method8587");
}
public void method8588() {
System.out.print("hello: method8588");
}
public void method8589() {
System.out.print("hello: method8589");
}
public void method8590() {
System.out.print("hello: method8590");
}
public void method8591() {
System.out.print("hello: method8591");
}
public void method8592() {
System.out.print("hello: method8592");
}
public void method8593() {
System.out.print("hello: method8593");
}
public void method8594() {
System.out.print("hello: method8594");
}
public void method8595() {
System.out.print("hello: method8595");
}
public void method8596() {
System.out.print("hello: method8596");
}
public void method8597() {
System.out.print("hello: method8597");
}
public void method8598() {
System.out.print("hello: method8598");
}
public void method8599() {
System.out.print("hello: method8599");
}
public void method8600() {
System.out.print("hello: method8600");
}
public void method8601() {
System.out.print("hello: method8601");
}
public void method8602() {
System.out.print("hello: method8602");
}
public void method8603() {
System.out.print("hello: method8603");
}
public void method8604() {
System.out.print("hello: method8604");
}
public void method8605() {
System.out.print("hello: method8605");
}
public void method8606() {
System.out.print("hello: method8606");
}
public void method8607() {
System.out.print("hello: method8607");
}
public void method8608() {
System.out.print("hello: method8608");
}
public void method8609() {
System.out.print("hello: method8609");
}
public void method8610() {
System.out.print("hello: method8610");
}
public void method8611() {
System.out.print("hello: method8611");
}
public void method8612() {
System.out.print("hello: method8612");
}
public void method8613() {
System.out.print("hello: method8613");
}
public void method8614() {
System.out.print("hello: method8614");
}
public void method8615() {
System.out.print("hello: method8615");
}
public void method8616() {
System.out.print("hello: method8616");
}
public void method8617() {
System.out.print("hello: method8617");
}
public void method8618() {
System.out.print("hello: method8618");
}
public void method8619() {
System.out.print("hello: method8619");
}
public void method8620() {
System.out.print("hello: method8620");
}
public void method8621() {
System.out.print("hello: method8621");
}
public void method8622() {
System.out.print("hello: method8622");
}
public void method8623() {
System.out.print("hello: method8623");
}
public void method8624() {
System.out.print("hello: method8624");
}
public void method8625() {
System.out.print("hello: method8625");
}
public void method8626() {
System.out.print("hello: method8626");
}
public void method8627() {
System.out.print("hello: method8627");
}
public void method8628() {
System.out.print("hello: method8628");
}
public void method8629() {
System.out.print("hello: method8629");
}
public void method8630() {
System.out.print("hello: method8630");
}
public void method8631() {
System.out.print("hello: method8631");
}
public void method8632() {
System.out.print("hello: method8632");
}
public void method8633() {
System.out.print("hello: method8633");
}
public void method8634() {
System.out.print("hello: method8634");
}
public void method8635() {
System.out.print("hello: method8635");
}
public void method8636() {
System.out.print("hello: method8636");
}
public void method8637() {
System.out.print("hello: method8637");
}
public void method8638() {
System.out.print("hello: method8638");
}
public void method8639() {
System.out.print("hello: method8639");
}
public void method8640() {
System.out.print("hello: method8640");
}
public void method8641() {
System.out.print("hello: method8641");
}
public void method8642() {
System.out.print("hello: method8642");
}
public void method8643() {
System.out.print("hello: method8643");
}
public void method8644() {
System.out.print("hello: method8644");
}
public void method8645() {
System.out.print("hello: method8645");
}
public void method8646() {
System.out.print("hello: method8646");
}
public void method8647() {
System.out.print("hello: method8647");
}
public void method8648() {
System.out.print("hello: method8648");
}
public void method8649() {
System.out.print("hello: method8649");
}
public void method8650() {
System.out.print("hello: method8650");
}
public void method8651() {
System.out.print("hello: method8651");
}
public void method8652() {
System.out.print("hello: method8652");
}
public void method8653() {
System.out.print("hello: method8653");
}
public void method8654() {
System.out.print("hello: method8654");
}
public void method8655() {
System.out.print("hello: method8655");
}
public void method8656() {
System.out.print("hello: method8656");
}
public void method8657() {
System.out.print("hello: method8657");
}
public void method8658() {
System.out.print("hello: method8658");
}
public void method8659() {
System.out.print("hello: method8659");
}
public void method8660() {
System.out.print("hello: method8660");
}
public void method8661() {
System.out.print("hello: method8661");
}
public void method8662() {
System.out.print("hello: method8662");
}
public void method8663() {
System.out.print("hello: method8663");
}
public void method8664() {
System.out.print("hello: method8664");
}
public void method8665() {
System.out.print("hello: method8665");
}
public void method8666() {
System.out.print("hello: method8666");
}
public void method8667() {
System.out.print("hello: method8667");
}
public void method8668() {
System.out.print("hello: method8668");
}
public void method8669() {
System.out.print("hello: method8669");
}
public void method8670() {
System.out.print("hello: method8670");
}
public void method8671() {
System.out.print("hello: method8671");
}
public void method8672() {
System.out.print("hello: method8672");
}
public void method8673() {
System.out.print("hello: method8673");
}
public void method8674() {
System.out.print("hello: method8674");
}
public void method8675() {
System.out.print("hello: method8675");
}
public void method8676() {
System.out.print("hello: method8676");
}
public void method8677() {
System.out.print("hello: method8677");
}
public void method8678() {
System.out.print("hello: method8678");
}
public void method8679() {
System.out.print("hello: method8679");
}
public void method8680() {
System.out.print("hello: method8680");
}
public void method8681() {
System.out.print("hello: method8681");
}
public void method8682() {
System.out.print("hello: method8682");
}
public void method8683() {
System.out.print("hello: method8683");
}
public void method8684() {
System.out.print("hello: method8684");
}
public void method8685() {
System.out.print("hello: method8685");
}
public void method8686() {
System.out.print("hello: method8686");
}
public void method8687() {
System.out.print("hello: method8687");
}
public void method8688() {
System.out.print("hello: method8688");
}
public void method8689() {
System.out.print("hello: method8689");
}
public void method8690() {
System.out.print("hello: method8690");
}
public void method8691() {
System.out.print("hello: method8691");
}
public void method8692() {
System.out.print("hello: method8692");
}
public void method8693() {
System.out.print("hello: method8693");
}
public void method8694() {
System.out.print("hello: method8694");
}
public void method8695() {
System.out.print("hello: method8695");
}
public void method8696() {
System.out.print("hello: method8696");
}
public void method8697() {
System.out.print("hello: method8697");
}
public void method8698() {
System.out.print("hello: method8698");
}
public void method8699() {
System.out.print("hello: method8699");
}
public void method8700() {
System.out.print("hello: method8700");
}
public void method8701() {
System.out.print("hello: method8701");
}
public void method8702() {
System.out.print("hello: method8702");
}
public void method8703() {
System.out.print("hello: method8703");
}
public void method8704() {
System.out.print("hello: method8704");
}
public void method8705() {
System.out.print("hello: method8705");
}
public void method8706() {
System.out.print("hello: method8706");
}
public void method8707() {
System.out.print("hello: method8707");
}
public void method8708() {
System.out.print("hello: method8708");
}
public void method8709() {
System.out.print("hello: method8709");
}
public void method8710() {
System.out.print("hello: method8710");
}
public void method8711() {
System.out.print("hello: method8711");
}
public void method8712() {
System.out.print("hello: method8712");
}
public void method8713() {
System.out.print("hello: method8713");
}
public void method8714() {
System.out.print("hello: method8714");
}
public void method8715() {
System.out.print("hello: method8715");
}
public void method8716() {
System.out.print("hello: method8716");
}
public void method8717() {
System.out.print("hello: method8717");
}
public void method8718() {
System.out.print("hello: method8718");
}
public void method8719() {
System.out.print("hello: method8719");
}
public void method8720() {
System.out.print("hello: method8720");
}
public void method8721() {
System.out.print("hello: method8721");
}
public void method8722() {
System.out.print("hello: method8722");
}
public void method8723() {
System.out.print("hello: method8723");
}
public void method8724() {
System.out.print("hello: method8724");
}
public void method8725() {
System.out.print("hello: method8725");
}
public void method8726() {
System.out.print("hello: method8726");
}
public void method8727() {
System.out.print("hello: method8727");
}
public void method8728() {
System.out.print("hello: method8728");
}
public void method8729() {
System.out.print("hello: method8729");
}
public void method8730() {
System.out.print("hello: method8730");
}
public void method8731() {
System.out.print("hello: method8731");
}
public void method8732() {
System.out.print("hello: method8732");
}
public void method8733() {
System.out.print("hello: method8733");
}
public void method8734() {
System.out.print("hello: method8734");
}
public void method8735() {
System.out.print("hello: method8735");
}
public void method8736() {
System.out.print("hello: method8736");
}
public void method8737() {
System.out.print("hello: method8737");
}
public void method8738() {
System.out.print("hello: method8738");
}
public void method8739() {
System.out.print("hello: method8739");
}
public void method8740() {
System.out.print("hello: method8740");
}
public void method8741() {
System.out.print("hello: method8741");
}
public void method8742() {
System.out.print("hello: method8742");
}
public void method8743() {
System.out.print("hello: method8743");
}
public void method8744() {
System.out.print("hello: method8744");
}
public void method8745() {
System.out.print("hello: method8745");
}
public void method8746() {
System.out.print("hello: method8746");
}
public void method8747() {
System.out.print("hello: method8747");
}
public void method8748() {
System.out.print("hello: method8748");
}
public void method8749() {
System.out.print("hello: method8749");
}
public void method8750() {
System.out.print("hello: method8750");
}
public void method8751() {
System.out.print("hello: method8751");
}
public void method8752() {
System.out.print("hello: method8752");
}
public void method8753() {
System.out.print("hello: method8753");
}
public void method8754() {
System.out.print("hello: method8754");
}
public void method8755() {
System.out.print("hello: method8755");
}
public void method8756() {
System.out.print("hello: method8756");
}
public void method8757() {
System.out.print("hello: method8757");
}
public void method8758() {
System.out.print("hello: method8758");
}
public void method8759() {
System.out.print("hello: method8759");
}
public void method8760() {
System.out.print("hello: method8760");
}
public void method8761() {
System.out.print("hello: method8761");
}
public void method8762() {
System.out.print("hello: method8762");
}
public void method8763() {
System.out.print("hello: method8763");
}
public void method8764() {
System.out.print("hello: method8764");
}
public void method8765() {
System.out.print("hello: method8765");
}
public void method8766() {
System.out.print("hello: method8766");
}
public void method8767() {
System.out.print("hello: method8767");
}
public void method8768() {
System.out.print("hello: method8768");
}
public void method8769() {
System.out.print("hello: method8769");
}
public void method8770() {
System.out.print("hello: method8770");
}
public void method8771() {
System.out.print("hello: method8771");
}
public void method8772() {
System.out.print("hello: method8772");
}
public void method8773() {
System.out.print("hello: method8773");
}
public void method8774() {
System.out.print("hello: method8774");
}
public void method8775() {
System.out.print("hello: method8775");
}
public void method8776() {
System.out.print("hello: method8776");
}
public void method8777() {
System.out.print("hello: method8777");
}
public void method8778() {
System.out.print("hello: method8778");
}
public void method8779() {
System.out.print("hello: method8779");
}
public void method8780() {
System.out.print("hello: method8780");
}
public void method8781() {
System.out.print("hello: method8781");
}
public void method8782() {
System.out.print("hello: method8782");
}
public void method8783() {
System.out.print("hello: method8783");
}
public void method8784() {
System.out.print("hello: method8784");
}
public void method8785() {
System.out.print("hello: method8785");
}
public void method8786() {
System.out.print("hello: method8786");
}
public void method8787() {
System.out.print("hello: method8787");
}
public void method8788() {
System.out.print("hello: method8788");
}
public void method8789() {
System.out.print("hello: method8789");
}
public void method8790() {
System.out.print("hello: method8790");
}
public void method8791() {
System.out.print("hello: method8791");
}
public void method8792() {
System.out.print("hello: method8792");
}
public void method8793() {
System.out.print("hello: method8793");
}
public void method8794() {
System.out.print("hello: method8794");
}
public void method8795() {
System.out.print("hello: method8795");
}
public void method8796() {
System.out.print("hello: method8796");
}
public void method8797() {
System.out.print("hello: method8797");
}
public void method8798() {
System.out.print("hello: method8798");
}
public void method8799() {
System.out.print("hello: method8799");
}
public void method8800() {
System.out.print("hello: method8800");
}
public void method8801() {
System.out.print("hello: method8801");
}
public void method8802() {
System.out.print("hello: method8802");
}
public void method8803() {
System.out.print("hello: method8803");
}
public void method8804() {
System.out.print("hello: method8804");
}
public void method8805() {
System.out.print("hello: method8805");
}
public void method8806() {
System.out.print("hello: method8806");
}
public void method8807() {
System.out.print("hello: method8807");
}
public void method8808() {
System.out.print("hello: method8808");
}
public void method8809() {
System.out.print("hello: method8809");
}
public void method8810() {
System.out.print("hello: method8810");
}
public void method8811() {
System.out.print("hello: method8811");
}
public void method8812() {
System.out.print("hello: method8812");
}
public void method8813() {
System.out.print("hello: method8813");
}
public void method8814() {
System.out.print("hello: method8814");
}
public void method8815() {
System.out.print("hello: method8815");
}
public void method8816() {
System.out.print("hello: method8816");
}
public void method8817() {
System.out.print("hello: method8817");
}
public void method8818() {
System.out.print("hello: method8818");
}
public void method8819() {
System.out.print("hello: method8819");
}
public void method8820() {
System.out.print("hello: method8820");
}
public void method8821() {
System.out.print("hello: method8821");
}
public void method8822() {
System.out.print("hello: method8822");
}
public void method8823() {
System.out.print("hello: method8823");
}
public void method8824() {
System.out.print("hello: method8824");
}
public void method8825() {
System.out.print("hello: method8825");
}
public void method8826() {
System.out.print("hello: method8826");
}
public void method8827() {
System.out.print("hello: method8827");
}
public void method8828() {
System.out.print("hello: method8828");
}
public void method8829() {
System.out.print("hello: method8829");
}
public void method8830() {
System.out.print("hello: method8830");
}
public void method8831() {
System.out.print("hello: method8831");
}
public void method8832() {
System.out.print("hello: method8832");
}
public void method8833() {
System.out.print("hello: method8833");
}
public void method8834() {
System.out.print("hello: method8834");
}
public void method8835() {
System.out.print("hello: method8835");
}
public void method8836() {
System.out.print("hello: method8836");
}
public void method8837() {
System.out.print("hello: method8837");
}
public void method8838() {
System.out.print("hello: method8838");
}
public void method8839() {
System.out.print("hello: method8839");
}
public void method8840() {
System.out.print("hello: method8840");
}
public void method8841() {
System.out.print("hello: method8841");
}
public void method8842() {
System.out.print("hello: method8842");
}
public void method8843() {
System.out.print("hello: method8843");
}
public void method8844() {
System.out.print("hello: method8844");
}
public void method8845() {
System.out.print("hello: method8845");
}
public void method8846() {
System.out.print("hello: method8846");
}
public void method8847() {
System.out.print("hello: method8847");
}
public void method8848() {
System.out.print("hello: method8848");
}
public void method8849() {
System.out.print("hello: method8849");
}
public void method8850() {
System.out.print("hello: method8850");
}
public void method8851() {
System.out.print("hello: method8851");
}
public void method8852() {
System.out.print("hello: method8852");
}
public void method8853() {
System.out.print("hello: method8853");
}
public void method8854() {
System.out.print("hello: method8854");
}
public void method8855() {
System.out.print("hello: method8855");
}
public void method8856() {
System.out.print("hello: method8856");
}
public void method8857() {
System.out.print("hello: method8857");
}
public void method8858() {
System.out.print("hello: method8858");
}
public void method8859() {
System.out.print("hello: method8859");
}
public void method8860() {
System.out.print("hello: method8860");
}
public void method8861() {
System.out.print("hello: method8861");
}
public void method8862() {
System.out.print("hello: method8862");
}
public void method8863() {
System.out.print("hello: method8863");
}
public void method8864() {
System.out.print("hello: method8864");
}
public void method8865() {
System.out.print("hello: method8865");
}
public void method8866() {
System.out.print("hello: method8866");
}
public void method8867() {
System.out.print("hello: method8867");
}
public void method8868() {
System.out.print("hello: method8868");
}
public void method8869() {
System.out.print("hello: method8869");
}
public void method8870() {
System.out.print("hello: method8870");
}
public void method8871() {
System.out.print("hello: method8871");
}
public void method8872() {
System.out.print("hello: method8872");
}
public void method8873() {
System.out.print("hello: method8873");
}
public void method8874() {
System.out.print("hello: method8874");
}
public void method8875() {
System.out.print("hello: method8875");
}
public void method8876() {
System.out.print("hello: method8876");
}
public void method8877() {
System.out.print("hello: method8877");
}
public void method8878() {
System.out.print("hello: method8878");
}
public void method8879() {
System.out.print("hello: method8879");
}
public void method8880() {
System.out.print("hello: method8880");
}
public void method8881() {
System.out.print("hello: method8881");
}
public void method8882() {
System.out.print("hello: method8882");
}
public void method8883() {
System.out.print("hello: method8883");
}
public void method8884() {
System.out.print("hello: method8884");
}
public void method8885() {
System.out.print("hello: method8885");
}
public void method8886() {
System.out.print("hello: method8886");
}
public void method8887() {
System.out.print("hello: method8887");
}
public void method8888() {
System.out.print("hello: method8888");
}
public void method8889() {
System.out.print("hello: method8889");
}
public void method8890() {
System.out.print("hello: method8890");
}
public void method8891() {
System.out.print("hello: method8891");
}
public void method8892() {
System.out.print("hello: method8892");
}
public void method8893() {
System.out.print("hello: method8893");
}
public void method8894() {
System.out.print("hello: method8894");
}
public void method8895() {
System.out.print("hello: method8895");
}
public void method8896() {
System.out.print("hello: method8896");
}
public void method8897() {
System.out.print("hello: method8897");
}
public void method8898() {
System.out.print("hello: method8898");
}
public void method8899() {
System.out.print("hello: method8899");
}
public void method8900() {
System.out.print("hello: method8900");
}
public void method8901() {
System.out.print("hello: method8901");
}
public void method8902() {
System.out.print("hello: method8902");
}
public void method8903() {
System.out.print("hello: method8903");
}
public void method8904() {
System.out.print("hello: method8904");
}
public void method8905() {
System.out.print("hello: method8905");
}
public void method8906() {
System.out.print("hello: method8906");
}
public void method8907() {
System.out.print("hello: method8907");
}
public void method8908() {
System.out.print("hello: method8908");
}
public void method8909() {
System.out.print("hello: method8909");
}
public void method8910() {
System.out.print("hello: method8910");
}
public void method8911() {
System.out.print("hello: method8911");
}
public void method8912() {
System.out.print("hello: method8912");
}
public void method8913() {
System.out.print("hello: method8913");
}
public void method8914() {
System.out.print("hello: method8914");
}
public void method8915() {
System.out.print("hello: method8915");
}
public void method8916() {
System.out.print("hello: method8916");
}
public void method8917() {
System.out.print("hello: method8917");
}
public void method8918() {
System.out.print("hello: method8918");
}
public void method8919() {
System.out.print("hello: method8919");
}
public void method8920() {
System.out.print("hello: method8920");
}
public void method8921() {
System.out.print("hello: method8921");
}
public void method8922() {
System.out.print("hello: method8922");
}
public void method8923() {
System.out.print("hello: method8923");
}
public void method8924() {
System.out.print("hello: method8924");
}
public void method8925() {
System.out.print("hello: method8925");
}
public void method8926() {
System.out.print("hello: method8926");
}
public void method8927() {
System.out.print("hello: method8927");
}
public void method8928() {
System.out.print("hello: method8928");
}
public void method8929() {
System.out.print("hello: method8929");
}
public void method8930() {
System.out.print("hello: method8930");
}
public void method8931() {
System.out.print("hello: method8931");
}
public void method8932() {
System.out.print("hello: method8932");
}
public void method8933() {
System.out.print("hello: method8933");
}
public void method8934() {
System.out.print("hello: method8934");
}
public void method8935() {
System.out.print("hello: method8935");
}
public void method8936() {
System.out.print("hello: method8936");
}
public void method8937() {
System.out.print("hello: method8937");
}
public void method8938() {
System.out.print("hello: method8938");
}
public void method8939() {
System.out.print("hello: method8939");
}
public void method8940() {
System.out.print("hello: method8940");
}
public void method8941() {
System.out.print("hello: method8941");
}
public void method8942() {
System.out.print("hello: method8942");
}
public void method8943() {
System.out.print("hello: method8943");
}
public void method8944() {
System.out.print("hello: method8944");
}
public void method8945() {
System.out.print("hello: method8945");
}
public void method8946() {
System.out.print("hello: method8946");
}
public void method8947() {
System.out.print("hello: method8947");
}
public void method8948() {
System.out.print("hello: method8948");
}
public void method8949() {
System.out.print("hello: method8949");
}
public void method8950() {
System.out.print("hello: method8950");
}
public void method8951() {
System.out.print("hello: method8951");
}
public void method8952() {
System.out.print("hello: method8952");
}
public void method8953() {
System.out.print("hello: method8953");
}
public void method8954() {
System.out.print("hello: method8954");
}
public void method8955() {
System.out.print("hello: method8955");
}
public void method8956() {
System.out.print("hello: method8956");
}
public void method8957() {
System.out.print("hello: method8957");
}
public void method8958() {
System.out.print("hello: method8958");
}
public void method8959() {
System.out.print("hello: method8959");
}
public void method8960() {
System.out.print("hello: method8960");
}
public void method8961() {
System.out.print("hello: method8961");
}
public void method8962() {
System.out.print("hello: method8962");
}
public void method8963() {
System.out.print("hello: method8963");
}
public void method8964() {
System.out.print("hello: method8964");
}
public void method8965() {
System.out.print("hello: method8965");
}
public void method8966() {
System.out.print("hello: method8966");
}
public void method8967() {
System.out.print("hello: method8967");
}
public void method8968() {
System.out.print("hello: method8968");
}
public void method8969() {
System.out.print("hello: method8969");
}
public void method8970() {
System.out.print("hello: method8970");
}
public void method8971() {
System.out.print("hello: method8971");
}
public void method8972() {
System.out.print("hello: method8972");
}
public void method8973() {
System.out.print("hello: method8973");
}
public void method8974() {
System.out.print("hello: method8974");
}
public void method8975() {
System.out.print("hello: method8975");
}
public void method8976() {
System.out.print("hello: method8976");
}
public void method8977() {
System.out.print("hello: method8977");
}
public void method8978() {
System.out.print("hello: method8978");
}
public void method8979() {
System.out.print("hello: method8979");
}
public void method8980() {
System.out.print("hello: method8980");
}
public void method8981() {
System.out.print("hello: method8981");
}
public void method8982() {
System.out.print("hello: method8982");
}
public void method8983() {
System.out.print("hello: method8983");
}
public void method8984() {
System.out.print("hello: method8984");
}
public void method8985() {
System.out.print("hello: method8985");
}
public void method8986() {
System.out.print("hello: method8986");
}
public void method8987() {
System.out.print("hello: method8987");
}
public void method8988() {
System.out.print("hello: method8988");
}
public void method8989() {
System.out.print("hello: method8989");
}
public void method8990() {
System.out.print("hello: method8990");
}
public void method8991() {
System.out.print("hello: method8991");
}
public void method8992() {
System.out.print("hello: method8992");
}
public void method8993() {
System.out.print("hello: method8993");
}
public void method8994() {
System.out.print("hello: method8994");
}
public void method8995() {
System.out.print("hello: method8995");
}
public void method8996() {
System.out.print("hello: method8996");
}
public void method8997() {
System.out.print("hello: method8997");
}
public void method8998() {
System.out.print("hello: method8998");
}
public void method8999() {
System.out.print("hello: method8999");
}
public void method9000() {
System.out.print("hello: method9000");
}
public void method9001() {
System.out.print("hello: method9001");
}
public void method9002() {
System.out.print("hello: method9002");
}
public void method9003() {
System.out.print("hello: method9003");
}
public void method9004() {
System.out.print("hello: method9004");
}
public void method9005() {
System.out.print("hello: method9005");
}
public void method9006() {
System.out.print("hello: method9006");
}
public void method9007() {
System.out.print("hello: method9007");
}
public void method9008() {
System.out.print("hello: method9008");
}
public void method9009() {
System.out.print("hello: method9009");
}
public void method9010() {
System.out.print("hello: method9010");
}
public void method9011() {
System.out.print("hello: method9011");
}
public void method9012() {
System.out.print("hello: method9012");
}
public void method9013() {
System.out.print("hello: method9013");
}
public void method9014() {
System.out.print("hello: method9014");
}
public void method9015() {
System.out.print("hello: method9015");
}
public void method9016() {
System.out.print("hello: method9016");
}
public void method9017() {
System.out.print("hello: method9017");
}
public void method9018() {
System.out.print("hello: method9018");
}
public void method9019() {
System.out.print("hello: method9019");
}
public void method9020() {
System.out.print("hello: method9020");
}
public void method9021() {
System.out.print("hello: method9021");
}
public void method9022() {
System.out.print("hello: method9022");
}
public void method9023() {
System.out.print("hello: method9023");
}
public void method9024() {
System.out.print("hello: method9024");
}
public void method9025() {
System.out.print("hello: method9025");
}
public void method9026() {
System.out.print("hello: method9026");
}
public void method9027() {
System.out.print("hello: method9027");
}
public void method9028() {
System.out.print("hello: method9028");
}
public void method9029() {
System.out.print("hello: method9029");
}
public void method9030() {
System.out.print("hello: method9030");
}
public void method9031() {
System.out.print("hello: method9031");
}
public void method9032() {
System.out.print("hello: method9032");
}
public void method9033() {
System.out.print("hello: method9033");
}
public void method9034() {
System.out.print("hello: method9034");
}
public void method9035() {
System.out.print("hello: method9035");
}
public void method9036() {
System.out.print("hello: method9036");
}
public void method9037() {
System.out.print("hello: method9037");
}
public void method9038() {
System.out.print("hello: method9038");
}
public void method9039() {
System.out.print("hello: method9039");
}
public void method9040() {
System.out.print("hello: method9040");
}
public void method9041() {
System.out.print("hello: method9041");
}
public void method9042() {
System.out.print("hello: method9042");
}
public void method9043() {
System.out.print("hello: method9043");
}
public void method9044() {
System.out.print("hello: method9044");
}
public void method9045() {
System.out.print("hello: method9045");
}
public void method9046() {
System.out.print("hello: method9046");
}
public void method9047() {
System.out.print("hello: method9047");
}
public void method9048() {
System.out.print("hello: method9048");
}
public void method9049() {
System.out.print("hello: method9049");
}
public void method9050() {
System.out.print("hello: method9050");
}
public void method9051() {
System.out.print("hello: method9051");
}
public void method9052() {
System.out.print("hello: method9052");
}
public void method9053() {
System.out.print("hello: method9053");
}
public void method9054() {
System.out.print("hello: method9054");
}
public void method9055() {
System.out.print("hello: method9055");
}
public void method9056() {
System.out.print("hello: method9056");
}
public void method9057() {
System.out.print("hello: method9057");
}
public void method9058() {
System.out.print("hello: method9058");
}
public void method9059() {
System.out.print("hello: method9059");
}
public void method9060() {
System.out.print("hello: method9060");
}
public void method9061() {
System.out.print("hello: method9061");
}
public void method9062() {
System.out.print("hello: method9062");
}
public void method9063() {
System.out.print("hello: method9063");
}
public void method9064() {
System.out.print("hello: method9064");
}
public void method9065() {
System.out.print("hello: method9065");
}
public void method9066() {
System.out.print("hello: method9066");
}
public void method9067() {
System.out.print("hello: method9067");
}
public void method9068() {
System.out.print("hello: method9068");
}
public void method9069() {
System.out.print("hello: method9069");
}
public void method9070() {
System.out.print("hello: method9070");
}
public void method9071() {
System.out.print("hello: method9071");
}
public void method9072() {
System.out.print("hello: method9072");
}
public void method9073() {
System.out.print("hello: method9073");
}
public void method9074() {
System.out.print("hello: method9074");
}
public void method9075() {
System.out.print("hello: method9075");
}
public void method9076() {
System.out.print("hello: method9076");
}
public void method9077() {
System.out.print("hello: method9077");
}
public void method9078() {
System.out.print("hello: method9078");
}
public void method9079() {
System.out.print("hello: method9079");
}
public void method9080() {
System.out.print("hello: method9080");
}
public void method9081() {
System.out.print("hello: method9081");
}
public void method9082() {
System.out.print("hello: method9082");
}
public void method9083() {
System.out.print("hello: method9083");
}
public void method9084() {
System.out.print("hello: method9084");
}
public void method9085() {
System.out.print("hello: method9085");
}
public void method9086() {
System.out.print("hello: method9086");
}
public void method9087() {
System.out.print("hello: method9087");
}
public void method9088() {
System.out.print("hello: method9088");
}
public void method9089() {
System.out.print("hello: method9089");
}
public void method9090() {
System.out.print("hello: method9090");
}
public void method9091() {
System.out.print("hello: method9091");
}
public void method9092() {
System.out.print("hello: method9092");
}
public void method9093() {
System.out.print("hello: method9093");
}
public void method9094() {
System.out.print("hello: method9094");
}
public void method9095() {
System.out.print("hello: method9095");
}
public void method9096() {
System.out.print("hello: method9096");
}
public void method9097() {
System.out.print("hello: method9097");
}
public void method9098() {
System.out.print("hello: method9098");
}
public void method9099() {
System.out.print("hello: method9099");
}
public void method9100() {
System.out.print("hello: method9100");
}
public void method9101() {
System.out.print("hello: method9101");
}
public void method9102() {
System.out.print("hello: method9102");
}
public void method9103() {
System.out.print("hello: method9103");
}
public void method9104() {
System.out.print("hello: method9104");
}
public void method9105() {
System.out.print("hello: method9105");
}
public void method9106() {
System.out.print("hello: method9106");
}
public void method9107() {
System.out.print("hello: method9107");
}
public void method9108() {
System.out.print("hello: method9108");
}
public void method9109() {
System.out.print("hello: method9109");
}
public void method9110() {
System.out.print("hello: method9110");
}
public void method9111() {
System.out.print("hello: method9111");
}
public void method9112() {
System.out.print("hello: method9112");
}
public void method9113() {
System.out.print("hello: method9113");
}
public void method9114() {
System.out.print("hello: method9114");
}
public void method9115() {
System.out.print("hello: method9115");
}
public void method9116() {
System.out.print("hello: method9116");
}
public void method9117() {
System.out.print("hello: method9117");
}
public void method9118() {
System.out.print("hello: method9118");
}
public void method9119() {
System.out.print("hello: method9119");
}
public void method9120() {
System.out.print("hello: method9120");
}
public void method9121() {
System.out.print("hello: method9121");
}
public void method9122() {
System.out.print("hello: method9122");
}
public void method9123() {
System.out.print("hello: method9123");
}
public void method9124() {
System.out.print("hello: method9124");
}
public void method9125() {
System.out.print("hello: method9125");
}
public void method9126() {
System.out.print("hello: method9126");
}
public void method9127() {
System.out.print("hello: method9127");
}
public void method9128() {
System.out.print("hello: method9128");
}
public void method9129() {
System.out.print("hello: method9129");
}
public void method9130() {
System.out.print("hello: method9130");
}
public void method9131() {
System.out.print("hello: method9131");
}
public void method9132() {
System.out.print("hello: method9132");
}
public void method9133() {
System.out.print("hello: method9133");
}
public void method9134() {
System.out.print("hello: method9134");
}
public void method9135() {
System.out.print("hello: method9135");
}
public void method9136() {
System.out.print("hello: method9136");
}
public void method9137() {
System.out.print("hello: method9137");
}
public void method9138() {
System.out.print("hello: method9138");
}
public void method9139() {
System.out.print("hello: method9139");
}
public void method9140() {
System.out.print("hello: method9140");
}
public void method9141() {
System.out.print("hello: method9141");
}
public void method9142() {
System.out.print("hello: method9142");
}
public void method9143() {
System.out.print("hello: method9143");
}
public void method9144() {
System.out.print("hello: method9144");
}
public void method9145() {
System.out.print("hello: method9145");
}
public void method9146() {
System.out.print("hello: method9146");
}
public void method9147() {
System.out.print("hello: method9147");
}
public void method9148() {
System.out.print("hello: method9148");
}
public void method9149() {
System.out.print("hello: method9149");
}
public void method9150() {
System.out.print("hello: method9150");
}
public void method9151() {
System.out.print("hello: method9151");
}
public void method9152() {
System.out.print("hello: method9152");
}
public void method9153() {
System.out.print("hello: method9153");
}
public void method9154() {
System.out.print("hello: method9154");
}
public void method9155() {
System.out.print("hello: method9155");
}
public void method9156() {
System.out.print("hello: method9156");
}
public void method9157() {
System.out.print("hello: method9157");
}
public void method9158() {
System.out.print("hello: method9158");
}
public void method9159() {
System.out.print("hello: method9159");
}
public void method9160() {
System.out.print("hello: method9160");
}
public void method9161() {
System.out.print("hello: method9161");
}
public void method9162() {
System.out.print("hello: method9162");
}
public void method9163() {
System.out.print("hello: method9163");
}
public void method9164() {
System.out.print("hello: method9164");
}
public void method9165() {
System.out.print("hello: method9165");
}
public void method9166() {
System.out.print("hello: method9166");
}
public void method9167() {
System.out.print("hello: method9167");
}
public void method9168() {
System.out.print("hello: method9168");
}
public void method9169() {
System.out.print("hello: method9169");
}
public void method9170() {
System.out.print("hello: method9170");
}
public void method9171() {
System.out.print("hello: method9171");
}
public void method9172() {
System.out.print("hello: method9172");
}
public void method9173() {
System.out.print("hello: method9173");
}
public void method9174() {
System.out.print("hello: method9174");
}
public void method9175() {
System.out.print("hello: method9175");
}
public void method9176() {
System.out.print("hello: method9176");
}
public void method9177() {
System.out.print("hello: method9177");
}
public void method9178() {
System.out.print("hello: method9178");
}
public void method9179() {
System.out.print("hello: method9179");
}
public void method9180() {
System.out.print("hello: method9180");
}
public void method9181() {
System.out.print("hello: method9181");
}
public void method9182() {
System.out.print("hello: method9182");
}
public void method9183() {
System.out.print("hello: method9183");
}
public void method9184() {
System.out.print("hello: method9184");
}
public void method9185() {
System.out.print("hello: method9185");
}
public void method9186() {
System.out.print("hello: method9186");
}
public void method9187() {
System.out.print("hello: method9187");
}
public void method9188() {
System.out.print("hello: method9188");
}
public void method9189() {
System.out.print("hello: method9189");
}
public void method9190() {
System.out.print("hello: method9190");
}
public void method9191() {
System.out.print("hello: method9191");
}
public void method9192() {
System.out.print("hello: method9192");
}
public void method9193() {
System.out.print("hello: method9193");
}
public void method9194() {
System.out.print("hello: method9194");
}
public void method9195() {
System.out.print("hello: method9195");
}
public void method9196() {
System.out.print("hello: method9196");
}
public void method9197() {
System.out.print("hello: method9197");
}
public void method9198() {
System.out.print("hello: method9198");
}
public void method9199() {
System.out.print("hello: method9199");
}
public void method9200() {
System.out.print("hello: method9200");
}
public void method9201() {
System.out.print("hello: method9201");
}
public void method9202() {
System.out.print("hello: method9202");
}
public void method9203() {
System.out.print("hello: method9203");
}
public void method9204() {
System.out.print("hello: method9204");
}
public void method9205() {
System.out.print("hello: method9205");
}
public void method9206() {
System.out.print("hello: method9206");
}
public void method9207() {
System.out.print("hello: method9207");
}
public void method9208() {
System.out.print("hello: method9208");
}
public void method9209() {
System.out.print("hello: method9209");
}
public void method9210() {
System.out.print("hello: method9210");
}
public void method9211() {
System.out.print("hello: method9211");
}
public void method9212() {
System.out.print("hello: method9212");
}
public void method9213() {
System.out.print("hello: method9213");
}
public void method9214() {
System.out.print("hello: method9214");
}
public void method9215() {
System.out.print("hello: method9215");
}
public void method9216() {
System.out.print("hello: method9216");
}
public void method9217() {
System.out.print("hello: method9217");
}
public void method9218() {
System.out.print("hello: method9218");
}
public void method9219() {
System.out.print("hello: method9219");
}
public void method9220() {
System.out.print("hello: method9220");
}
public void method9221() {
System.out.print("hello: method9221");
}
public void method9222() {
System.out.print("hello: method9222");
}
public void method9223() {
System.out.print("hello: method9223");
}
public void method9224() {
System.out.print("hello: method9224");
}
public void method9225() {
System.out.print("hello: method9225");
}
public void method9226() {
System.out.print("hello: method9226");
}
public void method9227() {
System.out.print("hello: method9227");
}
public void method9228() {
System.out.print("hello: method9228");
}
public void method9229() {
System.out.print("hello: method9229");
}
public void method9230() {
System.out.print("hello: method9230");
}
public void method9231() {
System.out.print("hello: method9231");
}
public void method9232() {
System.out.print("hello: method9232");
}
public void method9233() {
System.out.print("hello: method9233");
}
public void method9234() {
System.out.print("hello: method9234");
}
public void method9235() {
System.out.print("hello: method9235");
}
public void method9236() {
System.out.print("hello: method9236");
}
public void method9237() {
System.out.print("hello: method9237");
}
public void method9238() {
System.out.print("hello: method9238");
}
public void method9239() {
System.out.print("hello: method9239");
}
public void method9240() {
System.out.print("hello: method9240");
}
public void method9241() {
System.out.print("hello: method9241");
}
public void method9242() {
System.out.print("hello: method9242");
}
public void method9243() {
System.out.print("hello: method9243");
}
public void method9244() {
System.out.print("hello: method9244");
}
public void method9245() {
System.out.print("hello: method9245");
}
public void method9246() {
System.out.print("hello: method9246");
}
public void method9247() {
System.out.print("hello: method9247");
}
public void method9248() {
System.out.print("hello: method9248");
}
public void method9249() {
System.out.print("hello: method9249");
}
public void method9250() {
System.out.print("hello: method9250");
}
public void method9251() {
System.out.print("hello: method9251");
}
public void method9252() {
System.out.print("hello: method9252");
}
public void method9253() {
System.out.print("hello: method9253");
}
public void method9254() {
System.out.print("hello: method9254");
}
public void method9255() {
System.out.print("hello: method9255");
}
public void method9256() {
System.out.print("hello: method9256");
}
public void method9257() {
System.out.print("hello: method9257");
}
public void method9258() {
System.out.print("hello: method9258");
}
public void method9259() {
System.out.print("hello: method9259");
}
public void method9260() {
System.out.print("hello: method9260");
}
public void method9261() {
System.out.print("hello: method9261");
}
public void method9262() {
System.out.print("hello: method9262");
}
public void method9263() {
System.out.print("hello: method9263");
}
public void method9264() {
System.out.print("hello: method9264");
}
public void method9265() {
System.out.print("hello: method9265");
}
public void method9266() {
System.out.print("hello: method9266");
}
public void method9267() {
System.out.print("hello: method9267");
}
public void method9268() {
System.out.print("hello: method9268");
}
public void method9269() {
System.out.print("hello: method9269");
}
public void method9270() {
System.out.print("hello: method9270");
}
public void method9271() {
System.out.print("hello: method9271");
}
public void method9272() {
System.out.print("hello: method9272");
}
public void method9273() {
System.out.print("hello: method9273");
}
public void method9274() {
System.out.print("hello: method9274");
}
public void method9275() {
System.out.print("hello: method9275");
}
public void method9276() {
System.out.print("hello: method9276");
}
public void method9277() {
System.out.print("hello: method9277");
}
public void method9278() {
System.out.print("hello: method9278");
}
public void method9279() {
System.out.print("hello: method9279");
}
public void method9280() {
System.out.print("hello: method9280");
}
public void method9281() {
System.out.print("hello: method9281");
}
public void method9282() {
System.out.print("hello: method9282");
}
public void method9283() {
System.out.print("hello: method9283");
}
public void method9284() {
System.out.print("hello: method9284");
}
public void method9285() {
System.out.print("hello: method9285");
}
public void method9286() {
System.out.print("hello: method9286");
}
public void method9287() {
System.out.print("hello: method9287");
}
public void method9288() {
System.out.print("hello: method9288");
}
public void method9289() {
System.out.print("hello: method9289");
}
public void method9290() {
System.out.print("hello: method9290");
}
public void method9291() {
System.out.print("hello: method9291");
}
public void method9292() {
System.out.print("hello: method9292");
}
public void method9293() {
System.out.print("hello: method9293");
}
public void method9294() {
System.out.print("hello: method9294");
}
public void method9295() {
System.out.print("hello: method9295");
}
public void method9296() {
System.out.print("hello: method9296");
}
public void method9297() {
System.out.print("hello: method9297");
}
public void method9298() {
System.out.print("hello: method9298");
}
public void method9299() {
System.out.print("hello: method9299");
}
public void method9300() {
System.out.print("hello: method9300");
}
public void method9301() {
System.out.print("hello: method9301");
}
public void method9302() {
System.out.print("hello: method9302");
}
public void method9303() {
System.out.print("hello: method9303");
}
public void method9304() {
System.out.print("hello: method9304");
}
public void method9305() {
System.out.print("hello: method9305");
}
public void method9306() {
System.out.print("hello: method9306");
}
public void method9307() {
System.out.print("hello: method9307");
}
public void method9308() {
System.out.print("hello: method9308");
}
public void method9309() {
System.out.print("hello: method9309");
}
public void method9310() {
System.out.print("hello: method9310");
}
public void method9311() {
System.out.print("hello: method9311");
}
public void method9312() {
System.out.print("hello: method9312");
}
public void method9313() {
System.out.print("hello: method9313");
}
public void method9314() {
System.out.print("hello: method9314");
}
public void method9315() {
System.out.print("hello: method9315");
}
public void method9316() {
System.out.print("hello: method9316");
}
public void method9317() {
System.out.print("hello: method9317");
}
public void method9318() {
System.out.print("hello: method9318");
}
public void method9319() {
System.out.print("hello: method9319");
}
public void method9320() {
System.out.print("hello: method9320");
}
public void method9321() {
System.out.print("hello: method9321");
}
public void method9322() {
System.out.print("hello: method9322");
}
public void method9323() {
System.out.print("hello: method9323");
}
public void method9324() {
System.out.print("hello: method9324");
}
public void method9325() {
System.out.print("hello: method9325");
}
public void method9326() {
System.out.print("hello: method9326");
}
public void method9327() {
System.out.print("hello: method9327");
}
public void method9328() {
System.out.print("hello: method9328");
}
public void method9329() {
System.out.print("hello: method9329");
}
public void method9330() {
System.out.print("hello: method9330");
}
public void method9331() {
System.out.print("hello: method9331");
}
public void method9332() {
System.out.print("hello: method9332");
}
public void method9333() {
System.out.print("hello: method9333");
}
public void method9334() {
System.out.print("hello: method9334");
}
public void method9335() {
System.out.print("hello: method9335");
}
public void method9336() {
System.out.print("hello: method9336");
}
public void method9337() {
System.out.print("hello: method9337");
}
public void method9338() {
System.out.print("hello: method9338");
}
public void method9339() {
System.out.print("hello: method9339");
}
public void method9340() {
System.out.print("hello: method9340");
}
public void method9341() {
System.out.print("hello: method9341");
}
public void method9342() {
System.out.print("hello: method9342");
}
public void method9343() {
System.out.print("hello: method9343");
}
public void method9344() {
System.out.print("hello: method9344");
}
public void method9345() {
System.out.print("hello: method9345");
}
public void method9346() {
System.out.print("hello: method9346");
}
public void method9347() {
System.out.print("hello: method9347");
}
public void method9348() {
System.out.print("hello: method9348");
}
public void method9349() {
System.out.print("hello: method9349");
}
public void method9350() {
System.out.print("hello: method9350");
}
public void method9351() {
System.out.print("hello: method9351");
}
public void method9352() {
System.out.print("hello: method9352");
}
public void method9353() {
System.out.print("hello: method9353");
}
public void method9354() {
System.out.print("hello: method9354");
}
public void method9355() {
System.out.print("hello: method9355");
}
public void method9356() {
System.out.print("hello: method9356");
}
public void method9357() {
System.out.print("hello: method9357");
}
public void method9358() {
System.out.print("hello: method9358");
}
public void method9359() {
System.out.print("hello: method9359");
}
public void method9360() {
System.out.print("hello: method9360");
}
public void method9361() {
System.out.print("hello: method9361");
}
public void method9362() {
System.out.print("hello: method9362");
}
public void method9363() {
System.out.print("hello: method9363");
}
public void method9364() {
System.out.print("hello: method9364");
}
public void method9365() {
System.out.print("hello: method9365");
}
public void method9366() {
System.out.print("hello: method9366");
}
public void method9367() {
System.out.print("hello: method9367");
}
public void method9368() {
System.out.print("hello: method9368");
}
public void method9369() {
System.out.print("hello: method9369");
}
public void method9370() {
System.out.print("hello: method9370");
}
public void method9371() {
System.out.print("hello: method9371");
}
public void method9372() {
System.out.print("hello: method9372");
}
public void method9373() {
System.out.print("hello: method9373");
}
public void method9374() {
System.out.print("hello: method9374");
}
public void method9375() {
System.out.print("hello: method9375");
}
public void method9376() {
System.out.print("hello: method9376");
}
public void method9377() {
System.out.print("hello: method9377");
}
public void method9378() {
System.out.print("hello: method9378");
}
public void method9379() {
System.out.print("hello: method9379");
}
public void method9380() {
System.out.print("hello: method9380");
}
public void method9381() {
System.out.print("hello: method9381");
}
public void method9382() {
System.out.print("hello: method9382");
}
public void method9383() {
System.out.print("hello: method9383");
}
public void method9384() {
System.out.print("hello: method9384");
}
public void method9385() {
System.out.print("hello: method9385");
}
public void method9386() {
System.out.print("hello: method9386");
}
public void method9387() {
System.out.print("hello: method9387");
}
public void method9388() {
System.out.print("hello: method9388");
}
public void method9389() {
System.out.print("hello: method9389");
}
public void method9390() {
System.out.print("hello: method9390");
}
public void method9391() {
System.out.print("hello: method9391");
}
public void method9392() {
System.out.print("hello: method9392");
}
public void method9393() {
System.out.print("hello: method9393");
}
public void method9394() {
System.out.print("hello: method9394");
}
public void method9395() {
System.out.print("hello: method9395");
}
public void method9396() {
System.out.print("hello: method9396");
}
public void method9397() {
System.out.print("hello: method9397");
}
public void method9398() {
System.out.print("hello: method9398");
}
public void method9399() {
System.out.print("hello: method9399");
}
public void method9400() {
System.out.print("hello: method9400");
}
public void method9401() {
System.out.print("hello: method9401");
}
public void method9402() {
System.out.print("hello: method9402");
}
public void method9403() {
System.out.print("hello: method9403");
}
public void method9404() {
System.out.print("hello: method9404");
}
public void method9405() {
System.out.print("hello: method9405");
}
public void method9406() {
System.out.print("hello: method9406");
}
public void method9407() {
System.out.print("hello: method9407");
}
public void method9408() {
System.out.print("hello: method9408");
}
public void method9409() {
System.out.print("hello: method9409");
}
public void method9410() {
System.out.print("hello: method9410");
}
public void method9411() {
System.out.print("hello: method9411");
}
public void method9412() {
System.out.print("hello: method9412");
}
public void method9413() {
System.out.print("hello: method9413");
}
public void method9414() {
System.out.print("hello: method9414");
}
public void method9415() {
System.out.print("hello: method9415");
}
public void method9416() {
System.out.print("hello: method9416");
}
public void method9417() {
System.out.print("hello: method9417");
}
public void method9418() {
System.out.print("hello: method9418");
}
public void method9419() {
System.out.print("hello: method9419");
}
public void method9420() {
System.out.print("hello: method9420");
}
public void method9421() {
System.out.print("hello: method9421");
}
public void method9422() {
System.out.print("hello: method9422");
}
public void method9423() {
System.out.print("hello: method9423");
}
public void method9424() {
System.out.print("hello: method9424");
}
public void method9425() {
System.out.print("hello: method9425");
}
public void method9426() {
System.out.print("hello: method9426");
}
public void method9427() {
System.out.print("hello: method9427");
}
public void method9428() {
System.out.print("hello: method9428");
}
public void method9429() {
System.out.print("hello: method9429");
}
public void method9430() {
System.out.print("hello: method9430");
}
public void method9431() {
System.out.print("hello: method9431");
}
public void method9432() {
System.out.print("hello: method9432");
}
public void method9433() {
System.out.print("hello: method9433");
}
public void method9434() {
System.out.print("hello: method9434");
}
public void method9435() {
System.out.print("hello: method9435");
}
public void method9436() {
System.out.print("hello: method9436");
}
public void method9437() {
System.out.print("hello: method9437");
}
public void method9438() {
System.out.print("hello: method9438");
}
public void method9439() {
System.out.print("hello: method9439");
}
public void method9440() {
System.out.print("hello: method9440");
}
public void method9441() {
System.out.print("hello: method9441");
}
public void method9442() {
System.out.print("hello: method9442");
}
public void method9443() {
System.out.print("hello: method9443");
}
public void method9444() {
System.out.print("hello: method9444");
}
public void method9445() {
System.out.print("hello: method9445");
}
public void method9446() {
System.out.print("hello: method9446");
}
public void method9447() {
System.out.print("hello: method9447");
}
public void method9448() {
System.out.print("hello: method9448");
}
public void method9449() {
System.out.print("hello: method9449");
}
public void method9450() {
System.out.print("hello: method9450");
}
public void method9451() {
System.out.print("hello: method9451");
}
public void method9452() {
System.out.print("hello: method9452");
}
public void method9453() {
System.out.print("hello: method9453");
}
public void method9454() {
System.out.print("hello: method9454");
}
public void method9455() {
System.out.print("hello: method9455");
}
public void method9456() {
System.out.print("hello: method9456");
}
public void method9457() {
System.out.print("hello: method9457");
}
public void method9458() {
System.out.print("hello: method9458");
}
public void method9459() {
System.out.print("hello: method9459");
}
public void method9460() {
System.out.print("hello: method9460");
}
public void method9461() {
System.out.print("hello: method9461");
}
public void method9462() {
System.out.print("hello: method9462");
}
public void method9463() {
System.out.print("hello: method9463");
}
public void method9464() {
System.out.print("hello: method9464");
}
public void method9465() {
System.out.print("hello: method9465");
}
public void method9466() {
System.out.print("hello: method9466");
}
public void method9467() {
System.out.print("hello: method9467");
}
public void method9468() {
System.out.print("hello: method9468");
}
public void method9469() {
System.out.print("hello: method9469");
}
public void method9470() {
System.out.print("hello: method9470");
}
public void method9471() {
System.out.print("hello: method9471");
}
public void method9472() {
System.out.print("hello: method9472");
}
public void method9473() {
System.out.print("hello: method9473");
}
public void method9474() {
System.out.print("hello: method9474");
}
public void method9475() {
System.out.print("hello: method9475");
}
public void method9476() {
System.out.print("hello: method9476");
}
public void method9477() {
System.out.print("hello: method9477");
}
public void method9478() {
System.out.print("hello: method9478");
}
public void method9479() {
System.out.print("hello: method9479");
}
public void method9480() {
System.out.print("hello: method9480");
}
public void method9481() {
System.out.print("hello: method9481");
}
public void method9482() {
System.out.print("hello: method9482");
}
public void method9483() {
System.out.print("hello: method9483");
}
public void method9484() {
System.out.print("hello: method9484");
}
public void method9485() {
System.out.print("hello: method9485");
}
public void method9486() {
System.out.print("hello: method9486");
}
public void method9487() {
System.out.print("hello: method9487");
}
public void method9488() {
System.out.print("hello: method9488");
}
public void method9489() {
System.out.print("hello: method9489");
}
public void method9490() {
System.out.print("hello: method9490");
}
public void method9491() {
System.out.print("hello: method9491");
}
public void method9492() {
System.out.print("hello: method9492");
}
public void method9493() {
System.out.print("hello: method9493");
}
public void method9494() {
System.out.print("hello: method9494");
}
public void method9495() {
System.out.print("hello: method9495");
}
public void method9496() {
System.out.print("hello: method9496");
}
public void method9497() {
System.out.print("hello: method9497");
}
public void method9498() {
System.out.print("hello: method9498");
}
public void method9499() {
System.out.print("hello: method9499");
}
public void method9500() {
System.out.print("hello: method9500");
}
public void method9501() {
System.out.print("hello: method9501");
}
public void method9502() {
System.out.print("hello: method9502");
}
public void method9503() {
System.out.print("hello: method9503");
}
public void method9504() {
System.out.print("hello: method9504");
}
public void method9505() {
System.out.print("hello: method9505");
}
public void method9506() {
System.out.print("hello: method9506");
}
public void method9507() {
System.out.print("hello: method9507");
}
public void method9508() {
System.out.print("hello: method9508");
}
public void method9509() {
System.out.print("hello: method9509");
}
public void method9510() {
System.out.print("hello: method9510");
}
public void method9511() {
System.out.print("hello: method9511");
}
public void method9512() {
System.out.print("hello: method9512");
}
public void method9513() {
System.out.print("hello: method9513");
}
public void method9514() {
System.out.print("hello: method9514");
}
public void method9515() {
System.out.print("hello: method9515");
}
public void method9516() {
System.out.print("hello: method9516");
}
public void method9517() {
System.out.print("hello: method9517");
}
public void method9518() {
System.out.print("hello: method9518");
}
public void method9519() {
System.out.print("hello: method9519");
}
public void method9520() {
System.out.print("hello: method9520");
}
public void method9521() {
System.out.print("hello: method9521");
}
public void method9522() {
System.out.print("hello: method9522");
}
public void method9523() {
System.out.print("hello: method9523");
}
public void method9524() {
System.out.print("hello: method9524");
}
public void method9525() {
System.out.print("hello: method9525");
}
public void method9526() {
System.out.print("hello: method9526");
}
public void method9527() {
System.out.print("hello: method9527");
}
public void method9528() {
System.out.print("hello: method9528");
}
public void method9529() {
System.out.print("hello: method9529");
}
public void method9530() {
System.out.print("hello: method9530");
}
public void method9531() {
System.out.print("hello: method9531");
}
public void method9532() {
System.out.print("hello: method9532");
}
public void method9533() {
System.out.print("hello: method9533");
}
public void method9534() {
System.out.print("hello: method9534");
}
public void method9535() {
System.out.print("hello: method9535");
}
public void method9536() {
System.out.print("hello: method9536");
}
public void method9537() {
System.out.print("hello: method9537");
}
public void method9538() {
System.out.print("hello: method9538");
}
public void method9539() {
System.out.print("hello: method9539");
}
public void method9540() {
System.out.print("hello: method9540");
}
public void method9541() {
System.out.print("hello: method9541");
}
public void method9542() {
System.out.print("hello: method9542");
}
public void method9543() {
System.out.print("hello: method9543");
}
public void method9544() {
System.out.print("hello: method9544");
}
public void method9545() {
System.out.print("hello: method9545");
}
public void method9546() {
System.out.print("hello: method9546");
}
public void method9547() {
System.out.print("hello: method9547");
}
public void method9548() {
System.out.print("hello: method9548");
}
public void method9549() {
System.out.print("hello: method9549");
}
public void method9550() {
System.out.print("hello: method9550");
}
public void method9551() {
System.out.print("hello: method9551");
}
public void method9552() {
System.out.print("hello: method9552");
}
public void method9553() {
System.out.print("hello: method9553");
}
public void method9554() {
System.out.print("hello: method9554");
}
public void method9555() {
System.out.print("hello: method9555");
}
public void method9556() {
System.out.print("hello: method9556");
}
public void method9557() {
System.out.print("hello: method9557");
}
public void method9558() {
System.out.print("hello: method9558");
}
public void method9559() {
System.out.print("hello: method9559");
}
public void method9560() {
System.out.print("hello: method9560");
}
public void method9561() {
System.out.print("hello: method9561");
}
public void method9562() {
System.out.print("hello: method9562");
}
public void method9563() {
System.out.print("hello: method9563");
}
public void method9564() {
System.out.print("hello: method9564");
}
public void method9565() {
System.out.print("hello: method9565");
}
public void method9566() {
System.out.print("hello: method9566");
}
public void method9567() {
System.out.print("hello: method9567");
}
public void method9568() {
System.out.print("hello: method9568");
}
public void method9569() {
System.out.print("hello: method9569");
}
public void method9570() {
System.out.print("hello: method9570");
}
public void method9571() {
System.out.print("hello: method9571");
}
public void method9572() {
System.out.print("hello: method9572");
}
public void method9573() {
System.out.print("hello: method9573");
}
public void method9574() {
System.out.print("hello: method9574");
}
public void method9575() {
System.out.print("hello: method9575");
}
public void method9576() {
System.out.print("hello: method9576");
}
public void method9577() {
System.out.print("hello: method9577");
}
public void method9578() {
System.out.print("hello: method9578");
}
public void method9579() {
System.out.print("hello: method9579");
}
public void method9580() {
System.out.print("hello: method9580");
}
public void method9581() {
System.out.print("hello: method9581");
}
public void method9582() {
System.out.print("hello: method9582");
}
public void method9583() {
System.out.print("hello: method9583");
}
public void method9584() {
System.out.print("hello: method9584");
}
public void method9585() {
System.out.print("hello: method9585");
}
public void method9586() {
System.out.print("hello: method9586");
}
public void method9587() {
System.out.print("hello: method9587");
}
public void method9588() {
System.out.print("hello: method9588");
}
public void method9589() {
System.out.print("hello: method9589");
}
public void method9590() {
System.out.print("hello: method9590");
}
public void method9591() {
System.out.print("hello: method9591");
}
public void method9592() {
System.out.print("hello: method9592");
}
public void method9593() {
System.out.print("hello: method9593");
}
public void method9594() {
System.out.print("hello: method9594");
}
public void method9595() {
System.out.print("hello: method9595");
}
public void method9596() {
System.out.print("hello: method9596");
}
public void method9597() {
System.out.print("hello: method9597");
}
public void method9598() {
System.out.print("hello: method9598");
}
public void method9599() {
System.out.print("hello: method9599");
}
public void method9600() {
System.out.print("hello: method9600");
}
public void method9601() {
System.out.print("hello: method9601");
}
public void method9602() {
System.out.print("hello: method9602");
}
public void method9603() {
System.out.print("hello: method9603");
}
public void method9604() {
System.out.print("hello: method9604");
}
public void method9605() {
System.out.print("hello: method9605");
}
public void method9606() {
System.out.print("hello: method9606");
}
public void method9607() {
System.out.print("hello: method9607");
}
public void method9608() {
System.out.print("hello: method9608");
}
public void method9609() {
System.out.print("hello: method9609");
}
public void method9610() {
System.out.print("hello: method9610");
}
public void method9611() {
System.out.print("hello: method9611");
}
public void method9612() {
System.out.print("hello: method9612");
}
public void method9613() {
System.out.print("hello: method9613");
}
public void method9614() {
System.out.print("hello: method9614");
}
public void method9615() {
System.out.print("hello: method9615");
}
public void method9616() {
System.out.print("hello: method9616");
}
public void method9617() {
System.out.print("hello: method9617");
}
public void method9618() {
System.out.print("hello: method9618");
}
public void method9619() {
System.out.print("hello: method9619");
}
public void method9620() {
System.out.print("hello: method9620");
}
public void method9621() {
System.out.print("hello: method9621");
}
public void method9622() {
System.out.print("hello: method9622");
}
public void method9623() {
System.out.print("hello: method9623");
}
public void method9624() {
System.out.print("hello: method9624");
}
public void method9625() {
System.out.print("hello: method9625");
}
public void method9626() {
System.out.print("hello: method9626");
}
public void method9627() {
System.out.print("hello: method9627");
}
public void method9628() {
System.out.print("hello: method9628");
}
public void method9629() {
System.out.print("hello: method9629");
}
public void method9630() {
System.out.print("hello: method9630");
}
public void method9631() {
System.out.print("hello: method9631");
}
public void method9632() {
System.out.print("hello: method9632");
}
public void method9633() {
System.out.print("hello: method9633");
}
public void method9634() {
System.out.print("hello: method9634");
}
public void method9635() {
System.out.print("hello: method9635");
}
public void method9636() {
System.out.print("hello: method9636");
}
public void method9637() {
System.out.print("hello: method9637");
}
public void method9638() {
System.out.print("hello: method9638");
}
public void method9639() {
System.out.print("hello: method9639");
}
public void method9640() {
System.out.print("hello: method9640");
}
public void method9641() {
System.out.print("hello: method9641");
}
public void method9642() {
System.out.print("hello: method9642");
}
public void method9643() {
System.out.print("hello: method9643");
}
public void method9644() {
System.out.print("hello: method9644");
}
public void method9645() {
System.out.print("hello: method9645");
}
public void method9646() {
System.out.print("hello: method9646");
}
public void method9647() {
System.out.print("hello: method9647");
}
public void method9648() {
System.out.print("hello: method9648");
}
public void method9649() {
System.out.print("hello: method9649");
}
public void method9650() {
System.out.print("hello: method9650");
}
public void method9651() {
System.out.print("hello: method9651");
}
public void method9652() {
System.out.print("hello: method9652");
}
public void method9653() {
System.out.print("hello: method9653");
}
public void method9654() {
System.out.print("hello: method9654");
}
public void method9655() {
System.out.print("hello: method9655");
}
public void method9656() {
System.out.print("hello: method9656");
}
public void method9657() {
System.out.print("hello: method9657");
}
public void method9658() {
System.out.print("hello: method9658");
}
public void method9659() {
System.out.print("hello: method9659");
}
public void method9660() {
System.out.print("hello: method9660");
}
public void method9661() {
System.out.print("hello: method9661");
}
public void method9662() {
System.out.print("hello: method9662");
}
public void method9663() {
System.out.print("hello: method9663");
}
public void method9664() {
System.out.print("hello: method9664");
}
public void method9665() {
System.out.print("hello: method9665");
}
public void method9666() {
System.out.print("hello: method9666");
}
public void method9667() {
System.out.print("hello: method9667");
}
public void method9668() {
System.out.print("hello: method9668");
}
public void method9669() {
System.out.print("hello: method9669");
}
public void method9670() {
System.out.print("hello: method9670");
}
public void method9671() {
System.out.print("hello: method9671");
}
public void method9672() {
System.out.print("hello: method9672");
}
public void method9673() {
System.out.print("hello: method9673");
}
public void method9674() {
System.out.print("hello: method9674");
}
public void method9675() {
System.out.print("hello: method9675");
}
public void method9676() {
System.out.print("hello: method9676");
}
public void method9677() {
System.out.print("hello: method9677");
}
public void method9678() {
System.out.print("hello: method9678");
}
public void method9679() {
System.out.print("hello: method9679");
}
public void method9680() {
System.out.print("hello: method9680");
}
public void method9681() {
System.out.print("hello: method9681");
}
public void method9682() {
System.out.print("hello: method9682");
}
public void method9683() {
System.out.print("hello: method9683");
}
public void method9684() {
System.out.print("hello: method9684");
}
public void method9685() {
System.out.print("hello: method9685");
}
public void method9686() {
System.out.print("hello: method9686");
}
public void method9687() {
System.out.print("hello: method9687");
}
public void method9688() {
System.out.print("hello: method9688");
}
public void method9689() {
System.out.print("hello: method9689");
}
public void method9690() {
System.out.print("hello: method9690");
}
public void method9691() {
System.out.print("hello: method9691");
}
public void method9692() {
System.out.print("hello: method9692");
}
public void method9693() {
System.out.print("hello: method9693");
}
public void method9694() {
System.out.print("hello: method9694");
}
public void method9695() {
System.out.print("hello: method9695");
}
public void method9696() {
System.out.print("hello: method9696");
}
public void method9697() {
System.out.print("hello: method9697");
}
public void method9698() {
System.out.print("hello: method9698");
}
public void method9699() {
System.out.print("hello: method9699");
}
public void method9700() {
System.out.print("hello: method9700");
}
public void method9701() {
System.out.print("hello: method9701");
}
public void method9702() {
System.out.print("hello: method9702");
}
public void method9703() {
System.out.print("hello: method9703");
}
public void method9704() {
System.out.print("hello: method9704");
}
public void method9705() {
System.out.print("hello: method9705");
}
public void method9706() {
System.out.print("hello: method9706");
}
public void method9707() {
System.out.print("hello: method9707");
}
public void method9708() {
System.out.print("hello: method9708");
}
public void method9709() {
System.out.print("hello: method9709");
}
public void method9710() {
System.out.print("hello: method9710");
}
public void method9711() {
System.out.print("hello: method9711");
}
public void method9712() {
System.out.print("hello: method9712");
}
public void method9713() {
System.out.print("hello: method9713");
}
public void method9714() {
System.out.print("hello: method9714");
}
public void method9715() {
System.out.print("hello: method9715");
}
public void method9716() {
System.out.print("hello: method9716");
}
public void method9717() {
System.out.print("hello: method9717");
}
public void method9718() {
System.out.print("hello: method9718");
}
public void method9719() {
System.out.print("hello: method9719");
}
public void method9720() {
System.out.print("hello: method9720");
}
public void method9721() {
System.out.print("hello: method9721");
}
public void method9722() {
System.out.print("hello: method9722");
}
public void method9723() {
System.out.print("hello: method9723");
}
public void method9724() {
System.out.print("hello: method9724");
}
public void method9725() {
System.out.print("hello: method9725");
}
public void method9726() {
System.out.print("hello: method9726");
}
public void method9727() {
System.out.print("hello: method9727");
}
public void method9728() {
System.out.print("hello: method9728");
}
public void method9729() {
System.out.print("hello: method9729");
}
public void method9730() {
System.out.print("hello: method9730");
}
public void method9731() {
System.out.print("hello: method9731");
}
public void method9732() {
System.out.print("hello: method9732");
}
public void method9733() {
System.out.print("hello: method9733");
}
public void method9734() {
System.out.print("hello: method9734");
}
public void method9735() {
System.out.print("hello: method9735");
}
public void method9736() {
System.out.print("hello: method9736");
}
public void method9737() {
System.out.print("hello: method9737");
}
public void method9738() {
System.out.print("hello: method9738");
}
public void method9739() {
System.out.print("hello: method9739");
}
public void method9740() {
System.out.print("hello: method9740");
}
public void method9741() {
System.out.print("hello: method9741");
}
public void method9742() {
System.out.print("hello: method9742");
}
public void method9743() {
System.out.print("hello: method9743");
}
public void method9744() {
System.out.print("hello: method9744");
}
public void method9745() {
System.out.print("hello: method9745");
}
public void method9746() {
System.out.print("hello: method9746");
}
public void method9747() {
System.out.print("hello: method9747");
}
public void method9748() {
System.out.print("hello: method9748");
}
public void method9749() {
System.out.print("hello: method9749");
}
public void method9750() {
System.out.print("hello: method9750");
}
public void method9751() {
System.out.print("hello: method9751");
}
public void method9752() {
System.out.print("hello: method9752");
}
public void method9753() {
System.out.print("hello: method9753");
}
public void method9754() {
System.out.print("hello: method9754");
}
public void method9755() {
System.out.print("hello: method9755");
}
public void method9756() {
System.out.print("hello: method9756");
}
public void method9757() {
System.out.print("hello: method9757");
}
public void method9758() {
System.out.print("hello: method9758");
}
public void method9759() {
System.out.print("hello: method9759");
}
public void method9760() {
System.out.print("hello: method9760");
}
public void method9761() {
System.out.print("hello: method9761");
}
public void method9762() {
System.out.print("hello: method9762");
}
public void method9763() {
System.out.print("hello: method9763");
}
public void method9764() {
System.out.print("hello: method9764");
}
public void method9765() {
System.out.print("hello: method9765");
}
public void method9766() {
System.out.print("hello: method9766");
}
public void method9767() {
System.out.print("hello: method9767");
}
public void method9768() {
System.out.print("hello: method9768");
}
public void method9769() {
System.out.print("hello: method9769");
}
public void method9770() {
System.out.print("hello: method9770");
}
public void method9771() {
System.out.print("hello: method9771");
}
public void method9772() {
System.out.print("hello: method9772");
}
public void method9773() {
System.out.print("hello: method9773");
}
public void method9774() {
System.out.print("hello: method9774");
}
public void method9775() {
System.out.print("hello: method9775");
}
public void method9776() {
System.out.print("hello: method9776");
}
public void method9777() {
System.out.print("hello: method9777");
}
public void method9778() {
System.out.print("hello: method9778");
}
public void method9779() {
System.out.print("hello: method9779");
}
public void method9780() {
System.out.print("hello: method9780");
}
public void method9781() {
System.out.print("hello: method9781");
}
public void method9782() {
System.out.print("hello: method9782");
}
public void method9783() {
System.out.print("hello: method9783");
}
public void method9784() {
System.out.print("hello: method9784");
}
public void method9785() {
System.out.print("hello: method9785");
}
public void method9786() {
System.out.print("hello: method9786");
}
public void method9787() {
System.out.print("hello: method9787");
}
public void method9788() {
System.out.print("hello: method9788");
}
public void method9789() {
System.out.print("hello: method9789");
}
public void method9790() {
System.out.print("hello: method9790");
}
public void method9791() {
System.out.print("hello: method9791");
}
public void method9792() {
System.out.print("hello: method9792");
}
public void method9793() {
System.out.print("hello: method9793");
}
public void method9794() {
System.out.print("hello: method9794");
}
public void method9795() {
System.out.print("hello: method9795");
}
public void method9796() {
System.out.print("hello: method9796");
}
public void method9797() {
System.out.print("hello: method9797");
}
public void method9798() {
System.out.print("hello: method9798");
}
public void method9799() {
System.out.print("hello: method9799");
}
public void method9800() {
System.out.print("hello: method9800");
}
public void method9801() {
System.out.print("hello: method9801");
}
public void method9802() {
System.out.print("hello: method9802");
}
public void method9803() {
System.out.print("hello: method9803");
}
public void method9804() {
System.out.print("hello: method9804");
}
public void method9805() {
System.out.print("hello: method9805");
}
public void method9806() {
System.out.print("hello: method9806");
}
public void method9807() {
System.out.print("hello: method9807");
}
public void method9808() {
System.out.print("hello: method9808");
}
public void method9809() {
System.out.print("hello: method9809");
}
public void method9810() {
System.out.print("hello: method9810");
}
public void method9811() {
System.out.print("hello: method9811");
}
public void method9812() {
System.out.print("hello: method9812");
}
public void method9813() {
System.out.print("hello: method9813");
}
public void method9814() {
System.out.print("hello: method9814");
}
public void method9815() {
System.out.print("hello: method9815");
}
public void method9816() {
System.out.print("hello: method9816");
}
public void method9817() {
System.out.print("hello: method9817");
}
public void method9818() {
System.out.print("hello: method9818");
}
public void method9819() {
System.out.print("hello: method9819");
}
public void method9820() {
System.out.print("hello: method9820");
}
public void method9821() {
System.out.print("hello: method9821");
}
public void method9822() {
System.out.print("hello: method9822");
}
public void method9823() {
System.out.print("hello: method9823");
}
public void method9824() {
System.out.print("hello: method9824");
}
public void method9825() {
System.out.print("hello: method9825");
}
public void method9826() {
System.out.print("hello: method9826");
}
public void method9827() {
System.out.print("hello: method9827");
}
public void method9828() {
System.out.print("hello: method9828");
}
public void method9829() {
System.out.print("hello: method9829");
}
public void method9830() {
System.out.print("hello: method9830");
}
public void method9831() {
System.out.print("hello: method9831");
}
public void method9832() {
System.out.print("hello: method9832");
}
public void method9833() {
System.out.print("hello: method9833");
}
public void method9834() {
System.out.print("hello: method9834");
}
public void method9835() {
System.out.print("hello: method9835");
}
public void method9836() {
System.out.print("hello: method9836");
}
public void method9837() {
System.out.print("hello: method9837");
}
public void method9838() {
System.out.print("hello: method9838");
}
public void method9839() {
System.out.print("hello: method9839");
}
public void method9840() {
System.out.print("hello: method9840");
}
public void method9841() {
System.out.print("hello: method9841");
}
public void method9842() {
System.out.print("hello: method9842");
}
public void method9843() {
System.out.print("hello: method9843");
}
public void method9844() {
System.out.print("hello: method9844");
}
public void method9845() {
System.out.print("hello: method9845");
}
public void method9846() {
System.out.print("hello: method9846");
}
public void method9847() {
System.out.print("hello: method9847");
}
public void method9848() {
System.out.print("hello: method9848");
}
public void method9849() {
System.out.print("hello: method9849");
}
public void method9850() {
System.out.print("hello: method9850");
}
public void method9851() {
System.out.print("hello: method9851");
}
public void method9852() {
System.out.print("hello: method9852");
}
public void method9853() {
System.out.print("hello: method9853");
}
public void method9854() {
System.out.print("hello: method9854");
}
public void method9855() {
System.out.print("hello: method9855");
}
public void method9856() {
System.out.print("hello: method9856");
}
public void method9857() {
System.out.print("hello: method9857");
}
public void method9858() {
System.out.print("hello: method9858");
}
public void method9859() {
System.out.print("hello: method9859");
}
public void method9860() {
System.out.print("hello: method9860");
}
public void method9861() {
System.out.print("hello: method9861");
}
public void method9862() {
System.out.print("hello: method9862");
}
public void method9863() {
System.out.print("hello: method9863");
}
public void method9864() {
System.out.print("hello: method9864");
}
public void method9865() {
System.out.print("hello: method9865");
}
public void method9866() {
System.out.print("hello: method9866");
}
public void method9867() {
System.out.print("hello: method9867");
}
public void method9868() {
System.out.print("hello: method9868");
}
public void method9869() {
System.out.print("hello: method9869");
}
public void method9870() {
System.out.print("hello: method9870");
}
public void method9871() {
System.out.print("hello: method9871");
}
public void method9872() {
System.out.print("hello: method9872");
}
public void method9873() {
System.out.print("hello: method9873");
}
public void method9874() {
System.out.print("hello: method9874");
}
public void method9875() {
System.out.print("hello: method9875");
}
public void method9876() {
System.out.print("hello: method9876");
}
public void method9877() {
System.out.print("hello: method9877");
}
public void method9878() {
System.out.print("hello: method9878");
}
public void method9879() {
System.out.print("hello: method9879");
}
public void method9880() {
System.out.print("hello: method9880");
}
public void method9881() {
System.out.print("hello: method9881");
}
public void method9882() {
System.out.print("hello: method9882");
}
public void method9883() {
System.out.print("hello: method9883");
}
public void method9884() {
System.out.print("hello: method9884");
}
public void method9885() {
System.out.print("hello: method9885");
}
public void method9886() {
System.out.print("hello: method9886");
}
public void method9887() {
System.out.print("hello: method9887");
}
public void method9888() {
System.out.print("hello: method9888");
}
public void method9889() {
System.out.print("hello: method9889");
}
public void method9890() {
System.out.print("hello: method9890");
}
public void method9891() {
System.out.print("hello: method9891");
}
public void method9892() {
System.out.print("hello: method9892");
}
public void method9893() {
System.out.print("hello: method9893");
}
public void method9894() {
System.out.print("hello: method9894");
}
public void method9895() {
System.out.print("hello: method9895");
}
public void method9896() {
System.out.print("hello: method9896");
}
public void method9897() {
System.out.print("hello: method9897");
}
public void method9898() {
System.out.print("hello: method9898");
}
public void method9899() {
System.out.print("hello: method9899");
}
public void method9900() {
System.out.print("hello: method9900");
}
public void method9901() {
System.out.print("hello: method9901");
}
public void method9902() {
System.out.print("hello: method9902");
}
public void method9903() {
System.out.print("hello: method9903");
}
public void method9904() {
System.out.print("hello: method9904");
}
public void method9905() {
System.out.print("hello: method9905");
}
public void method9906() {
System.out.print("hello: method9906");
}
public void method9907() {
System.out.print("hello: method9907");
}
public void method9908() {
System.out.print("hello: method9908");
}
public void method9909() {
System.out.print("hello: method9909");
}
public void method9910() {
System.out.print("hello: method9910");
}
public void method9911() {
System.out.print("hello: method9911");
}
public void method9912() {
System.out.print("hello: method9912");
}
public void method9913() {
System.out.print("hello: method9913");
}
public void method9914() {
System.out.print("hello: method9914");
}
public void method9915() {
System.out.print("hello: method9915");
}
public void method9916() {
System.out.print("hello: method9916");
}
public void method9917() {
System.out.print("hello: method9917");
}
public void method9918() {
System.out.print("hello: method9918");
}
public void method9919() {
System.out.print("hello: method9919");
}
public void method9920() {
System.out.print("hello: method9920");
}
public void method9921() {
System.out.print("hello: method9921");
}
public void method9922() {
System.out.print("hello: method9922");
}
public void method9923() {
System.out.print("hello: method9923");
}
public void method9924() {
System.out.print("hello: method9924");
}
public void method9925() {
System.out.print("hello: method9925");
}
public void method9926() {
System.out.print("hello: method9926");
}
public void method9927() {
System.out.print("hello: method9927");
}
public void method9928() {
System.out.print("hello: method9928");
}
public void method9929() {
System.out.print("hello: method9929");
}
public void method9930() {
System.out.print("hello: method9930");
}
public void method9931() {
System.out.print("hello: method9931");
}
public void method9932() {
System.out.print("hello: method9932");
}
public void method9933() {
System.out.print("hello: method9933");
}
public void method9934() {
System.out.print("hello: method9934");
}
public void method9935() {
System.out.print("hello: method9935");
}
public void method9936() {
System.out.print("hello: method9936");
}
public void method9937() {
System.out.print("hello: method9937");
}
public void method9938() {
System.out.print("hello: method9938");
}
public void method9939() {
System.out.print("hello: method9939");
}
public void method9940() {
System.out.print("hello: method9940");
}
public void method9941() {
System.out.print("hello: method9941");
}
public void method9942() {
System.out.print("hello: method9942");
}
public void method9943() {
System.out.print("hello: method9943");
}
public void method9944() {
System.out.print("hello: method9944");
}
public void method9945() {
System.out.print("hello: method9945");
}
public void method9946() {
System.out.print("hello: method9946");
}
public void method9947() {
System.out.print("hello: method9947");
}
public void method9948() {
System.out.print("hello: method9948");
}
public void method9949() {
System.out.print("hello: method9949");
}
public void method9950() {
System.out.print("hello: method9950");
}
public void method9951() {
System.out.print("hello: method9951");
}
public void method9952() {
System.out.print("hello: method9952");
}
public void method9953() {
System.out.print("hello: method9953");
}
public void method9954() {
System.out.print("hello: method9954");
}
public void method9955() {
System.out.print("hello: method9955");
}
public void method9956() {
System.out.print("hello: method9956");
}
public void method9957() {
System.out.print("hello: method9957");
}
public void method9958() {
System.out.print("hello: method9958");
}
public void method9959() {
System.out.print("hello: method9959");
}
public void method9960() {
System.out.print("hello: method9960");
}
public void method9961() {
System.out.print("hello: method9961");
}
public void method9962() {
System.out.print("hello: method9962");
}
public void method9963() {
System.out.print("hello: method9963");
}
public void method9964() {
System.out.print("hello: method9964");
}
public void method9965() {
System.out.print("hello: method9965");
}
public void method9966() {
System.out.print("hello: method9966");
}
public void method9967() {
System.out.print("hello: method9967");
}
public void method9968() {
System.out.print("hello: method9968");
}
public void method9969() {
System.out.print("hello: method9969");
}
public void method9970() {
System.out.print("hello: method9970");
}
public void method9971() {
System.out.print("hello: method9971");
}
public void method9972() {
System.out.print("hello: method9972");
}
public void method9973() {
System.out.print("hello: method9973");
}
public void method9974() {
System.out.print("hello: method9974");
}
public void method9975() {
System.out.print("hello: method9975");
}
public void method9976() {
System.out.print("hello: method9976");
}
public void method9977() {
System.out.print("hello: method9977");
}
public void method9978() {
System.out.print("hello: method9978");
}
public void method9979() {
System.out.print("hello: method9979");
}
public void method9980() {
System.out.print("hello: method9980");
}
public void method9981() {
System.out.print("hello: method9981");
}
public void method9982() {
System.out.print("hello: method9982");
}
public void method9983() {
System.out.print("hello: method9983");
}
public void method9984() {
System.out.print("hello: method9984");
}
public void method9985() {
System.out.print("hello: method9985");
}
public void method9986() {
System.out.print("hello: method9986");
}
public void method9987() {
System.out.print("hello: method9987");
}
public void method9988() {
System.out.print("hello: method9988");
}
public void method9989() {
System.out.print("hello: method9989");
}
public void method9990() {
System.out.print("hello: method9990");
}
public void method9991() {
System.out.print("hello: method9991");
}
public void method9992() {
System.out.print("hello: method9992");
}
public void method9993() {
System.out.print("hello: method9993");
}
public void method9994() {
System.out.print("hello: method9994");
}
public void method9995() {
System.out.print("hello: method9995");
}
public void method9996() {
System.out.print("hello: method9996");
}
public void method9997() {
System.out.print("hello: method9997");
}
public void method9998() {
System.out.print("hello: method9998");
}
public void method9999() {
System.out.print("hello: method9999");
}
}
| [
"yongce.tu@gmail.com"
] | yongce.tu@gmail.com |
d2e9c7323bdb87968d78b8eb1ab89f81ea176eec | 632265111201a8a679af8db058aa2ccdcf1eff58 | /src/main/java/org/ajisun/coding/concurrency/lock/juc/executor/Demo2.java | ac7464e51ac8cbf0244fe4a9ae24d42adbc0004f | [] | no_license | AJiSun/ajisun-concurrency | 9e0ebc476ae0a25dd1c6655150c975cb4310c038 | 335bb4f007bfedd106b3983fb895c6e26a013fdc | refs/heads/main | 2023-05-02T18:13:04.923804 | 2021-05-14T07:47:50 | 2021-05-14T07:47:50 | 367,286,470 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,398 | java | package org.ajisun.coding.concurrency.lock.juc.executor;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
/**
* scheduleAtFixedRate 固定频率执行任务
*
* @Copyright (c) 2020. Ajisun. All right reserved.
* @ProjectName: concurrency
* @PackageName: org.sun.concurrency.lock.juc.executor
* @Date: 2020/8/27
* @author: ajisun
* @Email: Ajisun
*/
public class Demo2 {
public static void main(String[] args) {
System.out.println(System.currentTimeMillis());
AtomicInteger count = new AtomicInteger(1);
ScheduledExecutorService executorService = new ScheduledThreadPoolExecutor(10);
executorService.scheduleAtFixedRate(()->{
int currCount = count.getAndIncrement();
System.out.println(Thread.currentThread().getName());
System.out.println(System.currentTimeMillis() + "第" + currCount + "次" + "开始执行");
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(System.currentTimeMillis() + "第" + currCount + "次" + "执行结束");
},1,2, TimeUnit.SECONDS);
// executorService.shutdown();
}
}
| [
"jiguang.sun@hand-china.com"
] | jiguang.sun@hand-china.com |
e28cb35ed04095cb1ecc3d28e00ba3ec1e514357 | 7f1c84c37d57d1d8ff550997a1f8b3cdb3e5ef01 | /overriding/src/overriding/OgrenciKrediManager.java | decc668ac4d5d6af7ce6862b86e06ca07f9d4291 | [] | no_license | bigidirmik/javaDemos | 89d2250ace9ead06d215bdf26e0d5b3e0e09bf73 | 628444d4e23a72dc64a3f79a5de002852358b0c1 | refs/heads/master | 2023-04-22T07:35:07.684695 | 2021-05-05T14:44:21 | 2021-05-05T14:44:21 | 363,451,729 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 166 | java | package overriding;
public class OgrenciKrediManager extends OgretmenKrediManager {
@Override
public double hesapla(double tutar) {
return tutar * 1.10;
}
}
| [
"bigisivri@outlook.com"
] | bigisivri@outlook.com |
f63486d2e3df2c83f54e85c62b02ca0e7941c3e0 | a49a4c2fefec2f0761e1d1a6afb2579a6e8b2248 | /src/main/java/es/miyoda/mvn/templated/TemplatedMojo.java | d4d02bb2d88c4075c4d7d0f5d9f9b916c6c562be | [] | no_license | miyoda/templated-mvn | 947213455fdc60c60c03e30e706475b0a6e7e688 | d73028625cc3c0cbe2926e67b673fc9f9a079d19 | refs/heads/master | 2021-08-28T08:59:15.195135 | 2017-12-11T19:23:54 | 2017-12-11T19:23:54 | 113,100,919 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,839 | java | package es.miyoda.mvn.templated;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.codehaus.plexus.util.FileUtils;
@Mojo( name = "templated")
public class TemplatedMojo extends AbstractMojo {
@Parameter
private String[] sources;
public void execute() throws MojoExecutionException {
getLog().info( "Running templated" );
for (String source : sources) {
try {
runTemplated(source, "./");
} catch (IOException e) {
getLog().error(e);
throw new MojoExecutionException(e, "Error executing templated of "+source, e.getMessage());
}
}
}
private void runTemplated(String moveFrom, String moveTo) throws IOException {
String[] files = new File(moveFrom).list();
for (String file : files) {
String fromPath = new File(moveFrom, file).getAbsolutePath();
String toPath = new File(moveTo, file).getAbsolutePath();
runTemplatedFile(fromPath, toPath);
}
}
public void runTemplatedFile (String fromPath, String toPath) throws IOException {
if (!isIgnored(fromPath)) {
if (new File(fromPath).isFile()) {
if (fromPath.endsWith(".part")) {
getLog().info(".part "+ fromPath + " " + toPath);
int divisor = fromPath.indexOf("|");
String tag = fromPath.substring(divisor + 1, fromPath.length() - ".part".length());
runTemplatedPart(fromPath, toPath.substring(0, toPath.lastIndexOf("|")), tag);
} else {
getLog().info("link " + fromPath + " " + toPath);
try {
Files.delete(Paths.get(toPath));
} catch (Exception e) {
// unnecesary
}
Files.createLink(Paths.get(toPath), Paths.get(fromPath));
}
} else {
try {
new File(toPath).mkdir();
} catch (Exception e) {
// unnecesary
}
runTemplated(fromPath, toPath);
}
}
}
public void runTemplatedPart (String fromPath, String toPath, String tag) throws IOException {
// const fileExt = fromPath.substring(fromPath.lastIndexOf(".")+1)
// TODO diferent by fileExt
replacePart(fromPath, toPath, "<!-- start|" + tag + " -->", "<!-- end|" + tag + " -->", tag);
}
public void replacePart (String fromPath, String toPath, String startTag, String endTag, String tagName) throws IOException {
String fromData = FileUtils.fileRead(fromPath);
String toData = FileUtils.fileRead(toPath);
int startIndex = toData.indexOf(startTag) + startTag.length();
int endIndex = toData.indexOf(endTag, startIndex);
String toDataResult = null;
if (startIndex != -1 && endIndex != -1) {
toDataResult = toData.substring(0, startIndex) + fromData + toData.substring(endIndex);
} else if ("start".equals(tagName)) {
toDataResult = startTag + fromData + endTag + toData;
} else if ("end".equals(tagName)) {
toDataResult = toData + startTag + fromData + endTag;
} else {
getLog().error("tag '" + tagName + "' not found on file " + toPath);
}
if (toDataResult != null) {
FileUtils.fileWrite(toPath, toDataResult);
}
}
public boolean isIgnored (String filePath) {
return filePath.endsWith(".git");
}
} | [
"mahernandez@autentia.com"
] | mahernandez@autentia.com |
f38eb21d659f3450227271733545a06b056e8a74 | 42ddfa9aa2a719e6c593dc3b9d47e1472b0e5671 | /ws/src/test/java/info/jallaix/message/dao/EntityMessageDaoTest.java | f7637b0dc031556ba3da4e29bb52339dcdca8aea | [] | no_license | jallaix/i18n | 665c8c24a624f73cb2158b6f37564b6e3ee87c95 | cf739fb21d7fcaf4ba2dffae8dfd968f48596cf7 | refs/heads/master | 2020-12-24T07:29:40.424108 | 2017-05-18T21:52:49 | 2017-05-18T21:52:49 | 58,055,956 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,533 | java | package info.jallaix.message.dao;
import info.jallaix.message.bean.EntityMessage;
import info.jallaix.message.bean.EntityMessageTestFixture;
import info.jallaix.message.config.TestDomainDaoConfiguration;
import info.jallaix.spring.data.es.test.fixture.ElasticsearchTestFixture;
import info.jallaix.spring.data.es.test.testcase.BaseDaoElasticsearchTestCase;
import org.junit.ClassRule;
import org.junit.Rule;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.context.annotation.Import;
import org.springframework.data.elasticsearch.repository.config.EnableElasticsearchRepositories;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.rules.SpringClassRule;
import org.springframework.test.context.junit4.rules.SpringMethodRule;
/**
* <p>The Entity Message DAO must verify some tests provided by {@link BaseDaoElasticsearchTestCase}.</p>
*/
@Configuration
@Import(TestDomainDaoConfiguration.class)
@EnableElasticsearchRepositories(basePackageClasses = DomainDao.class)
@EnableAspectJAutoProxy
@ContextConfiguration(classes = EntityMessageDaoTest.class)
public class EntityMessageDaoTest extends BaseDaoElasticsearchTestCase<EntityMessage, String, EntityMessageDao> {
/**
* Spring class rule
*/
@ClassRule
public static final SpringClassRule SPRING_CLASS_RULE = new SpringClassRule();
/**
* Spring method rule
*/
@Rule
public final SpringMethodRule SPRING_METHOD_RULE = new SpringMethodRule();
/*----------------------------------------------------------------------------------------------------------------*/
/* Tests lifecycle */
/*----------------------------------------------------------------------------------------------------------------*/
/**
* Constructor defining some basic tests
*/
public EntityMessageDaoTest() {
super();/*
DaoTestedMethod.Exist.class,
DaoTestedMethod.Count.class,
DaoTestedMethod.DeleteAll.class,
DaoTestedMethod.DeleteAllById.class,
DaoTestedMethod.Delete.class,
DaoTestedMethod.DeleteById.class);*/
}
/*----------------------------------------------------------------------------------------------------------------*/
/* Test fixture */
/*----------------------------------------------------------------------------------------------------------------*/
@Override
protected ElasticsearchTestFixture<EntityMessage> getTestFixture() {
return new EntityMessageTestFixture();
}
/**
* Get the persistent document class
*
* @return The persistent document class
*/
@Override
protected Class<EntityMessage> getDocumentClass() {
return EntityMessage.class;
}
/*----------------------------------------------------------------------------------------------------------------*/
/* Custom tests */
/*----------------------------------------------------------------------------------------------------------------*/
// TODO Prepare tests for custom DAO functions
}
| [
"jallaix@yahoo.fr"
] | jallaix@yahoo.fr |
eb132233441c76129eb986288521512d6ed41622 | 0c1eddd1c85fd3213ab8ab9dead73b653cfa4617 | /feimang-client/feimang-client-monthread/src/main/java/com/feimang/client/monthread/pojo/UserQuestions.java | f686f7424097913ec535de5a2a151e2cf61a1646 | [] | no_license | yuxiang52199/feimang-shuang | 9fdfef653e928ae75c209a859e915e8bd7e09ddd | 5615f6bffcc823b704dc87de2f16f3dea4638546 | refs/heads/master | 2021-05-11T10:27:56.797167 | 2018-03-31T02:45:00 | 2018-03-31T02:45:00 | 118,102,765 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,076 | java | package com.feimang.client.monthread.pojo;
import java.util.Date;
public class UserQuestions {
private Integer uqid;
private Long userid;
private Integer suid;
private Date createdatetime;
public UserQuestions(Integer uqid, Long userid, Integer suid, Date createdatetime) {
this.uqid = uqid;
this.userid = userid;
this.suid = suid;
this.createdatetime = createdatetime;
}
public UserQuestions() {
super();
}
public Integer getUqid() {
return uqid;
}
public void setUqid(Integer uqid) {
this.uqid = uqid;
}
public Long getUserid() {
return userid;
}
public void setUserid(Long userid) {
this.userid = userid;
}
public Integer getSuid() {
return suid;
}
public void setSuid(Integer suid) {
this.suid = suid;
}
public Date getCreatedatetime() {
return createdatetime;
}
public void setCreatedatetime(Date createdatetime) {
this.createdatetime = createdatetime;
}
} | [
"308611512@qq.com"
] | 308611512@qq.com |
c2e3e7097223b0459d7111925dd168b2ecc8cdfd | 236a905fd8f1fc00e39129c4f513dfd04c8bd30a | /api/src/main/java/org/apache/any23/vocab/OGPBook.java | 9cf5083c105beea6f667e4661bab739216339020 | [
"Apache-2.0",
"BSD-3-Clause",
"MIT"
] | permissive | apache/any23 | 4a240eb45df2ded60d1a977dd67fe9c6f5383838 | 458219e5a396cedcc93b3debf4a6497ce424d167 | refs/heads/master | 2023-08-28T18:58:51.183598 | 2022-06-03T20:34:17 | 2022-06-03T20:34:17 | 4,544,260 | 85 | 64 | Apache-2.0 | 2023-06-20T01:00:34 | 2012-06-04T07:00:25 | HTML | UTF-8 | Java | false | false | 2,334 | 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.any23.vocab;
import org.eclipse.rdf4j.model.IRI;
/**
* The <a href="http://ogp.me/#type_book">Open Graph Protocol Book Type</a> vocabulary.
*/
public class OGPBook extends Vocabulary {
private OGPBook() {
super(NS);
}
public static final String NS = "http://ogp.me/ns/book#";
/* BEGIN: http://ogp.me/#type_book */
/** Who wrote this book. */
public static final String BOOK__AUTHOR = "book:author";
/** The ISBN */
public static final String BOOK__ISBN = "book:isbn";
/** The date the book was released. */
public static final String BOOK__RELEASE_DATE = "book:release_date";
/** Tag words associated with this book. */
public static final String BOOK__TAG = "book:tag";
/* END: http://ogp.me/#type_book */
private static OGPBook instance;
public static OGPBook getInstance() {
if (instance == null) {
instance = new OGPBook();
}
return instance;
}
public final IRI NAMESPACE = createIRI(NS);
public final IRI bookAuthor = createProperty(BOOK__AUTHOR);
public final IRI bookIsbn = createProperty(BOOK__ISBN);
public final IRI bookReleaseDate = createProperty(BOOK__RELEASE_DATE);
public final IRI bookTag = createProperty(BOOK__TAG);
@SuppressWarnings("unused")
private IRI createClass(String localName) {
return createClass(NS, localName);
}
private IRI createProperty(String localName) {
return createProperty(NS, localName);
}
}
| [
"lewis.mcgibbney@gmail.com"
] | lewis.mcgibbney@gmail.com |
60cba288065e2a6c4636f3fdc163b0320b9485c2 | b7a0564ef3cd28a66f00135fe45a4d50c87d6d84 | /CreateBean/src/qw4wer/DataSourseFactory.java | 2026ef3ba74091d3f27ed112d65b78cf5fa96962 | [] | no_license | qw4wer/codeBuild | 9630232b6dd511de0869ce14d0d4a0ed6b298b40 | 3013dfc7eb7c51204f39bb2ffdbcb8a61b0652ef | refs/heads/master | 2020-05-16T20:48:25.523868 | 2014-12-19T09:09:55 | 2014-12-19T09:09:55 | null | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 1,606 | java |
package qw4wer;
import java.sql.Connection;
import java.sql.SQLException;
import javax.sql.DataSource;
/**
* 通过实例化自己的DataSource获取连接
* @author <a href="mailto:wj@itcast.cn">王健</a>
* @version 1.0 2012-5-6
*/
public class DataSourseFactory {
private static DataSource dataSource;
private static ThreadLocal<Connection> thread = new ThreadLocal<Connection>();
static{
dataSource =
new DataSourseUtils("com.mysql.jdbc.Driver",
"jdbc:mysql://127.0.0.1:3306/?characterEncoding=UTF-8",
"root","soft",3);
}
/**
* 直接获取一个Connection
*/
public static Connection getConn(){
Connection con = null;
try {
con= dataSource.getConnection();
} catch (SQLException e) {
throw new RuntimeException(e.getMessage(),e);
}
return con;
}
/**
* 获取线程局部的Connection
*/
public static Connection getThreadConn(){
Connection con = thread.get();//先从线程中取数据
if(con==null){
con = getConn();
thread.set(con);
}
return con;
}
/**
* 可选的调用删除局部线程中的对象
*/
public static void remove(){
thread.remove();
}
/**
* 获取一个DataSource
*/
public static DataSource getDataSource(){
return dataSource;
}
} | [
"qw5wer@gmail.com"
] | qw5wer@gmail.com |
10806b09af1937f1aff152add8c7aac186b04ed0 | 458c17edb8812c06ea8c862353ea8acd24becef3 | /arx-master160519/src/gui/org/deidentifier/arx/gui/view/impl/common/table/LayerColumnHeader.java | 91b3c15f08425822396f6788ef9bfe876094be76 | [
"Apache-2.0"
] | permissive | Safe-DEED/prioprivacy-k-anonymisation | 216a8fcae3e2af3b9acbb2391d1fb19dbdb3f60b | e11febbdde95ba24394309bf5594310bafd431fb | refs/heads/master | 2023-04-06T14:46:06.223802 | 2021-04-15T17:44:32 | 2021-04-15T17:44:32 | 358,341,823 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,286 | java | /*
* ARX: Powerful Data Anonymization
* Copyright 2012 - 2018 Fabian Prasser and contributors
*
* 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.deidentifier.arx.gui.view.impl.common.table;
import org.eclipse.nebula.widgets.nattable.data.IDataProvider;
import org.eclipse.nebula.widgets.nattable.grid.GridRegion;
import org.eclipse.nebula.widgets.nattable.grid.layer.ColumnHeaderLayer;
import org.eclipse.nebula.widgets.nattable.layer.DataLayer;
import org.eclipse.nebula.widgets.nattable.resize.config.DefaultColumnResizeBindings;
import org.eclipse.swt.widgets.Composite;
/**
* The column layer.
*
* @author Fabian Prasser
*/
public class LayerColumnHeader extends CTLayer {
/**
* Creates a new instance.
*
* @param parent
* @param dataProvider
* @param bodyLayer
* @param config
* @param context
*/
public LayerColumnHeader(Composite parent,
IDataProvider dataProvider,
LayerBody bodyLayer,
CTConfiguration config, CTContext context) {
super(config, context);
DataLayer dataLayer = new DataLayer(dataProvider);
ColumnHeaderLayer colHeaderLayer = new ColumnHeaderLayer(dataLayer,
bodyLayer,
bodyLayer.getSelectionLayer(),
false);
colHeaderLayer.addConfiguration(new StyleConfigurationHeader(parent, GridRegion.COLUMN_HEADER, config));
colHeaderLayer.addConfiguration(new DefaultColumnResizeBindings());
setUnderlyingLayer(colHeaderLayer);
}
} | [
"abampoulidis@researchstudio.at"
] | abampoulidis@researchstudio.at |
78a47018c1b62a225bfe99fe1230006c0d8e3595 | b44018861005dff02b9174a13144b12059e5865d | /src/main/java/jetbrick/io/stream/NullWriter.java | 215f503a8c8ecabd1d4923f4cc114a4b8818ded0 | [
"Apache-2.0"
] | permissive | gyk001/jetbrick-commons | 40fe94802e51c03f1e1de136b2acd76a31aa710b | 751bf934f01b93ad341be7ada99550350f4b8cd9 | refs/heads/master | 2020-04-05T23:18:54.682711 | 2015-05-24T05:10:49 | 2015-05-24T05:10:49 | 36,156,711 | 0 | 0 | null | 2015-05-24T04:57:15 | 2015-05-24T04:57:15 | null | UTF-8 | Java | false | false | 1,582 | java | /**
* Copyright 2013-2014 Guoqiang Chen, Shanghai, China. All rights reserved.
*
* Author: Guoqiang Chen
* Email: subchen@gmail.com
* WebURL: https://github.com/subchen
*
* 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 jetbrick.io.stream;
import java.io.Writer;
public class NullWriter extends Writer {
public static final NullWriter INSTANCE = new NullWriter();
@Override
public Writer append(char c) {
return this;
}
@Override
public Writer append(CharSequence csq, int start, int end) {
return this;
}
@Override
public Writer append(CharSequence csq) {
return this;
}
@Override
public void write(int idx) {
}
@Override
public void write(char[] chr) {
}
@Override
public void write(char[] chr, int st, int end) {
}
@Override
public void write(String str) {
}
@Override
public void write(String str, int st, int end) {
}
@Override
public void flush() {
}
@Override
public void close() {
}
}
| [
"subchen@gmail.com"
] | subchen@gmail.com |
a56a83528f23e06788bad4043b313e1aebae238b | 6032abc496edba91acd1952b2a8f9ddac012cddc | /src/Head_First_Java/Ch12_GUI_Begin/MiniMusicPlayer3.java | e1969c5e84cb79b688b9c237436807f156aa7c9d | [] | no_license | RossHS/HeadFirst_Java | 7438e171336694cb605f7efe9f260564c3a3d8bc | e3c0efe993a31a6c1f3b8fca0420b174c01f41bb | refs/heads/master | 2021-01-02T23:11:30.731382 | 2017-08-13T17:47:10 | 2017-08-13T17:47:10 | 99,442,652 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,586 | java | package Head_First_Java.Ch12_GUI_Begin;
import javax.sound.midi.*;
import javax.swing.*;
import java.awt.*;
/**
* Created by User on 31.07.2017.
*/
public class MiniMusicPlayer3 {
static JFrame f = new JFrame("MUSIC CLIP");
static MyDrawPanel m1;
public static void main(String[] args) {
MiniMusicPlayer3 mini = new MiniMusicPlayer3();
mini.go();
}
public void setUpGui(){
m1 = new MyDrawPanel();
f.setContentPane(m1);
f.setBounds(30,30,300,300);
f.setVisible(true);
}
public void go(){
setUpGui();
try {
Sequencer sequencer = MidiSystem.getSequencer();
sequencer.open();
sequencer.addControllerEventListener(m1, new int[] {127});
Sequence seq = new Sequence(Sequence.PPQ, 4);
Track track = seq.createTrack();
int r = 0;
for (int i = 5; i <60; i+= 4) {
r = (int) ((Math.random()*50) + 1);
track.add(makeEvent(144,1,r,100,i));
track.add(makeEvent(176,1,127,0,i));
track.add(makeEvent(128,1,r,100,i + 2));
}
sequencer.setSequence(seq);
sequencer.start();
sequencer.setTempoInBPM(120);
} catch (Exception ex) {
ex.printStackTrace();
}
}
public static MidiEvent makeEvent (int comd, int chan, int one, int two, int tick) {
MidiEvent event = null;
try {
ShortMessage a = new ShortMessage();
a.setMessage(comd,chan,one, two);
event = new MidiEvent(a, tick);
}catch (Exception e) {}
return event;
}
class MyDrawPanel extends JPanel implements ControllerEventListener {
boolean msg = false;
public void controlChange (ShortMessage event) {
msg = true;
repaint();
}
public void paintComponent (Graphics g) {
if (msg) {
Graphics2D g2 = (Graphics2D) g;
int r = (int) (Math.random()*250);
int gr = (int) (Math.random()*250);
int b = (int) (Math.random()*250);
g.setColor(new Color(r,gr,b));
int ht = (int) ((Math.random()*120) + 10);
int width = (int) ((Math.random()*120) + 10);
int x = (int) ((Math.random()*40) + 10);
int y = (int) ((Math.random()*40) + 10);
g.fillRect(x,y,ht,width);
msg = false;
}
}
}
}
| [
"rossxpanteley@gmail.com"
] | rossxpanteley@gmail.com |
3de82bf858e43e0bd49c29d7b3872884e6f3fcba | c4fa1c1ad9ca8121ceb4675199efa39398fb65a5 | /app/build/generated/not_namespaced_r_class_sources/debug/r/androidx/appcompat/R.java | 96d52cb5665ffcb723a3ff9fe8c0a12ebc1803b3 | [] | no_license | Revaalfian/intenrev1 | 5fe06be71c3fe282b982be7a00a5e6dd9d6ebf6d | 1eb14b537bcb87d381d9c6cd9278ad960392c917 | refs/heads/master | 2020-08-24T08:00:08.074053 | 2019-10-22T10:46:28 | 2019-10-22T10:46:28 | 216,789,306 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 127,006 | 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.appcompat;
public final class R {
private R() {}
public static final class anim {
private anim() {}
public static final int abc_fade_in = 0x7f010000;
public static final int abc_fade_out = 0x7f010001;
public static final int abc_grow_fade_in_from_bottom = 0x7f010002;
public static final int abc_popup_enter = 0x7f010003;
public static final int abc_popup_exit = 0x7f010004;
public static final int abc_shrink_fade_out_from_bottom = 0x7f010005;
public static final int abc_slide_in_bottom = 0x7f010006;
public static final int abc_slide_in_top = 0x7f010007;
public static final int abc_slide_out_bottom = 0x7f010008;
public static final int abc_slide_out_top = 0x7f010009;
public static final int abc_tooltip_enter = 0x7f01000a;
public static final int abc_tooltip_exit = 0x7f01000b;
public static final int btn_checkbox_to_checked_box_inner_merged_animation = 0x7f01000c;
public static final int btn_checkbox_to_checked_box_outer_merged_animation = 0x7f01000d;
public static final int btn_checkbox_to_checked_icon_null_animation = 0x7f01000e;
public static final int btn_checkbox_to_unchecked_box_inner_merged_animation = 0x7f01000f;
public static final int btn_checkbox_to_unchecked_check_path_merged_animation = 0x7f010010;
public static final int btn_checkbox_to_unchecked_icon_null_animation = 0x7f010011;
public static final int btn_radio_to_off_mtrl_dot_group_animation = 0x7f010012;
public static final int btn_radio_to_off_mtrl_ring_outer_animation = 0x7f010013;
public static final int btn_radio_to_off_mtrl_ring_outer_path_animation = 0x7f010014;
public static final int btn_radio_to_on_mtrl_dot_group_animation = 0x7f010015;
public static final int btn_radio_to_on_mtrl_ring_outer_animation = 0x7f010016;
public static final int btn_radio_to_on_mtrl_ring_outer_path_animation = 0x7f010017;
}
public static final class attr {
private attr() {}
public static final int actionBarDivider = 0x7f020000;
public static final int actionBarItemBackground = 0x7f020001;
public static final int actionBarPopupTheme = 0x7f020002;
public static final int actionBarSize = 0x7f020003;
public static final int actionBarSplitStyle = 0x7f020004;
public static final int actionBarStyle = 0x7f020005;
public static final int actionBarTabBarStyle = 0x7f020006;
public static final int actionBarTabStyle = 0x7f020007;
public static final int actionBarTabTextStyle = 0x7f020008;
public static final int actionBarTheme = 0x7f020009;
public static final int actionBarWidgetTheme = 0x7f02000a;
public static final int actionButtonStyle = 0x7f02000b;
public static final int actionDropDownStyle = 0x7f02000c;
public static final int actionLayout = 0x7f02000d;
public static final int actionMenuTextAppearance = 0x7f02000e;
public static final int actionMenuTextColor = 0x7f02000f;
public static final int actionModeBackground = 0x7f020010;
public static final int actionModeCloseButtonStyle = 0x7f020011;
public static final int actionModeCloseDrawable = 0x7f020012;
public static final int actionModeCopyDrawable = 0x7f020013;
public static final int actionModeCutDrawable = 0x7f020014;
public static final int actionModeFindDrawable = 0x7f020015;
public static final int actionModePasteDrawable = 0x7f020016;
public static final int actionModePopupWindowStyle = 0x7f020017;
public static final int actionModeSelectAllDrawable = 0x7f020018;
public static final int actionModeShareDrawable = 0x7f020019;
public static final int actionModeSplitBackground = 0x7f02001a;
public static final int actionModeStyle = 0x7f02001b;
public static final int actionModeWebSearchDrawable = 0x7f02001c;
public static final int actionOverflowButtonStyle = 0x7f02001d;
public static final int actionOverflowMenuStyle = 0x7f02001e;
public static final int actionProviderClass = 0x7f02001f;
public static final int actionViewClass = 0x7f020020;
public static final int activityChooserViewStyle = 0x7f020021;
public static final int alertDialogButtonGroupStyle = 0x7f020022;
public static final int alertDialogCenterButtons = 0x7f020023;
public static final int alertDialogStyle = 0x7f020024;
public static final int alertDialogTheme = 0x7f020025;
public static final int allowStacking = 0x7f020026;
public static final int alpha = 0x7f020027;
public static final int alphabeticModifiers = 0x7f020028;
public static final int arrowHeadLength = 0x7f020029;
public static final int arrowShaftLength = 0x7f02002a;
public static final int autoCompleteTextViewStyle = 0x7f02002b;
public static final int autoSizeMaxTextSize = 0x7f02002c;
public static final int autoSizeMinTextSize = 0x7f02002d;
public static final int autoSizePresetSizes = 0x7f02002e;
public static final int autoSizeStepGranularity = 0x7f02002f;
public static final int autoSizeTextType = 0x7f020030;
public static final int background = 0x7f020031;
public static final int backgroundSplit = 0x7f020032;
public static final int backgroundStacked = 0x7f020033;
public static final int backgroundTint = 0x7f020034;
public static final int backgroundTintMode = 0x7f020035;
public static final int barLength = 0x7f020036;
public static final int borderlessButtonStyle = 0x7f020039;
public static final int buttonBarButtonStyle = 0x7f02003a;
public static final int buttonBarNegativeButtonStyle = 0x7f02003b;
public static final int buttonBarNeutralButtonStyle = 0x7f02003c;
public static final int buttonBarPositiveButtonStyle = 0x7f02003d;
public static final int buttonBarStyle = 0x7f02003e;
public static final int buttonCompat = 0x7f02003f;
public static final int buttonGravity = 0x7f020040;
public static final int buttonIconDimen = 0x7f020041;
public static final int buttonPanelSideLayout = 0x7f020042;
public static final int buttonStyle = 0x7f020043;
public static final int buttonStyleSmall = 0x7f020044;
public static final int buttonTint = 0x7f020045;
public static final int buttonTintMode = 0x7f020046;
public static final int checkboxStyle = 0x7f020048;
public static final int checkedTextViewStyle = 0x7f020049;
public static final int closeIcon = 0x7f02004a;
public static final int closeItemLayout = 0x7f02004b;
public static final int collapseContentDescription = 0x7f02004c;
public static final int collapseIcon = 0x7f02004d;
public static final int color = 0x7f02004e;
public static final int colorAccent = 0x7f02004f;
public static final int colorBackgroundFloating = 0x7f020050;
public static final int colorButtonNormal = 0x7f020051;
public static final int colorControlActivated = 0x7f020052;
public static final int colorControlHighlight = 0x7f020053;
public static final int colorControlNormal = 0x7f020054;
public static final int colorError = 0x7f020055;
public static final int colorPrimary = 0x7f020056;
public static final int colorPrimaryDark = 0x7f020057;
public static final int colorSwitchThumbNormal = 0x7f020058;
public static final int commitIcon = 0x7f020059;
public static final int contentDescription = 0x7f02005d;
public static final int contentInsetEnd = 0x7f02005e;
public static final int contentInsetEndWithActions = 0x7f02005f;
public static final int contentInsetLeft = 0x7f020060;
public static final int contentInsetRight = 0x7f020061;
public static final int contentInsetStart = 0x7f020062;
public static final int contentInsetStartWithNavigation = 0x7f020063;
public static final int controlBackground = 0x7f020064;
public static final int customNavigationLayout = 0x7f020065;
public static final int defaultQueryHint = 0x7f020066;
public static final int dialogCornerRadius = 0x7f020067;
public static final int dialogPreferredPadding = 0x7f020068;
public static final int dialogTheme = 0x7f020069;
public static final int displayOptions = 0x7f02006a;
public static final int divider = 0x7f02006b;
public static final int dividerHorizontal = 0x7f02006c;
public static final int dividerPadding = 0x7f02006d;
public static final int dividerVertical = 0x7f02006e;
public static final int drawableBottomCompat = 0x7f02006f;
public static final int drawableEndCompat = 0x7f020070;
public static final int drawableLeftCompat = 0x7f020071;
public static final int drawableRightCompat = 0x7f020072;
public static final int drawableSize = 0x7f020073;
public static final int drawableStartCompat = 0x7f020074;
public static final int drawableTint = 0x7f020075;
public static final int drawableTintMode = 0x7f020076;
public static final int drawableTopCompat = 0x7f020077;
public static final int drawerArrowStyle = 0x7f020078;
public static final int dropDownListViewStyle = 0x7f020079;
public static final int dropdownListPreferredItemHeight = 0x7f02007a;
public static final int editTextBackground = 0x7f02007b;
public static final int editTextColor = 0x7f02007c;
public static final int editTextStyle = 0x7f02007d;
public static final int elevation = 0x7f02007e;
public static final int expandActivityOverflowButtonDrawable = 0x7f020080;
public static final int firstBaselineToTopHeight = 0x7f020081;
public static final int font = 0x7f020082;
public static final int fontFamily = 0x7f020083;
public static final int fontProviderAuthority = 0x7f020084;
public static final int fontProviderCerts = 0x7f020085;
public static final int fontProviderFetchStrategy = 0x7f020086;
public static final int fontProviderFetchTimeout = 0x7f020087;
public static final int fontProviderPackage = 0x7f020088;
public static final int fontProviderQuery = 0x7f020089;
public static final int fontStyle = 0x7f02008a;
public static final int fontVariationSettings = 0x7f02008b;
public static final int fontWeight = 0x7f02008c;
public static final int gapBetweenBars = 0x7f02008d;
public static final int goIcon = 0x7f02008e;
public static final int height = 0x7f02008f;
public static final int hideOnContentScroll = 0x7f020090;
public static final int homeAsUpIndicator = 0x7f020091;
public static final int homeLayout = 0x7f020092;
public static final int icon = 0x7f020093;
public static final int iconTint = 0x7f020094;
public static final int iconTintMode = 0x7f020095;
public static final int iconifiedByDefault = 0x7f020096;
public static final int imageButtonStyle = 0x7f020097;
public static final int indeterminateProgressStyle = 0x7f020098;
public static final int initialActivityCount = 0x7f020099;
public static final int isLightTheme = 0x7f02009a;
public static final int itemPadding = 0x7f02009b;
public static final int lastBaselineToBottomHeight = 0x7f02009c;
public static final int layout = 0x7f02009d;
public static final int lineHeight = 0x7f0200d0;
public static final int listChoiceBackgroundIndicator = 0x7f0200d1;
public static final int listChoiceIndicatorMultipleAnimated = 0x7f0200d2;
public static final int listChoiceIndicatorSingleAnimated = 0x7f0200d3;
public static final int listDividerAlertDialog = 0x7f0200d4;
public static final int listItemLayout = 0x7f0200d5;
public static final int listLayout = 0x7f0200d6;
public static final int listMenuViewStyle = 0x7f0200d7;
public static final int listPopupWindowStyle = 0x7f0200d8;
public static final int listPreferredItemHeight = 0x7f0200d9;
public static final int listPreferredItemHeightLarge = 0x7f0200da;
public static final int listPreferredItemHeightSmall = 0x7f0200db;
public static final int listPreferredItemPaddingEnd = 0x7f0200dc;
public static final int listPreferredItemPaddingLeft = 0x7f0200dd;
public static final int listPreferredItemPaddingRight = 0x7f0200de;
public static final int listPreferredItemPaddingStart = 0x7f0200df;
public static final int logo = 0x7f0200e0;
public static final int logoDescription = 0x7f0200e1;
public static final int maxButtonHeight = 0x7f0200e2;
public static final int measureWithLargestChild = 0x7f0200e3;
public static final int menu = 0x7f0200e4;
public static final int multiChoiceItemLayout = 0x7f0200e5;
public static final int navigationContentDescription = 0x7f0200e6;
public static final int navigationIcon = 0x7f0200e7;
public static final int navigationMode = 0x7f0200e8;
public static final int numericModifiers = 0x7f0200e9;
public static final int overlapAnchor = 0x7f0200ea;
public static final int paddingBottomNoButtons = 0x7f0200eb;
public static final int paddingEnd = 0x7f0200ec;
public static final int paddingStart = 0x7f0200ed;
public static final int paddingTopNoTitle = 0x7f0200ee;
public static final int panelBackground = 0x7f0200ef;
public static final int panelMenuListTheme = 0x7f0200f0;
public static final int panelMenuListWidth = 0x7f0200f1;
public static final int popupMenuStyle = 0x7f0200f2;
public static final int popupTheme = 0x7f0200f3;
public static final int popupWindowStyle = 0x7f0200f4;
public static final int preserveIconSpacing = 0x7f0200f5;
public static final int progressBarPadding = 0x7f0200f6;
public static final int progressBarStyle = 0x7f0200f7;
public static final int queryBackground = 0x7f0200f8;
public static final int queryHint = 0x7f0200f9;
public static final int radioButtonStyle = 0x7f0200fa;
public static final int ratingBarStyle = 0x7f0200fb;
public static final int ratingBarStyleIndicator = 0x7f0200fc;
public static final int ratingBarStyleSmall = 0x7f0200fd;
public static final int searchHintIcon = 0x7f0200fe;
public static final int searchIcon = 0x7f0200ff;
public static final int searchViewStyle = 0x7f020100;
public static final int seekBarStyle = 0x7f020101;
public static final int selectableItemBackground = 0x7f020102;
public static final int selectableItemBackgroundBorderless = 0x7f020103;
public static final int showAsAction = 0x7f020104;
public static final int showDividers = 0x7f020105;
public static final int showText = 0x7f020106;
public static final int showTitle = 0x7f020107;
public static final int singleChoiceItemLayout = 0x7f020108;
public static final int spinBars = 0x7f020109;
public static final int spinnerDropDownItemStyle = 0x7f02010a;
public static final int spinnerStyle = 0x7f02010b;
public static final int splitTrack = 0x7f02010c;
public static final int srcCompat = 0x7f02010d;
public static final int state_above_anchor = 0x7f02010e;
public static final int subMenuArrow = 0x7f02010f;
public static final int submitBackground = 0x7f020110;
public static final int subtitle = 0x7f020111;
public static final int subtitleTextAppearance = 0x7f020112;
public static final int subtitleTextColor = 0x7f020113;
public static final int subtitleTextStyle = 0x7f020114;
public static final int suggestionRowLayout = 0x7f020115;
public static final int switchMinWidth = 0x7f020116;
public static final int switchPadding = 0x7f020117;
public static final int switchStyle = 0x7f020118;
public static final int switchTextAppearance = 0x7f020119;
public static final int textAllCaps = 0x7f02011a;
public static final int textAppearanceLargePopupMenu = 0x7f02011b;
public static final int textAppearanceListItem = 0x7f02011c;
public static final int textAppearanceListItemSecondary = 0x7f02011d;
public static final int textAppearanceListItemSmall = 0x7f02011e;
public static final int textAppearancePopupMenuHeader = 0x7f02011f;
public static final int textAppearanceSearchResultSubtitle = 0x7f020120;
public static final int textAppearanceSearchResultTitle = 0x7f020121;
public static final int textAppearanceSmallPopupMenu = 0x7f020122;
public static final int textColorAlertDialogListItem = 0x7f020123;
public static final int textColorSearchUrl = 0x7f020124;
public static final int textLocale = 0x7f020125;
public static final int theme = 0x7f020126;
public static final int thickness = 0x7f020127;
public static final int thumbTextPadding = 0x7f020128;
public static final int thumbTint = 0x7f020129;
public static final int thumbTintMode = 0x7f02012a;
public static final int tickMark = 0x7f02012b;
public static final int tickMarkTint = 0x7f02012c;
public static final int tickMarkTintMode = 0x7f02012d;
public static final int tint = 0x7f02012e;
public static final int tintMode = 0x7f02012f;
public static final int title = 0x7f020130;
public static final int titleMargin = 0x7f020131;
public static final int titleMarginBottom = 0x7f020132;
public static final int titleMarginEnd = 0x7f020133;
public static final int titleMarginStart = 0x7f020134;
public static final int titleMarginTop = 0x7f020135;
public static final int titleMargins = 0x7f020136;
public static final int titleTextAppearance = 0x7f020137;
public static final int titleTextColor = 0x7f020138;
public static final int titleTextStyle = 0x7f020139;
public static final int toolbarNavigationButtonStyle = 0x7f02013a;
public static final int toolbarStyle = 0x7f02013b;
public static final int tooltipForegroundColor = 0x7f02013c;
public static final int tooltipFrameBackground = 0x7f02013d;
public static final int tooltipText = 0x7f02013e;
public static final int track = 0x7f02013f;
public static final int trackTint = 0x7f020140;
public static final int trackTintMode = 0x7f020141;
public static final int ttcIndex = 0x7f020142;
public static final int viewInflaterClass = 0x7f020143;
public static final int voiceIcon = 0x7f020144;
public static final int windowActionBar = 0x7f020145;
public static final int windowActionBarOverlay = 0x7f020146;
public static final int windowActionModeOverlay = 0x7f020147;
public static final int windowFixedHeightMajor = 0x7f020148;
public static final int windowFixedHeightMinor = 0x7f020149;
public static final int windowFixedWidthMajor = 0x7f02014a;
public static final int windowFixedWidthMinor = 0x7f02014b;
public static final int windowMinWidthMajor = 0x7f02014c;
public static final int windowMinWidthMinor = 0x7f02014d;
public static final int windowNoTitle = 0x7f02014e;
}
public static final class bool {
private bool() {}
public static final int abc_action_bar_embed_tabs = 0x7f030000;
public static final int abc_allow_stacked_button_bar = 0x7f030001;
public static final int abc_config_actionMenuItemAllCaps = 0x7f030002;
}
public static final class color {
private color() {}
public static final int abc_background_cache_hint_selector_material_dark = 0x7f040000;
public static final int abc_background_cache_hint_selector_material_light = 0x7f040001;
public static final int abc_btn_colored_borderless_text_material = 0x7f040002;
public static final int abc_btn_colored_text_material = 0x7f040003;
public static final int abc_color_highlight_material = 0x7f040004;
public static final int abc_hint_foreground_material_dark = 0x7f040005;
public static final int abc_hint_foreground_material_light = 0x7f040006;
public static final int abc_input_method_navigation_guard = 0x7f040007;
public static final int abc_primary_text_disable_only_material_dark = 0x7f040008;
public static final int abc_primary_text_disable_only_material_light = 0x7f040009;
public static final int abc_primary_text_material_dark = 0x7f04000a;
public static final int abc_primary_text_material_light = 0x7f04000b;
public static final int abc_search_url_text = 0x7f04000c;
public static final int abc_search_url_text_normal = 0x7f04000d;
public static final int abc_search_url_text_pressed = 0x7f04000e;
public static final int abc_search_url_text_selected = 0x7f04000f;
public static final int abc_secondary_text_material_dark = 0x7f040010;
public static final int abc_secondary_text_material_light = 0x7f040011;
public static final int abc_tint_btn_checkable = 0x7f040012;
public static final int abc_tint_default = 0x7f040013;
public static final int abc_tint_edittext = 0x7f040014;
public static final int abc_tint_seek_thumb = 0x7f040015;
public static final int abc_tint_spinner = 0x7f040016;
public static final int abc_tint_switch_track = 0x7f040017;
public static final int accent_material_dark = 0x7f040018;
public static final int accent_material_light = 0x7f040019;
public static final int background_floating_material_dark = 0x7f04001a;
public static final int background_floating_material_light = 0x7f04001b;
public static final int background_material_dark = 0x7f04001c;
public static final int background_material_light = 0x7f04001d;
public static final int bright_foreground_disabled_material_dark = 0x7f04001e;
public static final int bright_foreground_disabled_material_light = 0x7f04001f;
public static final int bright_foreground_inverse_material_dark = 0x7f040020;
public static final int bright_foreground_inverse_material_light = 0x7f040021;
public static final int bright_foreground_material_dark = 0x7f040022;
public static final int bright_foreground_material_light = 0x7f040023;
public static final int button_material_dark = 0x7f040024;
public static final int button_material_light = 0x7f040025;
public static final int dim_foreground_disabled_material_dark = 0x7f040029;
public static final int dim_foreground_disabled_material_light = 0x7f04002a;
public static final int dim_foreground_material_dark = 0x7f04002b;
public static final int dim_foreground_material_light = 0x7f04002c;
public static final int error_color_material_dark = 0x7f04002d;
public static final int error_color_material_light = 0x7f04002e;
public static final int foreground_material_dark = 0x7f04002f;
public static final int foreground_material_light = 0x7f040030;
public static final int highlighted_text_material_dark = 0x7f040031;
public static final int highlighted_text_material_light = 0x7f040032;
public static final int material_blue_grey_800 = 0x7f040033;
public static final int material_blue_grey_900 = 0x7f040034;
public static final int material_blue_grey_950 = 0x7f040035;
public static final int material_deep_teal_200 = 0x7f040036;
public static final int material_deep_teal_500 = 0x7f040037;
public static final int material_grey_100 = 0x7f040038;
public static final int material_grey_300 = 0x7f040039;
public static final int material_grey_50 = 0x7f04003a;
public static final int material_grey_600 = 0x7f04003b;
public static final int material_grey_800 = 0x7f04003c;
public static final int material_grey_850 = 0x7f04003d;
public static final int material_grey_900 = 0x7f04003e;
public static final int notification_action_color_filter = 0x7f04003f;
public static final int notification_icon_bg_color = 0x7f040040;
public static final int primary_dark_material_dark = 0x7f040041;
public static final int primary_dark_material_light = 0x7f040042;
public static final int primary_material_dark = 0x7f040043;
public static final int primary_material_light = 0x7f040044;
public static final int primary_text_default_material_dark = 0x7f040045;
public static final int primary_text_default_material_light = 0x7f040046;
public static final int primary_text_disabled_material_dark = 0x7f040047;
public static final int primary_text_disabled_material_light = 0x7f040048;
public static final int ripple_material_dark = 0x7f040049;
public static final int ripple_material_light = 0x7f04004a;
public static final int secondary_text_default_material_dark = 0x7f04004b;
public static final int secondary_text_default_material_light = 0x7f04004c;
public static final int secondary_text_disabled_material_dark = 0x7f04004d;
public static final int secondary_text_disabled_material_light = 0x7f04004e;
public static final int switch_thumb_disabled_material_dark = 0x7f04004f;
public static final int switch_thumb_disabled_material_light = 0x7f040050;
public static final int switch_thumb_material_dark = 0x7f040051;
public static final int switch_thumb_material_light = 0x7f040052;
public static final int switch_thumb_normal_material_dark = 0x7f040053;
public static final int switch_thumb_normal_material_light = 0x7f040054;
public static final int tooltip_background_dark = 0x7f040055;
public static final int tooltip_background_light = 0x7f040056;
}
public static final class dimen {
private dimen() {}
public static final int abc_action_bar_content_inset_material = 0x7f050000;
public static final int abc_action_bar_content_inset_with_nav = 0x7f050001;
public static final int abc_action_bar_default_height_material = 0x7f050002;
public static final int abc_action_bar_default_padding_end_material = 0x7f050003;
public static final int abc_action_bar_default_padding_start_material = 0x7f050004;
public static final int abc_action_bar_elevation_material = 0x7f050005;
public static final int abc_action_bar_icon_vertical_padding_material = 0x7f050006;
public static final int abc_action_bar_overflow_padding_end_material = 0x7f050007;
public static final int abc_action_bar_overflow_padding_start_material = 0x7f050008;
public static final int abc_action_bar_stacked_max_height = 0x7f050009;
public static final int abc_action_bar_stacked_tab_max_width = 0x7f05000a;
public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f05000b;
public static final int abc_action_bar_subtitle_top_margin_material = 0x7f05000c;
public static final int abc_action_button_min_height_material = 0x7f05000d;
public static final int abc_action_button_min_width_material = 0x7f05000e;
public static final int abc_action_button_min_width_overflow_material = 0x7f05000f;
public static final int abc_alert_dialog_button_bar_height = 0x7f050010;
public static final int abc_alert_dialog_button_dimen = 0x7f050011;
public static final int abc_button_inset_horizontal_material = 0x7f050012;
public static final int abc_button_inset_vertical_material = 0x7f050013;
public static final int abc_button_padding_horizontal_material = 0x7f050014;
public static final int abc_button_padding_vertical_material = 0x7f050015;
public static final int abc_cascading_menus_min_smallest_width = 0x7f050016;
public static final int abc_config_prefDialogWidth = 0x7f050017;
public static final int abc_control_corner_material = 0x7f050018;
public static final int abc_control_inset_material = 0x7f050019;
public static final int abc_control_padding_material = 0x7f05001a;
public static final int abc_dialog_corner_radius_material = 0x7f05001b;
public static final int abc_dialog_fixed_height_major = 0x7f05001c;
public static final int abc_dialog_fixed_height_minor = 0x7f05001d;
public static final int abc_dialog_fixed_width_major = 0x7f05001e;
public static final int abc_dialog_fixed_width_minor = 0x7f05001f;
public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f050020;
public static final int abc_dialog_list_padding_top_no_title = 0x7f050021;
public static final int abc_dialog_min_width_major = 0x7f050022;
public static final int abc_dialog_min_width_minor = 0x7f050023;
public static final int abc_dialog_padding_material = 0x7f050024;
public static final int abc_dialog_padding_top_material = 0x7f050025;
public static final int abc_dialog_title_divider_material = 0x7f050026;
public static final int abc_disabled_alpha_material_dark = 0x7f050027;
public static final int abc_disabled_alpha_material_light = 0x7f050028;
public static final int abc_dropdownitem_icon_width = 0x7f050029;
public static final int abc_dropdownitem_text_padding_left = 0x7f05002a;
public static final int abc_dropdownitem_text_padding_right = 0x7f05002b;
public static final int abc_edit_text_inset_bottom_material = 0x7f05002c;
public static final int abc_edit_text_inset_horizontal_material = 0x7f05002d;
public static final int abc_edit_text_inset_top_material = 0x7f05002e;
public static final int abc_floating_window_z = 0x7f05002f;
public static final int abc_list_item_height_large_material = 0x7f050030;
public static final int abc_list_item_height_material = 0x7f050031;
public static final int abc_list_item_height_small_material = 0x7f050032;
public static final int abc_list_item_padding_horizontal_material = 0x7f050033;
public static final int abc_panel_menu_list_width = 0x7f050034;
public static final int abc_progress_bar_height_material = 0x7f050035;
public static final int abc_search_view_preferred_height = 0x7f050036;
public static final int abc_search_view_preferred_width = 0x7f050037;
public static final int abc_seekbar_track_background_height_material = 0x7f050038;
public static final int abc_seekbar_track_progress_height_material = 0x7f050039;
public static final int abc_select_dialog_padding_start_material = 0x7f05003a;
public static final int abc_switch_padding = 0x7f05003b;
public static final int abc_text_size_body_1_material = 0x7f05003c;
public static final int abc_text_size_body_2_material = 0x7f05003d;
public static final int abc_text_size_button_material = 0x7f05003e;
public static final int abc_text_size_caption_material = 0x7f05003f;
public static final int abc_text_size_display_1_material = 0x7f050040;
public static final int abc_text_size_display_2_material = 0x7f050041;
public static final int abc_text_size_display_3_material = 0x7f050042;
public static final int abc_text_size_display_4_material = 0x7f050043;
public static final int abc_text_size_headline_material = 0x7f050044;
public static final int abc_text_size_large_material = 0x7f050045;
public static final int abc_text_size_medium_material = 0x7f050046;
public static final int abc_text_size_menu_header_material = 0x7f050047;
public static final int abc_text_size_menu_material = 0x7f050048;
public static final int abc_text_size_small_material = 0x7f050049;
public static final int abc_text_size_subhead_material = 0x7f05004a;
public static final int abc_text_size_subtitle_material_toolbar = 0x7f05004b;
public static final int abc_text_size_title_material = 0x7f05004c;
public static final int abc_text_size_title_material_toolbar = 0x7f05004d;
public static final int compat_button_inset_horizontal_material = 0x7f05004e;
public static final int compat_button_inset_vertical_material = 0x7f05004f;
public static final int compat_button_padding_horizontal_material = 0x7f050050;
public static final int compat_button_padding_vertical_material = 0x7f050051;
public static final int compat_control_corner_material = 0x7f050052;
public static final int compat_notification_large_icon_max_height = 0x7f050053;
public static final int compat_notification_large_icon_max_width = 0x7f050054;
public static final int disabled_alpha_material_dark = 0x7f050055;
public static final int disabled_alpha_material_light = 0x7f050056;
public static final int highlight_alpha_material_colored = 0x7f050057;
public static final int highlight_alpha_material_dark = 0x7f050058;
public static final int highlight_alpha_material_light = 0x7f050059;
public static final int hint_alpha_material_dark = 0x7f05005a;
public static final int hint_alpha_material_light = 0x7f05005b;
public static final int hint_pressed_alpha_material_dark = 0x7f05005c;
public static final int hint_pressed_alpha_material_light = 0x7f05005d;
public static final int notification_action_icon_size = 0x7f05005e;
public static final int notification_action_text_size = 0x7f05005f;
public static final int notification_big_circle_margin = 0x7f050060;
public static final int notification_content_margin_start = 0x7f050061;
public static final int notification_large_icon_height = 0x7f050062;
public static final int notification_large_icon_width = 0x7f050063;
public static final int notification_main_column_padding_top = 0x7f050064;
public static final int notification_media_narrow_margin = 0x7f050065;
public static final int notification_right_icon_size = 0x7f050066;
public static final int notification_right_side_padding_top = 0x7f050067;
public static final int notification_small_icon_background_padding = 0x7f050068;
public static final int notification_small_icon_size_as_large = 0x7f050069;
public static final int notification_subtext_size = 0x7f05006a;
public static final int notification_top_pad = 0x7f05006b;
public static final int notification_top_pad_large_text = 0x7f05006c;
public static final int tooltip_corner_radius = 0x7f05006d;
public static final int tooltip_horizontal_padding = 0x7f05006e;
public static final int tooltip_margin = 0x7f05006f;
public static final int tooltip_precise_anchor_extra_offset = 0x7f050070;
public static final int tooltip_precise_anchor_threshold = 0x7f050071;
public static final int tooltip_vertical_padding = 0x7f050072;
public static final int tooltip_y_offset_non_touch = 0x7f050073;
public static final int tooltip_y_offset_touch = 0x7f050074;
}
public static final class drawable {
private drawable() {}
public static final int abc_ab_share_pack_mtrl_alpha = 0x7f060001;
public static final int abc_action_bar_item_background_material = 0x7f060002;
public static final int abc_btn_borderless_material = 0x7f060003;
public static final int abc_btn_check_material = 0x7f060004;
public static final int abc_btn_check_material_anim = 0x7f060005;
public static final int abc_btn_check_to_on_mtrl_000 = 0x7f060006;
public static final int abc_btn_check_to_on_mtrl_015 = 0x7f060007;
public static final int abc_btn_colored_material = 0x7f060008;
public static final int abc_btn_default_mtrl_shape = 0x7f060009;
public static final int abc_btn_radio_material = 0x7f06000a;
public static final int abc_btn_radio_material_anim = 0x7f06000b;
public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f06000c;
public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f06000d;
public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f06000e;
public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f06000f;
public static final int abc_cab_background_internal_bg = 0x7f060010;
public static final int abc_cab_background_top_material = 0x7f060011;
public static final int abc_cab_background_top_mtrl_alpha = 0x7f060012;
public static final int abc_control_background_material = 0x7f060013;
public static final int abc_dialog_material_background = 0x7f060014;
public static final int abc_edit_text_material = 0x7f060015;
public static final int abc_ic_ab_back_material = 0x7f060016;
public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f060017;
public static final int abc_ic_clear_material = 0x7f060018;
public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f060019;
public static final int abc_ic_go_search_api_material = 0x7f06001a;
public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f06001b;
public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f06001c;
public static final int abc_ic_menu_overflow_material = 0x7f06001d;
public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f06001e;
public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f06001f;
public static final int abc_ic_menu_share_mtrl_alpha = 0x7f060020;
public static final int abc_ic_search_api_material = 0x7f060021;
public static final int abc_ic_star_black_16dp = 0x7f060022;
public static final int abc_ic_star_black_36dp = 0x7f060023;
public static final int abc_ic_star_black_48dp = 0x7f060024;
public static final int abc_ic_star_half_black_16dp = 0x7f060025;
public static final int abc_ic_star_half_black_36dp = 0x7f060026;
public static final int abc_ic_star_half_black_48dp = 0x7f060027;
public static final int abc_ic_voice_search_api_material = 0x7f060028;
public static final int abc_item_background_holo_dark = 0x7f060029;
public static final int abc_item_background_holo_light = 0x7f06002a;
public static final int abc_list_divider_material = 0x7f06002b;
public static final int abc_list_divider_mtrl_alpha = 0x7f06002c;
public static final int abc_list_focused_holo = 0x7f06002d;
public static final int abc_list_longpressed_holo = 0x7f06002e;
public static final int abc_list_pressed_holo_dark = 0x7f06002f;
public static final int abc_list_pressed_holo_light = 0x7f060030;
public static final int abc_list_selector_background_transition_holo_dark = 0x7f060031;
public static final int abc_list_selector_background_transition_holo_light = 0x7f060032;
public static final int abc_list_selector_disabled_holo_dark = 0x7f060033;
public static final int abc_list_selector_disabled_holo_light = 0x7f060034;
public static final int abc_list_selector_holo_dark = 0x7f060035;
public static final int abc_list_selector_holo_light = 0x7f060036;
public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f060037;
public static final int abc_popup_background_mtrl_mult = 0x7f060038;
public static final int abc_ratingbar_indicator_material = 0x7f060039;
public static final int abc_ratingbar_material = 0x7f06003a;
public static final int abc_ratingbar_small_material = 0x7f06003b;
public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f06003c;
public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f06003d;
public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f06003e;
public static final int abc_scrubber_primary_mtrl_alpha = 0x7f06003f;
public static final int abc_scrubber_track_mtrl_alpha = 0x7f060040;
public static final int abc_seekbar_thumb_material = 0x7f060041;
public static final int abc_seekbar_tick_mark_material = 0x7f060042;
public static final int abc_seekbar_track_material = 0x7f060043;
public static final int abc_spinner_mtrl_am_alpha = 0x7f060044;
public static final int abc_spinner_textfield_background_material = 0x7f060045;
public static final int abc_switch_thumb_material = 0x7f060046;
public static final int abc_switch_track_mtrl_alpha = 0x7f060047;
public static final int abc_tab_indicator_material = 0x7f060048;
public static final int abc_tab_indicator_mtrl_alpha = 0x7f060049;
public static final int abc_text_cursor_material = 0x7f06004a;
public static final int abc_text_select_handle_left_mtrl_dark = 0x7f06004b;
public static final int abc_text_select_handle_left_mtrl_light = 0x7f06004c;
public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f06004d;
public static final int abc_text_select_handle_middle_mtrl_light = 0x7f06004e;
public static final int abc_text_select_handle_right_mtrl_dark = 0x7f06004f;
public static final int abc_text_select_handle_right_mtrl_light = 0x7f060050;
public static final int abc_textfield_activated_mtrl_alpha = 0x7f060051;
public static final int abc_textfield_default_mtrl_alpha = 0x7f060052;
public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f060053;
public static final int abc_textfield_search_default_mtrl_alpha = 0x7f060054;
public static final int abc_textfield_search_material = 0x7f060055;
public static final int abc_vector_test = 0x7f060056;
public static final int btn_checkbox_checked_mtrl = 0x7f060057;
public static final int btn_checkbox_checked_to_unchecked_mtrl_animation = 0x7f060058;
public static final int btn_checkbox_unchecked_mtrl = 0x7f060059;
public static final int btn_checkbox_unchecked_to_checked_mtrl_animation = 0x7f06005a;
public static final int btn_radio_off_mtrl = 0x7f06005b;
public static final int btn_radio_off_to_on_mtrl_animation = 0x7f06005c;
public static final int btn_radio_on_mtrl = 0x7f06005d;
public static final int btn_radio_on_to_off_mtrl_animation = 0x7f06005e;
public static final int notification_action_background = 0x7f060061;
public static final int notification_bg = 0x7f060062;
public static final int notification_bg_low = 0x7f060063;
public static final int notification_bg_low_normal = 0x7f060064;
public static final int notification_bg_low_pressed = 0x7f060065;
public static final int notification_bg_normal = 0x7f060066;
public static final int notification_bg_normal_pressed = 0x7f060067;
public static final int notification_icon_background = 0x7f060068;
public static final int notification_template_icon_bg = 0x7f060069;
public static final int notification_template_icon_low_bg = 0x7f06006a;
public static final int notification_tile_bg = 0x7f06006b;
public static final int notify_panel_notification_icon_bg = 0x7f06006c;
public static final int tooltip_frame_dark = 0x7f06006d;
public static final int tooltip_frame_light = 0x7f06006e;
}
public static final class id {
private id() {}
public static final int accessibility_action_clickable_span = 0x7f07000b;
public static final int accessibility_custom_action_0 = 0x7f07000c;
public static final int accessibility_custom_action_1 = 0x7f07000d;
public static final int accessibility_custom_action_10 = 0x7f07000e;
public static final int accessibility_custom_action_11 = 0x7f07000f;
public static final int accessibility_custom_action_12 = 0x7f070010;
public static final int accessibility_custom_action_13 = 0x7f070011;
public static final int accessibility_custom_action_14 = 0x7f070012;
public static final int accessibility_custom_action_15 = 0x7f070013;
public static final int accessibility_custom_action_16 = 0x7f070014;
public static final int accessibility_custom_action_17 = 0x7f070015;
public static final int accessibility_custom_action_18 = 0x7f070016;
public static final int accessibility_custom_action_19 = 0x7f070017;
public static final int accessibility_custom_action_2 = 0x7f070018;
public static final int accessibility_custom_action_20 = 0x7f070019;
public static final int accessibility_custom_action_21 = 0x7f07001a;
public static final int accessibility_custom_action_22 = 0x7f07001b;
public static final int accessibility_custom_action_23 = 0x7f07001c;
public static final int accessibility_custom_action_24 = 0x7f07001d;
public static final int accessibility_custom_action_25 = 0x7f07001e;
public static final int accessibility_custom_action_26 = 0x7f07001f;
public static final int accessibility_custom_action_27 = 0x7f070020;
public static final int accessibility_custom_action_28 = 0x7f070021;
public static final int accessibility_custom_action_29 = 0x7f070022;
public static final int accessibility_custom_action_3 = 0x7f070023;
public static final int accessibility_custom_action_30 = 0x7f070024;
public static final int accessibility_custom_action_31 = 0x7f070025;
public static final int accessibility_custom_action_4 = 0x7f070026;
public static final int accessibility_custom_action_5 = 0x7f070027;
public static final int accessibility_custom_action_6 = 0x7f070028;
public static final int accessibility_custom_action_7 = 0x7f070029;
public static final int accessibility_custom_action_8 = 0x7f07002a;
public static final int accessibility_custom_action_9 = 0x7f07002b;
public static final int action_bar = 0x7f07002c;
public static final int action_bar_activity_content = 0x7f07002d;
public static final int action_bar_container = 0x7f07002e;
public static final int action_bar_root = 0x7f07002f;
public static final int action_bar_spinner = 0x7f070030;
public static final int action_bar_subtitle = 0x7f070031;
public static final int action_bar_title = 0x7f070032;
public static final int action_container = 0x7f070033;
public static final int action_context_bar = 0x7f070034;
public static final int action_divider = 0x7f070035;
public static final int action_image = 0x7f070036;
public static final int action_menu_divider = 0x7f070037;
public static final int action_menu_presenter = 0x7f070038;
public static final int action_mode_bar = 0x7f070039;
public static final int action_mode_bar_stub = 0x7f07003a;
public static final int action_mode_close_button = 0x7f07003b;
public static final int action_text = 0x7f07003c;
public static final int actions = 0x7f07003d;
public static final int activity_chooser_view_content = 0x7f07003e;
public static final int add = 0x7f07003f;
public static final int alertTitle = 0x7f070040;
public static final int async = 0x7f070042;
public static final int blocking = 0x7f070045;
public static final int buttonPanel = 0x7f070047;
public static final int checkbox = 0x7f07004a;
public static final int checked = 0x7f07004b;
public static final int chronometer = 0x7f07004c;
public static final int content = 0x7f07004e;
public static final int contentPanel = 0x7f07004f;
public static final int custom = 0x7f070050;
public static final int customPanel = 0x7f070051;
public static final int decor_content_parent = 0x7f070052;
public static final int default_activity_button = 0x7f070053;
public static final int dialog_button = 0x7f070054;
public static final int edit_query = 0x7f070058;
public static final int expand_activities_button = 0x7f07005a;
public static final int expanded_menu = 0x7f07005b;
public static final int forever = 0x7f07005c;
public static final int group_divider = 0x7f07005e;
public static final int home = 0x7f070060;
public static final int icon = 0x7f070062;
public static final int icon_group = 0x7f070063;
public static final int image = 0x7f070065;
public static final int info = 0x7f070066;
public static final int italic = 0x7f070068;
public static final int line1 = 0x7f07006a;
public static final int line3 = 0x7f07006b;
public static final int listMode = 0x7f07006c;
public static final int list_item = 0x7f07006d;
public static final int message = 0x7f07006e;
public static final int multiply = 0x7f070070;
public static final int none = 0x7f070075;
public static final int normal = 0x7f070076;
public static final int notification_background = 0x7f070077;
public static final int notification_main_column = 0x7f070078;
public static final int notification_main_column_container = 0x7f070079;
public static final int off = 0x7f07007a;
public static final int on = 0x7f07007b;
public static final int parentPanel = 0x7f07007e;
public static final int progress_circular = 0x7f070080;
public static final int progress_horizontal = 0x7f070081;
public static final int radio = 0x7f070083;
public static final int right_icon = 0x7f070085;
public static final int right_side = 0x7f070086;
public static final int screen = 0x7f070087;
public static final int scrollIndicatorDown = 0x7f070088;
public static final int scrollIndicatorUp = 0x7f070089;
public static final int scrollView = 0x7f07008a;
public static final int search_badge = 0x7f07008b;
public static final int search_bar = 0x7f07008c;
public static final int search_button = 0x7f07008d;
public static final int search_close_btn = 0x7f07008e;
public static final int search_edit_frame = 0x7f07008f;
public static final int search_go_btn = 0x7f070090;
public static final int search_mag_icon = 0x7f070091;
public static final int search_plate = 0x7f070092;
public static final int search_src_text = 0x7f070093;
public static final int search_voice_btn = 0x7f070094;
public static final int select_dialog_listview = 0x7f070095;
public static final int shortcut = 0x7f070096;
public static final int spacer = 0x7f07009a;
public static final int split_action_bar = 0x7f07009b;
public static final int src_atop = 0x7f07009e;
public static final int src_in = 0x7f07009f;
public static final int src_over = 0x7f0700a0;
public static final int submenuarrow = 0x7f0700a3;
public static final int submit_area = 0x7f0700a4;
public static final int tabMode = 0x7f0700a5;
public static final int tag_accessibility_actions = 0x7f0700a6;
public static final int tag_accessibility_clickable_spans = 0x7f0700a7;
public static final int tag_accessibility_heading = 0x7f0700a8;
public static final int tag_accessibility_pane_title = 0x7f0700a9;
public static final int tag_screen_reader_focusable = 0x7f0700aa;
public static final int tag_transition_group = 0x7f0700ab;
public static final int tag_unhandled_key_event_manager = 0x7f0700ac;
public static final int tag_unhandled_key_listeners = 0x7f0700ad;
public static final int text = 0x7f0700ae;
public static final int text2 = 0x7f0700af;
public static final int textSpacerNoButtons = 0x7f0700b0;
public static final int textSpacerNoTitle = 0x7f0700b1;
public static final int time = 0x7f0700b2;
public static final int title = 0x7f0700b3;
public static final int titleDividerNoCustom = 0x7f0700b4;
public static final int title_template = 0x7f0700b5;
public static final int topPanel = 0x7f0700b7;
public static final int unchecked = 0x7f0700b8;
public static final int uniform = 0x7f0700b9;
public static final int up = 0x7f0700ba;
public static final int wrap_content = 0x7f0700be;
}
public static final class integer {
private integer() {}
public static final int abc_config_activityDefaultDur = 0x7f080000;
public static final int abc_config_activityShortDur = 0x7f080001;
public static final int cancel_button_image_alpha = 0x7f080002;
public static final int config_tooltipAnimTime = 0x7f080003;
public static final int status_bar_notification_info_maxnum = 0x7f080004;
}
public static final class interpolator {
private interpolator() {}
public static final int btn_checkbox_checked_mtrl_animation_interpolator_0 = 0x7f090000;
public static final int btn_checkbox_checked_mtrl_animation_interpolator_1 = 0x7f090001;
public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_0 = 0x7f090002;
public static final int btn_checkbox_unchecked_mtrl_animation_interpolator_1 = 0x7f090003;
public static final int btn_radio_to_off_mtrl_animation_interpolator_0 = 0x7f090004;
public static final int btn_radio_to_on_mtrl_animation_interpolator_0 = 0x7f090005;
public static final int fast_out_slow_in = 0x7f090006;
}
public static final class layout {
private layout() {}
public static final int abc_action_bar_title_item = 0x7f0a0000;
public static final int abc_action_bar_up_container = 0x7f0a0001;
public static final int abc_action_menu_item_layout = 0x7f0a0002;
public static final int abc_action_menu_layout = 0x7f0a0003;
public static final int abc_action_mode_bar = 0x7f0a0004;
public static final int abc_action_mode_close_item_material = 0x7f0a0005;
public static final int abc_activity_chooser_view = 0x7f0a0006;
public static final int abc_activity_chooser_view_list_item = 0x7f0a0007;
public static final int abc_alert_dialog_button_bar_material = 0x7f0a0008;
public static final int abc_alert_dialog_material = 0x7f0a0009;
public static final int abc_alert_dialog_title_material = 0x7f0a000a;
public static final int abc_cascading_menu_item_layout = 0x7f0a000b;
public static final int abc_dialog_title_material = 0x7f0a000c;
public static final int abc_expanded_menu_layout = 0x7f0a000d;
public static final int abc_list_menu_item_checkbox = 0x7f0a000e;
public static final int abc_list_menu_item_icon = 0x7f0a000f;
public static final int abc_list_menu_item_layout = 0x7f0a0010;
public static final int abc_list_menu_item_radio = 0x7f0a0011;
public static final int abc_popup_menu_header_item_layout = 0x7f0a0012;
public static final int abc_popup_menu_item_layout = 0x7f0a0013;
public static final int abc_screen_content_include = 0x7f0a0014;
public static final int abc_screen_simple = 0x7f0a0015;
public static final int abc_screen_simple_overlay_action_mode = 0x7f0a0016;
public static final int abc_screen_toolbar = 0x7f0a0017;
public static final int abc_search_dropdown_item_icons_2line = 0x7f0a0018;
public static final int abc_search_view = 0x7f0a0019;
public static final int abc_select_dialog_material = 0x7f0a001a;
public static final int abc_tooltip = 0x7f0a001b;
public static final int custom_dialog = 0x7f0a001e;
public static final int notification_action = 0x7f0a001f;
public static final int notification_action_tombstone = 0x7f0a0020;
public static final int notification_template_custom_big = 0x7f0a0021;
public static final int notification_template_icon_group = 0x7f0a0022;
public static final int notification_template_part_chronometer = 0x7f0a0023;
public static final int notification_template_part_time = 0x7f0a0024;
public static final int select_dialog_item_material = 0x7f0a0025;
public static final int select_dialog_multichoice_material = 0x7f0a0026;
public static final int select_dialog_singlechoice_material = 0x7f0a0027;
public static final int support_simple_spinner_dropdown_item = 0x7f0a0028;
}
public static final class string {
private string() {}
public static final int abc_action_bar_home_description = 0x7f0c0000;
public static final int abc_action_bar_up_description = 0x7f0c0001;
public static final int abc_action_menu_overflow_description = 0x7f0c0002;
public static final int abc_action_mode_done = 0x7f0c0003;
public static final int abc_activity_chooser_view_see_all = 0x7f0c0004;
public static final int abc_activitychooserview_choose_application = 0x7f0c0005;
public static final int abc_capital_off = 0x7f0c0006;
public static final int abc_capital_on = 0x7f0c0007;
public static final int abc_menu_alt_shortcut_label = 0x7f0c0008;
public static final int abc_menu_ctrl_shortcut_label = 0x7f0c0009;
public static final int abc_menu_delete_shortcut_label = 0x7f0c000a;
public static final int abc_menu_enter_shortcut_label = 0x7f0c000b;
public static final int abc_menu_function_shortcut_label = 0x7f0c000c;
public static final int abc_menu_meta_shortcut_label = 0x7f0c000d;
public static final int abc_menu_shift_shortcut_label = 0x7f0c000e;
public static final int abc_menu_space_shortcut_label = 0x7f0c000f;
public static final int abc_menu_sym_shortcut_label = 0x7f0c0010;
public static final int abc_prepend_shortcut_label = 0x7f0c0011;
public static final int abc_search_hint = 0x7f0c0012;
public static final int abc_searchview_description_clear = 0x7f0c0013;
public static final int abc_searchview_description_query = 0x7f0c0014;
public static final int abc_searchview_description_search = 0x7f0c0015;
public static final int abc_searchview_description_submit = 0x7f0c0016;
public static final int abc_searchview_description_voice = 0x7f0c0017;
public static final int abc_shareactionprovider_share_with = 0x7f0c0018;
public static final int abc_shareactionprovider_share_with_application = 0x7f0c0019;
public static final int abc_toolbar_collapse_description = 0x7f0c001a;
public static final int search_menu_title = 0x7f0c001c;
public static final int status_bar_notification_info_overflow = 0x7f0c001d;
}
public static final class style {
private style() {}
public static final int AlertDialog_AppCompat = 0x7f0d0000;
public static final int AlertDialog_AppCompat_Light = 0x7f0d0001;
public static final int Animation_AppCompat_Dialog = 0x7f0d0002;
public static final int Animation_AppCompat_DropDownUp = 0x7f0d0003;
public static final int Animation_AppCompat_Tooltip = 0x7f0d0004;
public static final int Base_AlertDialog_AppCompat = 0x7f0d0006;
public static final int Base_AlertDialog_AppCompat_Light = 0x7f0d0007;
public static final int Base_Animation_AppCompat_Dialog = 0x7f0d0008;
public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0d0009;
public static final int Base_Animation_AppCompat_Tooltip = 0x7f0d000a;
public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0d000c;
public static final int Base_DialogWindowTitle_AppCompat = 0x7f0d000b;
public static final int Base_TextAppearance_AppCompat = 0x7f0d000d;
public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0d000e;
public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0d000f;
public static final int Base_TextAppearance_AppCompat_Button = 0x7f0d0010;
public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0d0011;
public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0d0012;
public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0d0013;
public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0d0014;
public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0d0015;
public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0d0016;
public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0d0017;
public static final int Base_TextAppearance_AppCompat_Large = 0x7f0d0018;
public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0d0019;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0d001a;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0d001b;
public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0d001c;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0d001d;
public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0d001e;
public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0d001f;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0d0020;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0d0021;
public static final int Base_TextAppearance_AppCompat_Small = 0x7f0d0022;
public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0d0023;
public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0d0024;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0d0025;
public static final int Base_TextAppearance_AppCompat_Title = 0x7f0d0026;
public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0d0027;
public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f0d0028;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0d0029;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0d002a;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0d002b;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0d002c;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0d002d;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0d002e;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0d002f;
public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0d0030;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0d0031;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0d0032;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0d0033;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0d0034;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0d0035;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0d0036;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0d0037;
public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0d0038;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0d0039;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0d003a;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0d003b;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0d003c;
public static final int Base_ThemeOverlay_AppCompat = 0x7f0d004b;
public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0d004c;
public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0d004d;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0d004e;
public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0d004f;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0d0050;
public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0d0051;
public static final int Base_Theme_AppCompat = 0x7f0d003d;
public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0d003e;
public static final int Base_Theme_AppCompat_Dialog = 0x7f0d003f;
public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0d0043;
public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0d0040;
public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0d0041;
public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0d0042;
public static final int Base_Theme_AppCompat_Light = 0x7f0d0044;
public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0d0045;
public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0d0046;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0d004a;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0d0047;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0d0048;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0d0049;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0d0056;
public static final int Base_V21_Theme_AppCompat = 0x7f0d0052;
public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0d0053;
public static final int Base_V21_Theme_AppCompat_Light = 0x7f0d0054;
public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0d0055;
public static final int Base_V22_Theme_AppCompat = 0x7f0d0057;
public static final int Base_V22_Theme_AppCompat_Light = 0x7f0d0058;
public static final int Base_V23_Theme_AppCompat = 0x7f0d0059;
public static final int Base_V23_Theme_AppCompat_Light = 0x7f0d005a;
public static final int Base_V26_Theme_AppCompat = 0x7f0d005b;
public static final int Base_V26_Theme_AppCompat_Light = 0x7f0d005c;
public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f0d005d;
public static final int Base_V28_Theme_AppCompat = 0x7f0d005e;
public static final int Base_V28_Theme_AppCompat_Light = 0x7f0d005f;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0d0064;
public static final int Base_V7_Theme_AppCompat = 0x7f0d0060;
public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0d0061;
public static final int Base_V7_Theme_AppCompat_Light = 0x7f0d0062;
public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0d0063;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0d0065;
public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0d0066;
public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f0d0067;
public static final int Base_Widget_AppCompat_ActionBar = 0x7f0d0068;
public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0d0069;
public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0d006a;
public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0d006b;
public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0d006c;
public static final int Base_Widget_AppCompat_ActionButton = 0x7f0d006d;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0d006e;
public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0d006f;
public static final int Base_Widget_AppCompat_ActionMode = 0x7f0d0070;
public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0d0071;
public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0d0072;
public static final int Base_Widget_AppCompat_Button = 0x7f0d0073;
public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0d0079;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0d007a;
public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0d0074;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0d0075;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0d0076;
public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0d0077;
public static final int Base_Widget_AppCompat_Button_Small = 0x7f0d0078;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0d007b;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0d007c;
public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0d007d;
public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0d007e;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0d007f;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0d0080;
public static final int Base_Widget_AppCompat_EditText = 0x7f0d0081;
public static final int Base_Widget_AppCompat_ImageButton = 0x7f0d0082;
public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0d0083;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0d0084;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0d0085;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0d0086;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0d0087;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0d0088;
public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0d0089;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0d008a;
public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0d008b;
public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0d008c;
public static final int Base_Widget_AppCompat_ListView = 0x7f0d008d;
public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0d008e;
public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0d008f;
public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0d0090;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0d0091;
public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0d0092;
public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0d0093;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0d0094;
public static final int Base_Widget_AppCompat_RatingBar = 0x7f0d0095;
public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0d0096;
public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0d0097;
public static final int Base_Widget_AppCompat_SearchView = 0x7f0d0098;
public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0d0099;
public static final int Base_Widget_AppCompat_SeekBar = 0x7f0d009a;
public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0d009b;
public static final int Base_Widget_AppCompat_Spinner = 0x7f0d009c;
public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0d009d;
public static final int Base_Widget_AppCompat_TextView = 0x7f0d009e;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0d009f;
public static final int Base_Widget_AppCompat_Toolbar = 0x7f0d00a0;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0d00a1;
public static final int Platform_AppCompat = 0x7f0d00a2;
public static final int Platform_AppCompat_Light = 0x7f0d00a3;
public static final int Platform_ThemeOverlay_AppCompat = 0x7f0d00a4;
public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0d00a5;
public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0d00a6;
public static final int Platform_V21_AppCompat = 0x7f0d00a7;
public static final int Platform_V21_AppCompat_Light = 0x7f0d00a8;
public static final int Platform_V25_AppCompat = 0x7f0d00a9;
public static final int Platform_V25_AppCompat_Light = 0x7f0d00aa;
public static final int Platform_Widget_AppCompat_Spinner = 0x7f0d00ab;
public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0d00ac;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0d00ad;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0d00ae;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0d00af;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0d00b0;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 0x7f0d00b1;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 0x7f0d00b2;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0d00b3;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 0x7f0d00b4;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0d00ba;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0d00b5;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0d00b6;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0d00b7;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0d00b8;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0d00b9;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0d00bb;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0d00bc;
public static final int TextAppearance_AppCompat = 0x7f0d00bd;
public static final int TextAppearance_AppCompat_Body1 = 0x7f0d00be;
public static final int TextAppearance_AppCompat_Body2 = 0x7f0d00bf;
public static final int TextAppearance_AppCompat_Button = 0x7f0d00c0;
public static final int TextAppearance_AppCompat_Caption = 0x7f0d00c1;
public static final int TextAppearance_AppCompat_Display1 = 0x7f0d00c2;
public static final int TextAppearance_AppCompat_Display2 = 0x7f0d00c3;
public static final int TextAppearance_AppCompat_Display3 = 0x7f0d00c4;
public static final int TextAppearance_AppCompat_Display4 = 0x7f0d00c5;
public static final int TextAppearance_AppCompat_Headline = 0x7f0d00c6;
public static final int TextAppearance_AppCompat_Inverse = 0x7f0d00c7;
public static final int TextAppearance_AppCompat_Large = 0x7f0d00c8;
public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0d00c9;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0d00ca;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0d00cb;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0d00cc;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0d00cd;
public static final int TextAppearance_AppCompat_Medium = 0x7f0d00ce;
public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0d00cf;
public static final int TextAppearance_AppCompat_Menu = 0x7f0d00d0;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0d00d1;
public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0d00d2;
public static final int TextAppearance_AppCompat_Small = 0x7f0d00d3;
public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0d00d4;
public static final int TextAppearance_AppCompat_Subhead = 0x7f0d00d5;
public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0d00d6;
public static final int TextAppearance_AppCompat_Title = 0x7f0d00d7;
public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0d00d8;
public static final int TextAppearance_AppCompat_Tooltip = 0x7f0d00d9;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0d00da;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0d00db;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0d00dc;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0d00dd;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0d00de;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0d00df;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0d00e0;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0d00e1;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0d00e2;
public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0d00e3;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0d00e4;
public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0d00e5;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0d00e6;
public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0d00e7;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0d00e8;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0d00e9;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0d00ea;
public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0d00eb;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0d00ec;
public static final int TextAppearance_Compat_Notification = 0x7f0d00ed;
public static final int TextAppearance_Compat_Notification_Info = 0x7f0d00ee;
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0d00ef;
public static final int TextAppearance_Compat_Notification_Time = 0x7f0d00f0;
public static final int TextAppearance_Compat_Notification_Title = 0x7f0d00f1;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0d00f2;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0d00f3;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0d00f4;
public static final int ThemeOverlay_AppCompat = 0x7f0d010a;
public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0d010b;
public static final int ThemeOverlay_AppCompat_Dark = 0x7f0d010c;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0d010d;
public static final int ThemeOverlay_AppCompat_DayNight = 0x7f0d010e;
public static final int ThemeOverlay_AppCompat_DayNight_ActionBar = 0x7f0d010f;
public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0d0110;
public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0d0111;
public static final int ThemeOverlay_AppCompat_Light = 0x7f0d0112;
public static final int Theme_AppCompat = 0x7f0d00f5;
public static final int Theme_AppCompat_CompactMenu = 0x7f0d00f6;
public static final int Theme_AppCompat_DayNight = 0x7f0d00f7;
public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0d00f8;
public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0d00f9;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0d00fc;
public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0d00fa;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0d00fb;
public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0d00fd;
public static final int Theme_AppCompat_Dialog = 0x7f0d00fe;
public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0d0101;
public static final int Theme_AppCompat_Dialog_Alert = 0x7f0d00ff;
public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0d0100;
public static final int Theme_AppCompat_Light = 0x7f0d0102;
public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0d0103;
public static final int Theme_AppCompat_Light_Dialog = 0x7f0d0104;
public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0d0107;
public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0d0105;
public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0d0106;
public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0d0108;
public static final int Theme_AppCompat_NoActionBar = 0x7f0d0109;
public static final int Widget_AppCompat_ActionBar = 0x7f0d0113;
public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0d0114;
public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0d0115;
public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0d0116;
public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0d0117;
public static final int Widget_AppCompat_ActionButton = 0x7f0d0118;
public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0d0119;
public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0d011a;
public static final int Widget_AppCompat_ActionMode = 0x7f0d011b;
public static final int Widget_AppCompat_ActivityChooserView = 0x7f0d011c;
public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0d011d;
public static final int Widget_AppCompat_Button = 0x7f0d011e;
public static final int Widget_AppCompat_ButtonBar = 0x7f0d0124;
public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0d0125;
public static final int Widget_AppCompat_Button_Borderless = 0x7f0d011f;
public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0d0120;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0d0121;
public static final int Widget_AppCompat_Button_Colored = 0x7f0d0122;
public static final int Widget_AppCompat_Button_Small = 0x7f0d0123;
public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0d0126;
public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0d0127;
public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0d0128;
public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0d0129;
public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0d012a;
public static final int Widget_AppCompat_EditText = 0x7f0d012b;
public static final int Widget_AppCompat_ImageButton = 0x7f0d012c;
public static final int Widget_AppCompat_Light_ActionBar = 0x7f0d012d;
public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0d012e;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0d012f;
public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0d0130;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0d0131;
public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0d0132;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0d0133;
public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0d0134;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0d0135;
public static final int Widget_AppCompat_Light_ActionButton = 0x7f0d0136;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0d0137;
public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0d0138;
public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0d0139;
public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0d013a;
public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0d013b;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0d013c;
public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0d013d;
public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0d013e;
public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0d013f;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0d0140;
public static final int Widget_AppCompat_Light_SearchView = 0x7f0d0141;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0d0142;
public static final int Widget_AppCompat_ListMenuView = 0x7f0d0143;
public static final int Widget_AppCompat_ListPopupWindow = 0x7f0d0144;
public static final int Widget_AppCompat_ListView = 0x7f0d0145;
public static final int Widget_AppCompat_ListView_DropDown = 0x7f0d0146;
public static final int Widget_AppCompat_ListView_Menu = 0x7f0d0147;
public static final int Widget_AppCompat_PopupMenu = 0x7f0d0148;
public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0d0149;
public static final int Widget_AppCompat_PopupWindow = 0x7f0d014a;
public static final int Widget_AppCompat_ProgressBar = 0x7f0d014b;
public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0d014c;
public static final int Widget_AppCompat_RatingBar = 0x7f0d014d;
public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0d014e;
public static final int Widget_AppCompat_RatingBar_Small = 0x7f0d014f;
public static final int Widget_AppCompat_SearchView = 0x7f0d0150;
public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0d0151;
public static final int Widget_AppCompat_SeekBar = 0x7f0d0152;
public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0d0153;
public static final int Widget_AppCompat_Spinner = 0x7f0d0154;
public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0d0155;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0d0156;
public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0d0157;
public static final int Widget_AppCompat_TextView = 0x7f0d0158;
public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0d0159;
public static final int Widget_AppCompat_Toolbar = 0x7f0d015a;
public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0d015b;
public static final int Widget_Compat_NotificationActionContainer = 0x7f0d015c;
public static final int Widget_Compat_NotificationActionText = 0x7f0d015d;
}
public static final class styleable {
private styleable() {}
public static final int[] ActionBar = { 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020062, 0x7f020063, 0x7f020065, 0x7f02006a, 0x7f02006b, 0x7f02007e, 0x7f02008f, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020098, 0x7f02009b, 0x7f0200e0, 0x7f0200e8, 0x7f0200f3, 0x7f0200f6, 0x7f0200f7, 0x7f020111, 0x7f020114, 0x7f020130, 0x7f020139 };
public static final int ActionBar_background = 0;
public static final int ActionBar_backgroundSplit = 1;
public static final int ActionBar_backgroundStacked = 2;
public static final int ActionBar_contentInsetEnd = 3;
public static final int ActionBar_contentInsetEndWithActions = 4;
public static final int ActionBar_contentInsetLeft = 5;
public static final int ActionBar_contentInsetRight = 6;
public static final int ActionBar_contentInsetStart = 7;
public static final int ActionBar_contentInsetStartWithNavigation = 8;
public static final int ActionBar_customNavigationLayout = 9;
public static final int ActionBar_displayOptions = 10;
public static final int ActionBar_divider = 11;
public static final int ActionBar_elevation = 12;
public static final int ActionBar_height = 13;
public static final int ActionBar_hideOnContentScroll = 14;
public static final int ActionBar_homeAsUpIndicator = 15;
public static final int ActionBar_homeLayout = 16;
public static final int ActionBar_icon = 17;
public static final int ActionBar_indeterminateProgressStyle = 18;
public static final int ActionBar_itemPadding = 19;
public static final int ActionBar_logo = 20;
public static final int ActionBar_navigationMode = 21;
public static final int ActionBar_popupTheme = 22;
public static final int ActionBar_progressBarPadding = 23;
public static final int ActionBar_progressBarStyle = 24;
public static final int ActionBar_subtitle = 25;
public static final int ActionBar_subtitleTextStyle = 26;
public static final int ActionBar_title = 27;
public static final int ActionBar_titleTextStyle = 28;
public static final int[] ActionBarLayout = { 0x10100b3 };
public static final int ActionBarLayout_android_layout_gravity = 0;
public static final int[] ActionMenuItemView = { 0x101013f };
public static final int ActionMenuItemView_android_minWidth = 0;
public static final int[] ActionMenuView = { };
public static final int[] ActionMode = { 0x7f020031, 0x7f020032, 0x7f02004b, 0x7f02008f, 0x7f020114, 0x7f020139 };
public static final int ActionMode_background = 0;
public static final int ActionMode_backgroundSplit = 1;
public static final int ActionMode_closeItemLayout = 2;
public static final int ActionMode_height = 3;
public static final int ActionMode_subtitleTextStyle = 4;
public static final int ActionMode_titleTextStyle = 5;
public static final int[] ActivityChooserView = { 0x7f020080, 0x7f020099 };
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0;
public static final int ActivityChooserView_initialActivityCount = 1;
public static final int[] AlertDialog = { 0x10100f2, 0x7f020041, 0x7f020042, 0x7f0200d5, 0x7f0200d6, 0x7f0200e5, 0x7f020107, 0x7f020108 };
public static final int AlertDialog_android_layout = 0;
public static final int AlertDialog_buttonIconDimen = 1;
public static final int AlertDialog_buttonPanelSideLayout = 2;
public static final int AlertDialog_listItemLayout = 3;
public static final int AlertDialog_listLayout = 4;
public static final int AlertDialog_multiChoiceItemLayout = 5;
public static final int AlertDialog_showTitle = 6;
public static final int AlertDialog_singleChoiceItemLayout = 7;
public static final int[] AnimatedStateListDrawableCompat = { 0x101011c, 0x1010194, 0x1010195, 0x1010196, 0x101030c, 0x101030d };
public static final int AnimatedStateListDrawableCompat_android_dither = 0;
public static final int AnimatedStateListDrawableCompat_android_visible = 1;
public static final int AnimatedStateListDrawableCompat_android_variablePadding = 2;
public static final int AnimatedStateListDrawableCompat_android_constantSize = 3;
public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4;
public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5;
public static final int[] AnimatedStateListDrawableItem = { 0x10100d0, 0x1010199 };
public static final int AnimatedStateListDrawableItem_android_id = 0;
public static final int AnimatedStateListDrawableItem_android_drawable = 1;
public static final int[] AnimatedStateListDrawableTransition = { 0x1010199, 0x1010449, 0x101044a, 0x101044b };
public static final int AnimatedStateListDrawableTransition_android_drawable = 0;
public static final int AnimatedStateListDrawableTransition_android_toId = 1;
public static final int AnimatedStateListDrawableTransition_android_fromId = 2;
public static final int AnimatedStateListDrawableTransition_android_reversible = 3;
public static final int[] AppCompatImageView = { 0x1010119, 0x7f02010d, 0x7f02012e, 0x7f02012f };
public static final int AppCompatImageView_android_src = 0;
public static final int AppCompatImageView_srcCompat = 1;
public static final int AppCompatImageView_tint = 2;
public static final int AppCompatImageView_tintMode = 3;
public static final int[] AppCompatSeekBar = { 0x1010142, 0x7f02012b, 0x7f02012c, 0x7f02012d };
public static final int AppCompatSeekBar_android_thumb = 0;
public static final int AppCompatSeekBar_tickMark = 1;
public static final int AppCompatSeekBar_tickMarkTint = 2;
public static final int AppCompatSeekBar_tickMarkTintMode = 3;
public static final int[] AppCompatTextHelper = { 0x1010034, 0x101016d, 0x101016e, 0x101016f, 0x1010170, 0x1010392, 0x1010393 };
public static final int AppCompatTextHelper_android_textAppearance = 0;
public static final int AppCompatTextHelper_android_drawableTop = 1;
public static final int AppCompatTextHelper_android_drawableBottom = 2;
public static final int AppCompatTextHelper_android_drawableLeft = 3;
public static final int AppCompatTextHelper_android_drawableRight = 4;
public static final int AppCompatTextHelper_android_drawableStart = 5;
public static final int AppCompatTextHelper_android_drawableEnd = 6;
public static final int[] AppCompatTextView = { 0x1010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020074, 0x7f020075, 0x7f020076, 0x7f020077, 0x7f020081, 0x7f020083, 0x7f02008b, 0x7f02009c, 0x7f0200d0, 0x7f02011a, 0x7f020125 };
public static final int AppCompatTextView_android_textAppearance = 0;
public static final int AppCompatTextView_autoSizeMaxTextSize = 1;
public static final int AppCompatTextView_autoSizeMinTextSize = 2;
public static final int AppCompatTextView_autoSizePresetSizes = 3;
public static final int AppCompatTextView_autoSizeStepGranularity = 4;
public static final int AppCompatTextView_autoSizeTextType = 5;
public static final int AppCompatTextView_drawableBottomCompat = 6;
public static final int AppCompatTextView_drawableEndCompat = 7;
public static final int AppCompatTextView_drawableLeftCompat = 8;
public static final int AppCompatTextView_drawableRightCompat = 9;
public static final int AppCompatTextView_drawableStartCompat = 10;
public static final int AppCompatTextView_drawableTint = 11;
public static final int AppCompatTextView_drawableTintMode = 12;
public static final int AppCompatTextView_drawableTopCompat = 13;
public static final int AppCompatTextView_firstBaselineToTopHeight = 14;
public static final int AppCompatTextView_fontFamily = 15;
public static final int AppCompatTextView_fontVariationSettings = 16;
public static final int AppCompatTextView_lastBaselineToBottomHeight = 17;
public static final int AppCompatTextView_lineHeight = 18;
public static final int AppCompatTextView_textAllCaps = 19;
public static final int AppCompatTextView_textLocale = 20;
public static final int[] AppCompatTheme = { 0x1010057, 0x10100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f020043, 0x7f020044, 0x7f020048, 0x7f020049, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020057, 0x7f020058, 0x7f020064, 0x7f020067, 0x7f020068, 0x7f020069, 0x7f02006c, 0x7f02006e, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d, 0x7f020091, 0x7f020097, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200db, 0x7f0200dc, 0x7f0200dd, 0x7f0200de, 0x7f0200df, 0x7f0200ef, 0x7f0200f0, 0x7f0200f1, 0x7f0200f2, 0x7f0200f4, 0x7f0200fa, 0x7f0200fb, 0x7f0200fc, 0x7f0200fd, 0x7f020100, 0x7f020101, 0x7f020102, 0x7f020103, 0x7f02010a, 0x7f02010b, 0x7f020118, 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, 0x7f02011f, 0x7f020120, 0x7f020121, 0x7f020122, 0x7f020123, 0x7f020124, 0x7f02013a, 0x7f02013b, 0x7f02013c, 0x7f02013d, 0x7f020143, 0x7f020145, 0x7f020146, 0x7f020147, 0x7f020148, 0x7f020149, 0x7f02014a, 0x7f02014b, 0x7f02014c, 0x7f02014d, 0x7f02014e };
public static final int AppCompatTheme_android_windowIsFloating = 0;
public static final int AppCompatTheme_android_windowAnimationStyle = 1;
public static final int AppCompatTheme_actionBarDivider = 2;
public static final int AppCompatTheme_actionBarItemBackground = 3;
public static final int AppCompatTheme_actionBarPopupTheme = 4;
public static final int AppCompatTheme_actionBarSize = 5;
public static final int AppCompatTheme_actionBarSplitStyle = 6;
public static final int AppCompatTheme_actionBarStyle = 7;
public static final int AppCompatTheme_actionBarTabBarStyle = 8;
public static final int AppCompatTheme_actionBarTabStyle = 9;
public static final int AppCompatTheme_actionBarTabTextStyle = 10;
public static final int AppCompatTheme_actionBarTheme = 11;
public static final int AppCompatTheme_actionBarWidgetTheme = 12;
public static final int AppCompatTheme_actionButtonStyle = 13;
public static final int AppCompatTheme_actionDropDownStyle = 14;
public static final int AppCompatTheme_actionMenuTextAppearance = 15;
public static final int AppCompatTheme_actionMenuTextColor = 16;
public static final int AppCompatTheme_actionModeBackground = 17;
public static final int AppCompatTheme_actionModeCloseButtonStyle = 18;
public static final int AppCompatTheme_actionModeCloseDrawable = 19;
public static final int AppCompatTheme_actionModeCopyDrawable = 20;
public static final int AppCompatTheme_actionModeCutDrawable = 21;
public static final int AppCompatTheme_actionModeFindDrawable = 22;
public static final int AppCompatTheme_actionModePasteDrawable = 23;
public static final int AppCompatTheme_actionModePopupWindowStyle = 24;
public static final int AppCompatTheme_actionModeSelectAllDrawable = 25;
public static final int AppCompatTheme_actionModeShareDrawable = 26;
public static final int AppCompatTheme_actionModeSplitBackground = 27;
public static final int AppCompatTheme_actionModeStyle = 28;
public static final int AppCompatTheme_actionModeWebSearchDrawable = 29;
public static final int AppCompatTheme_actionOverflowButtonStyle = 30;
public static final int AppCompatTheme_actionOverflowMenuStyle = 31;
public static final int AppCompatTheme_activityChooserViewStyle = 32;
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33;
public static final int AppCompatTheme_alertDialogCenterButtons = 34;
public static final int AppCompatTheme_alertDialogStyle = 35;
public static final int AppCompatTheme_alertDialogTheme = 36;
public static final int AppCompatTheme_autoCompleteTextViewStyle = 37;
public static final int AppCompatTheme_borderlessButtonStyle = 38;
public static final int AppCompatTheme_buttonBarButtonStyle = 39;
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40;
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41;
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42;
public static final int AppCompatTheme_buttonBarStyle = 43;
public static final int AppCompatTheme_buttonStyle = 44;
public static final int AppCompatTheme_buttonStyleSmall = 45;
public static final int AppCompatTheme_checkboxStyle = 46;
public static final int AppCompatTheme_checkedTextViewStyle = 47;
public static final int AppCompatTheme_colorAccent = 48;
public static final int AppCompatTheme_colorBackgroundFloating = 49;
public static final int AppCompatTheme_colorButtonNormal = 50;
public static final int AppCompatTheme_colorControlActivated = 51;
public static final int AppCompatTheme_colorControlHighlight = 52;
public static final int AppCompatTheme_colorControlNormal = 53;
public static final int AppCompatTheme_colorError = 54;
public static final int AppCompatTheme_colorPrimary = 55;
public static final int AppCompatTheme_colorPrimaryDark = 56;
public static final int AppCompatTheme_colorSwitchThumbNormal = 57;
public static final int AppCompatTheme_controlBackground = 58;
public static final int AppCompatTheme_dialogCornerRadius = 59;
public static final int AppCompatTheme_dialogPreferredPadding = 60;
public static final int AppCompatTheme_dialogTheme = 61;
public static final int AppCompatTheme_dividerHorizontal = 62;
public static final int AppCompatTheme_dividerVertical = 63;
public static final int AppCompatTheme_dropDownListViewStyle = 64;
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 65;
public static final int AppCompatTheme_editTextBackground = 66;
public static final int AppCompatTheme_editTextColor = 67;
public static final int AppCompatTheme_editTextStyle = 68;
public static final int AppCompatTheme_homeAsUpIndicator = 69;
public static final int AppCompatTheme_imageButtonStyle = 70;
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 71;
public static final int AppCompatTheme_listChoiceIndicatorMultipleAnimated = 72;
public static final int AppCompatTheme_listChoiceIndicatorSingleAnimated = 73;
public static final int AppCompatTheme_listDividerAlertDialog = 74;
public static final int AppCompatTheme_listMenuViewStyle = 75;
public static final int AppCompatTheme_listPopupWindowStyle = 76;
public static final int AppCompatTheme_listPreferredItemHeight = 77;
public static final int AppCompatTheme_listPreferredItemHeightLarge = 78;
public static final int AppCompatTheme_listPreferredItemHeightSmall = 79;
public static final int AppCompatTheme_listPreferredItemPaddingEnd = 80;
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 81;
public static final int AppCompatTheme_listPreferredItemPaddingRight = 82;
public static final int AppCompatTheme_listPreferredItemPaddingStart = 83;
public static final int AppCompatTheme_panelBackground = 84;
public static final int AppCompatTheme_panelMenuListTheme = 85;
public static final int AppCompatTheme_panelMenuListWidth = 86;
public static final int AppCompatTheme_popupMenuStyle = 87;
public static final int AppCompatTheme_popupWindowStyle = 88;
public static final int AppCompatTheme_radioButtonStyle = 89;
public static final int AppCompatTheme_ratingBarStyle = 90;
public static final int AppCompatTheme_ratingBarStyleIndicator = 91;
public static final int AppCompatTheme_ratingBarStyleSmall = 92;
public static final int AppCompatTheme_searchViewStyle = 93;
public static final int AppCompatTheme_seekBarStyle = 94;
public static final int AppCompatTheme_selectableItemBackground = 95;
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 96;
public static final int AppCompatTheme_spinnerDropDownItemStyle = 97;
public static final int AppCompatTheme_spinnerStyle = 98;
public static final int AppCompatTheme_switchStyle = 99;
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 100;
public static final int AppCompatTheme_textAppearanceListItem = 101;
public static final int AppCompatTheme_textAppearanceListItemSecondary = 102;
public static final int AppCompatTheme_textAppearanceListItemSmall = 103;
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 104;
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 105;
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 106;
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 107;
public static final int AppCompatTheme_textColorAlertDialogListItem = 108;
public static final int AppCompatTheme_textColorSearchUrl = 109;
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 110;
public static final int AppCompatTheme_toolbarStyle = 111;
public static final int AppCompatTheme_tooltipForegroundColor = 112;
public static final int AppCompatTheme_tooltipFrameBackground = 113;
public static final int AppCompatTheme_viewInflaterClass = 114;
public static final int AppCompatTheme_windowActionBar = 115;
public static final int AppCompatTheme_windowActionBarOverlay = 116;
public static final int AppCompatTheme_windowActionModeOverlay = 117;
public static final int AppCompatTheme_windowFixedHeightMajor = 118;
public static final int AppCompatTheme_windowFixedHeightMinor = 119;
public static final int AppCompatTheme_windowFixedWidthMajor = 120;
public static final int AppCompatTheme_windowFixedWidthMinor = 121;
public static final int AppCompatTheme_windowMinWidthMajor = 122;
public static final int AppCompatTheme_windowMinWidthMinor = 123;
public static final int AppCompatTheme_windowNoTitle = 124;
public static final int[] ButtonBarLayout = { 0x7f020026 };
public static final int ButtonBarLayout_allowStacking = 0;
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[] CompoundButton = { 0x1010107, 0x7f02003f, 0x7f020045, 0x7f020046 };
public static final int CompoundButton_android_button = 0;
public static final int CompoundButton_buttonCompat = 1;
public static final int CompoundButton_buttonTint = 2;
public static final int CompoundButton_buttonTintMode = 3;
public static final int[] DrawerArrowToggle = { 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004e, 0x7f020073, 0x7f02008d, 0x7f020109, 0x7f020127 };
public static final int DrawerArrowToggle_arrowHeadLength = 0;
public static final int DrawerArrowToggle_arrowShaftLength = 1;
public static final int DrawerArrowToggle_barLength = 2;
public static final int DrawerArrowToggle_color = 3;
public static final int DrawerArrowToggle_drawableSize = 4;
public static final int DrawerArrowToggle_gapBetweenBars = 5;
public static final int DrawerArrowToggle_spinBars = 6;
public static final int DrawerArrowToggle_thickness = 7;
public static final int[] FontFamily = { 0x7f020084, 0x7f020085, 0x7f020086, 0x7f020087, 0x7f020088, 0x7f020089 };
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, 0x7f020082, 0x7f02008a, 0x7f02008b, 0x7f02008c, 0x7f020142 };
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;
public static final int[] LinearLayoutCompat = { 0x10100af, 0x10100c4, 0x1010126, 0x1010127, 0x1010128, 0x7f02006b, 0x7f02006d, 0x7f0200e3, 0x7f020105 };
public static final int LinearLayoutCompat_android_gravity = 0;
public static final int LinearLayoutCompat_android_orientation = 1;
public static final int LinearLayoutCompat_android_baselineAligned = 2;
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
public static final int LinearLayoutCompat_android_weightSum = 4;
public static final int LinearLayoutCompat_divider = 5;
public static final int LinearLayoutCompat_dividerPadding = 6;
public static final int LinearLayoutCompat_measureWithLargestChild = 7;
public static final int LinearLayoutCompat_showDividers = 8;
public static final int[] LinearLayoutCompat_Layout = { 0x10100b3, 0x10100f4, 0x10100f5, 0x1010181 };
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
public static final int[] ListPopupWindow = { 0x10102ac, 0x10102ad };
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
public static final int[] MenuGroup = { 0x101000e, 0x10100d0, 0x1010194, 0x10101de, 0x10101df, 0x10101e0 };
public static final int MenuGroup_android_enabled = 0;
public static final int MenuGroup_android_id = 1;
public static final int MenuGroup_android_visible = 2;
public static final int MenuGroup_android_menuCategory = 3;
public static final int MenuGroup_android_orderInCategory = 4;
public static final int MenuGroup_android_checkableBehavior = 5;
public static final int[] MenuItem = { 0x1010002, 0x101000e, 0x10100d0, 0x1010106, 0x1010194, 0x10101de, 0x10101df, 0x10101e1, 0x10101e2, 0x10101e3, 0x10101e4, 0x10101e5, 0x101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f02005d, 0x7f020094, 0x7f020095, 0x7f0200e9, 0x7f020104, 0x7f02013e };
public static final int MenuItem_android_icon = 0;
public static final int MenuItem_android_enabled = 1;
public static final int MenuItem_android_id = 2;
public static final int MenuItem_android_checked = 3;
public static final int MenuItem_android_visible = 4;
public static final int MenuItem_android_menuCategory = 5;
public static final int MenuItem_android_orderInCategory = 6;
public static final int MenuItem_android_title = 7;
public static final int MenuItem_android_titleCondensed = 8;
public static final int MenuItem_android_alphabeticShortcut = 9;
public static final int MenuItem_android_numericShortcut = 10;
public static final int MenuItem_android_checkable = 11;
public static final int MenuItem_android_onClick = 12;
public static final int MenuItem_actionLayout = 13;
public static final int MenuItem_actionProviderClass = 14;
public static final int MenuItem_actionViewClass = 15;
public static final int MenuItem_alphabeticModifiers = 16;
public static final int MenuItem_contentDescription = 17;
public static final int MenuItem_iconTint = 18;
public static final int MenuItem_iconTintMode = 19;
public static final int MenuItem_numericModifiers = 20;
public static final int MenuItem_showAsAction = 21;
public static final int MenuItem_tooltipText = 22;
public static final int[] MenuView = { 0x10100ae, 0x101012c, 0x101012d, 0x101012e, 0x101012f, 0x1010130, 0x1010131, 0x7f0200f5, 0x7f02010f };
public static final int MenuView_android_windowAnimationStyle = 0;
public static final int MenuView_android_itemTextAppearance = 1;
public static final int MenuView_android_horizontalDivider = 2;
public static final int MenuView_android_verticalDivider = 3;
public static final int MenuView_android_headerBackground = 4;
public static final int MenuView_android_itemBackground = 5;
public static final int MenuView_android_itemIconDisabledAlpha = 6;
public static final int MenuView_preserveIconSpacing = 7;
public static final int MenuView_subMenuArrow = 8;
public static final int[] PopupWindow = { 0x1010176, 0x10102c9, 0x7f0200ea };
public static final int PopupWindow_android_popupBackground = 0;
public static final int PopupWindow_android_popupAnimationStyle = 1;
public static final int PopupWindow_overlapAnchor = 2;
public static final int[] PopupWindowBackgroundState = { 0x7f02010e };
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
public static final int[] RecycleListView = { 0x7f0200eb, 0x7f0200ee };
public static final int RecycleListView_paddingBottomNoButtons = 0;
public static final int RecycleListView_paddingTopNoTitle = 1;
public static final int[] SearchView = { 0x10100da, 0x101011f, 0x1010220, 0x1010264, 0x7f02004a, 0x7f020059, 0x7f020066, 0x7f02008e, 0x7f020096, 0x7f02009d, 0x7f0200f8, 0x7f0200f9, 0x7f0200fe, 0x7f0200ff, 0x7f020110, 0x7f020115, 0x7f020144 };
public static final int SearchView_android_focusable = 0;
public static final int SearchView_android_maxWidth = 1;
public static final int SearchView_android_inputType = 2;
public static final int SearchView_android_imeOptions = 3;
public static final int SearchView_closeIcon = 4;
public static final int SearchView_commitIcon = 5;
public static final int SearchView_defaultQueryHint = 6;
public static final int SearchView_goIcon = 7;
public static final int SearchView_iconifiedByDefault = 8;
public static final int SearchView_layout = 9;
public static final int SearchView_queryBackground = 10;
public static final int SearchView_queryHint = 11;
public static final int SearchView_searchHintIcon = 12;
public static final int SearchView_searchIcon = 13;
public static final int SearchView_submitBackground = 14;
public static final int SearchView_suggestionRowLayout = 15;
public static final int SearchView_voiceIcon = 16;
public static final int[] Spinner = { 0x10100b2, 0x1010176, 0x101017b, 0x1010262, 0x7f0200f3 };
public static final int Spinner_android_entries = 0;
public static final int Spinner_android_popupBackground = 1;
public static final int Spinner_android_prompt = 2;
public static final int Spinner_android_dropDownWidth = 3;
public static final int Spinner_popupTheme = 4;
public static final int[] StateListDrawable = { 0x101011c, 0x1010194, 0x1010195, 0x1010196, 0x101030c, 0x101030d };
public static final int StateListDrawable_android_dither = 0;
public static final int StateListDrawable_android_visible = 1;
public static final int StateListDrawable_android_variablePadding = 2;
public static final int StateListDrawable_android_constantSize = 3;
public static final int StateListDrawable_android_enterFadeDuration = 4;
public static final int StateListDrawable_android_exitFadeDuration = 5;
public static final int[] StateListDrawableItem = { 0x1010199 };
public static final int StateListDrawableItem_android_drawable = 0;
public static final int[] SwitchCompat = { 0x1010124, 0x1010125, 0x1010142, 0x7f020106, 0x7f02010c, 0x7f020116, 0x7f020117, 0x7f020119, 0x7f020128, 0x7f020129, 0x7f02012a, 0x7f02013f, 0x7f020140, 0x7f020141 };
public static final int SwitchCompat_android_textOn = 0;
public static final int SwitchCompat_android_textOff = 1;
public static final int SwitchCompat_android_thumb = 2;
public static final int SwitchCompat_showText = 3;
public static final int SwitchCompat_splitTrack = 4;
public static final int SwitchCompat_switchMinWidth = 5;
public static final int SwitchCompat_switchPadding = 6;
public static final int SwitchCompat_switchTextAppearance = 7;
public static final int SwitchCompat_thumbTextPadding = 8;
public static final int SwitchCompat_thumbTint = 9;
public static final int SwitchCompat_thumbTintMode = 10;
public static final int SwitchCompat_track = 11;
public static final int SwitchCompat_trackTint = 12;
public static final int SwitchCompat_trackTintMode = 13;
public static final int[] TextAppearance = { 0x1010095, 0x1010096, 0x1010097, 0x1010098, 0x101009a, 0x101009b, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x10103ac, 0x1010585, 0x7f020083, 0x7f02008b, 0x7f02011a, 0x7f020125 };
public static final int TextAppearance_android_textSize = 0;
public static final int TextAppearance_android_typeface = 1;
public static final int TextAppearance_android_textStyle = 2;
public static final int TextAppearance_android_textColor = 3;
public static final int TextAppearance_android_textColorHint = 4;
public static final int TextAppearance_android_textColorLink = 5;
public static final int TextAppearance_android_shadowColor = 6;
public static final int TextAppearance_android_shadowDx = 7;
public static final int TextAppearance_android_shadowDy = 8;
public static final int TextAppearance_android_shadowRadius = 9;
public static final int TextAppearance_android_fontFamily = 10;
public static final int TextAppearance_android_textFontWeight = 11;
public static final int TextAppearance_fontFamily = 12;
public static final int TextAppearance_fontVariationSettings = 13;
public static final int TextAppearance_textAllCaps = 14;
public static final int TextAppearance_textLocale = 15;
public static final int[] Toolbar = { 0x10100af, 0x1010140, 0x7f020040, 0x7f02004c, 0x7f02004d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020062, 0x7f020063, 0x7f0200e0, 0x7f0200e1, 0x7f0200e2, 0x7f0200e4, 0x7f0200e6, 0x7f0200e7, 0x7f0200f3, 0x7f020111, 0x7f020112, 0x7f020113, 0x7f020130, 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, 0x7f020135, 0x7f020136, 0x7f020137, 0x7f020138 };
public static final int Toolbar_android_gravity = 0;
public static final int Toolbar_android_minHeight = 1;
public static final int Toolbar_buttonGravity = 2;
public static final int Toolbar_collapseContentDescription = 3;
public static final int Toolbar_collapseIcon = 4;
public static final int Toolbar_contentInsetEnd = 5;
public static final int Toolbar_contentInsetEndWithActions = 6;
public static final int Toolbar_contentInsetLeft = 7;
public static final int Toolbar_contentInsetRight = 8;
public static final int Toolbar_contentInsetStart = 9;
public static final int Toolbar_contentInsetStartWithNavigation = 10;
public static final int Toolbar_logo = 11;
public static final int Toolbar_logoDescription = 12;
public static final int Toolbar_maxButtonHeight = 13;
public static final int Toolbar_menu = 14;
public static final int Toolbar_navigationContentDescription = 15;
public static final int Toolbar_navigationIcon = 16;
public static final int Toolbar_popupTheme = 17;
public static final int Toolbar_subtitle = 18;
public static final int Toolbar_subtitleTextAppearance = 19;
public static final int Toolbar_subtitleTextColor = 20;
public static final int Toolbar_title = 21;
public static final int Toolbar_titleMargin = 22;
public static final int Toolbar_titleMarginBottom = 23;
public static final int Toolbar_titleMarginEnd = 24;
public static final int Toolbar_titleMarginStart = 25;
public static final int Toolbar_titleMarginTop = 26;
public static final int Toolbar_titleMargins = 27;
public static final int Toolbar_titleTextAppearance = 28;
public static final int Toolbar_titleTextColor = 29;
public static final int[] View = { 0x1010000, 0x10100da, 0x7f0200ec, 0x7f0200ed, 0x7f020126 };
public static final int View_android_theme = 0;
public static final int View_android_focusable = 1;
public static final int View_paddingEnd = 2;
public static final int View_paddingStart = 3;
public static final int View_theme = 4;
public static final int[] ViewBackgroundHelper = { 0x10100d4, 0x7f020034, 0x7f020035 };
public static final int ViewBackgroundHelper_android_background = 0;
public static final int ViewBackgroundHelper_backgroundTint = 1;
public static final int ViewBackgroundHelper_backgroundTintMode = 2;
public static final int[] ViewStubCompat = { 0x10100d0, 0x10100f2, 0x10100f3 };
public static final int ViewStubCompat_android_id = 0;
public static final int ViewStubCompat_android_layout = 1;
public static final int ViewStubCompat_android_inflatedId = 2;
}
}
| [
"kurniawan10tkjc@gmail.com"
] | kurniawan10tkjc@gmail.com |
3cc899aef843fde324439738416adb67cc87e2da | c6586094ffdee11b69a6df3ea796d976ba9ec29b | /src/model/OrderItemBook.java | 971abc1760428d7458812a01d57a1f48ea0cc3bf | [] | no_license | 1silvertiger/BestBooks | 3decf27cdd1592cebfd964bd2b3539e54248a8c2 | 5ed3d52acdeadcbc47de22f11c3b68f73a629526 | refs/heads/master | 2021-09-01T16:45:02.130300 | 2017-12-27T23:47:36 | 2017-12-27T23:47:36 | 115,566,191 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,128 | java | package model;
/**
* an object with information from
* order items and books
* @author Dakota
*
*/
public class OrderItemBook extends Book {
/** the object's order id. */
private int orderID = 0;
/** the object's quantity. */
private int quantity = 0;
/** the object's order item id. */
private int orderItemID = 0;
/** the object's sale price. */
private double salePrice = 0;
/**
* @return the orderID
*/
public int getOrderID() {
return orderID;
}
/**
* @param pOrderID
* the orderID to set
*/
public void setOrderID(final int pOrderID) {
orderID = pOrderID;
}
/**
* @return the quantity
*/
public int getQuantity() {
return quantity;
}
/**
* @param pQuantity
* the quantity to set
*/
public void setQuantity(final int pQuantity) {
quantity = pQuantity;
}
/**
* @return the orderItemID
*/
public int getOrderItemID() {
return orderItemID;
}
/**
* @param pOrderItemID
* the orderItemID to set
*/
public void setOrderItemID(final int pOrderItemID) {
orderItemID = pOrderItemID;
}
/* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = prime * result + orderID;
result = prime * result + orderItemID;
result = prime * result + quantity;
return result;
}
/* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!super.equals(obj)) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
OrderItemBook other = (OrderItemBook) obj;
if (orderID != other.orderID) {
return false;
}
if (orderItemID != other.orderItemID) {
return false;
}
if (quantity != other.quantity) {
return false;
}
return true;
}
/**
* @return the salePrice
*/
public double getSalePrice() {
return salePrice;
}
/**
* @param salePrice the salePrice to set
*/
public void setSalePrice(double salePrice) {
this.salePrice = salePrice;
}
}
| [
"1silvertiger@gmail.com"
] | 1silvertiger@gmail.com |
349659c4f98fd803f4556cc0aaee96bbf7b6da6f | 82ac6502313f833d55ff926b70b12cac35495ab6 | /basic-syntax/examples/PageCountDemoApp.java | 45d73ee507b2179addc4b247df8a58fb0c83c1f0 | [] | no_license | jessepye/java-drills | 6b01710242816b349a1b4ff6890822b2dc502be1 | 877a2af5653f50972c67c8e2d4d27c24d49cd200 | refs/heads/master | 2023-04-19T13:44:27.405861 | 2021-04-28T22:12:36 | 2021-04-28T22:12:36 | 362,586,791 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 317 | java | public class PageCountDemoApp {
public static void main(String[] args) {
System.out.print("PageCount starting value: ");
System.out.println(PageCount.count);
PageCount.count++;
PageCount.count++;
System.out.print("PageCount ending value: ");
System.out.println(PageCount.count);
}
} | [
"jeff@galvanize.com"
] | jeff@galvanize.com |
3fc80435be10d25f681179686b50ec3aae1fefae | 26f5ce85b989d6aa1808d29626a170c514fcbad5 | /aplikasi-pos/src/main/java/com/pos/demo/KantorCabangImporterDemo.java | 755e1a4ec0a1226aa71f44da16c81070e157d074 | [] | no_license | myusrul/TrainingJava | da0ef336f8775bc025c1be4f80a259809f8947f5 | 30d1a01d12cf144c717f54971c061363a3a044fa | refs/heads/master | 2021-01-23T08:38:40.967182 | 2014-09-15T04:42:30 | 2014-09-15T04:42:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,288 | 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 com.pos.demo;
import com.pos.domain.KantorCabang;
import com.pos.importer.KantorCabangImporter;
import java.io.File;
import java.util.List;
/**
*
* @author CEISA-DJBC
*/
public class KantorCabangImporterDemo {
public static void main(String[] args) {
File f = new File("src/main/resources/kantorcabang.csv");
KantorCabangImporter pi = new KantorCabangImporter();
List<KantorCabang> hasil = pi.importFile(f);
System.out.println("======== Hasil : " + hasil.size() + " records ===========");
for (KantorCabang kantorCabang : hasil) {
System.out.println("ID : " + kantorCabang.getId_kantorCbg());
System.out.println("Kode : " + kantorCabang.getKode_kantorCbg());
System.out.println("Nama : " + kantorCabang.getNama_kantorCbg());
System.out.println("Alamat : " + kantorCabang.getAlamat_kantorCbg());
System.out.println("No. Telepeon : " + kantorCabang.getNoTelp_kantorCbg());
System.out.println("Kepala Kantor : " + kantorCabang.getNamaKepala_kantorCbg());
}
}
}
| [
"myhan99@gmail.com"
] | myhan99@gmail.com |
288324e31e338e7a202c091bf6072fd056d92d28 | 56fb3dd3e5a6d582d5fb7dc8f3ac50f927ca716d | /src/specification/operators/AndNotSpecification.java | 1e2b1e8bd928f815716bb7b71e70f96e1f6c08d9 | [] | no_license | PapiHack/specification-pattern-generic | 724d0cfde54fc3312f812c809340dd49ebdc848d | 08e5727c1220551ff18cbc855dad1fa9d71b899b | refs/heads/master | 2022-11-22T16:02:45.679783 | 2020-07-31T11:25:22 | 2020-07-31T11:25:22 | 283,854,203 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,132 | java | package specification.operators;
import specification.contacts.CompositeSpecification;
import specification.contacts.Specification;
/**
*
* @author PapiHack
* @version 1.0.0
* @since 07/2020
*
*/
public class AndNotSpecification<T> extends CompositeSpecification<T>
{
private Specification<T> leftSpecification;
private Specification<T> rightSpecification;
public AndNotSpecification(Specification<T> left, Specification<T> right)
{
this.setLeftSpecification(left);
this.setRightSpecification(right);
}
public Specification<T> getLeftSpecification()
{
return this.leftSpecification;
}
public void setLeftSpecification(Specification<T> leftSpecification)
{
this.leftSpecification = leftSpecification;
}
public Specification<T> getRightSpecification()
{
return this.rightSpecification;
}
public void setRightSpecification(Specification<T> rightSpecification)
{
this.rightSpecification = rightSpecification;
}
@Override
public boolean isSatisfiedBy(T candidate)
{
return this.leftSpecification.isSatisfiedBy(candidate) && !this.rightSpecification.isSatisfiedBy(candidate);
}
}
| [
"mssmbaye@gmail.com"
] | mssmbaye@gmail.com |
5d478d8b26b0290b0418ffd58962152811e16f42 | 5db9432c35b509684629db8df0854be1df06563b | /sotuken/src/sotuken/KHome.java | 31f5de4fdb83bc20dff1071773720df4c2308ac5 | [] | no_license | Jc21-170021/sotuken_team1 | d5dcdac1829a4bd5cf8fdfab9a1366dfe91a41f2 | ff19576f9d8def8a10ee78992051fee28b3fca57 | refs/heads/master | 2020-11-26T06:03:08.107212 | 2019-12-16T07:35:48 | 2019-12-16T07:35:48 | 228,986,060 | 0 | 0 | null | 2019-12-19T06:02:09 | 2019-12-19T06:02:09 | null | SHIFT_JIS | Java | false | false | 2,892 | java | package sotuken;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
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;
/**
* Servlet implementation class KHome
*/
@WebServlet("/KHome")
public class KHome extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public KHome() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// 該当するオラクルデータベースに対して、SELECT文を実行する。結果は変数「rs」に入れている。
try {
final String driverName = "oracle.jdbc.driver.OracleDriver";
final String url = "jdbc:oracle:thin:@192.168.54.191:1521/orcl";
final String id = "TESTUSER";
final String pass = "testuser";
Class.forName(driverName);
Connection connection=DriverManager.getConnection(url,id,pass);
PreparedStatement st =
connection.prepareStatement(
"select mosikomi.m_no, s_name, g_no, juken_no, kigen, s_date from nyukingo left outer join mosikomi on nyukingo.m_no = mosikomi.m_no left outer join siken on mosikomi.s_no = siken.s_no where juken_flg = '受験前' order by mosikomi.s_no"
);
// SELECT S_NAME, G_NO, JUKEN_NO, KIGEN, S_DATE FROM NYUKINGO N LEFT OUTER JOIN MOSIKOMI M ON N.M_NO = M.M_NO LEFT OUTER JOIN SIKEN S ON M.S_NO = S.S_NO
ResultSet rs = st.executeQuery();
// 変数「rs」の中にあるSELECT文の結果を、作ったArrayListの中へ移している。
ArrayList<String[]> list = new ArrayList<String[]>();
while(rs.next() != false) {
String[] s = new String[6];
s[0] = rs.getString("m_no");
s[1] = rs.getString("s_name");
s[2] = rs.getString("g_no");
s[3] = rs.getString("juken_no");
s[4] = rs.getString("kigen");
s[5] = rs.getString("s_date");
list.add(s);
}
// 作ったArrayListをjspへ送り、forwardしている。
request.setAttribute("list", list);
RequestDispatcher rd = request.getRequestDispatcher("/WEB-INF/jsp/KHome.jsp");
rd.forward(request, response);
}catch(SQLException | ClassNotFoundException e) {e.printStackTrace();}
}
}
// 試験名 受験番号 バウチャ期限 試験日 料金
| [
"170624@jc-21.jp"
] | 170624@jc-21.jp |
bd399ab3d2e16df50ae3b64065587dc42161f587 | f3cf8f16bcbfa3540f94618ba6eb9014cb0945d9 | /boss-upms/boss-upms-dao/src/main/java/com/boss/upms/dao/model/UpmsRoleExample.java | efa3bcd183d62995a233f15bce33a0d72db2c685 | [] | no_license | kayuu0810/boss | 4846da76edcfd41ebf42933fc3b139812ff7746b | 868e436d5dff74809a90b547e7668b18c7748fe6 | refs/heads/master | 2020-05-27T21:15:24.801617 | 2017-03-07T15:12:36 | 2017-03-07T15:12:36 | 83,643,451 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,521 | java | package com.boss.upms.dao.model;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class UpmsRoleExample implements Serializable {
protected String orderByClause;
protected boolean distinct;
protected List<Criteria> oredCriteria;
private static final long serialVersionUID = 1L;
private Integer limit;
private Integer offset;
public UpmsRoleExample() {
oredCriteria = new ArrayList<Criteria>();
}
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
public String getOrderByClause() {
return orderByClause;
}
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
public boolean isDistinct() {
return distinct;
}
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
public void setLimit(Integer limit) {
this.limit = limit;
}
public Integer getLimit() {
return limit;
}
public void setOffset(Integer offset) {
this.offset = offset;
}
public Integer getOffset() {
return offset;
}
protected abstract static class GeneratedCriteria implements Serializable {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andRoleIdIsNull() {
addCriterion("role_id is null");
return (Criteria) this;
}
public Criteria andRoleIdIsNotNull() {
addCriterion("role_id is not null");
return (Criteria) this;
}
public Criteria andRoleIdEqualTo(Integer value) {
addCriterion("role_id =", value, "roleId");
return (Criteria) this;
}
public Criteria andRoleIdNotEqualTo(Integer value) {
addCriterion("role_id <>", value, "roleId");
return (Criteria) this;
}
public Criteria andRoleIdGreaterThan(Integer value) {
addCriterion("role_id >", value, "roleId");
return (Criteria) this;
}
public Criteria andRoleIdGreaterThanOrEqualTo(Integer value) {
addCriterion("role_id >=", value, "roleId");
return (Criteria) this;
}
public Criteria andRoleIdLessThan(Integer value) {
addCriterion("role_id <", value, "roleId");
return (Criteria) this;
}
public Criteria andRoleIdLessThanOrEqualTo(Integer value) {
addCriterion("role_id <=", value, "roleId");
return (Criteria) this;
}
public Criteria andRoleIdIn(List<Integer> values) {
addCriterion("role_id in", values, "roleId");
return (Criteria) this;
}
public Criteria andRoleIdNotIn(List<Integer> values) {
addCriterion("role_id not in", values, "roleId");
return (Criteria) this;
}
public Criteria andRoleIdBetween(Integer value1, Integer value2) {
addCriterion("role_id between", value1, value2, "roleId");
return (Criteria) this;
}
public Criteria andRoleIdNotBetween(Integer value1, Integer value2) {
addCriterion("role_id not between", value1, value2, "roleId");
return (Criteria) this;
}
public Criteria andNameIsNull() {
addCriterion("name is null");
return (Criteria) this;
}
public Criteria andNameIsNotNull() {
addCriterion("name is not null");
return (Criteria) this;
}
public Criteria andNameEqualTo(String value) {
addCriterion("name =", value, "name");
return (Criteria) this;
}
public Criteria andNameNotEqualTo(String value) {
addCriterion("name <>", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThan(String value) {
addCriterion("name >", value, "name");
return (Criteria) this;
}
public Criteria andNameGreaterThanOrEqualTo(String value) {
addCriterion("name >=", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThan(String value) {
addCriterion("name <", value, "name");
return (Criteria) this;
}
public Criteria andNameLessThanOrEqualTo(String value) {
addCriterion("name <=", value, "name");
return (Criteria) this;
}
public Criteria andNameLike(String value) {
addCriterion("name like", value, "name");
return (Criteria) this;
}
public Criteria andNameNotLike(String value) {
addCriterion("name not like", value, "name");
return (Criteria) this;
}
public Criteria andNameIn(List<String> values) {
addCriterion("name in", values, "name");
return (Criteria) this;
}
public Criteria andNameNotIn(List<String> values) {
addCriterion("name not in", values, "name");
return (Criteria) this;
}
public Criteria andNameBetween(String value1, String value2) {
addCriterion("name between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andNameNotBetween(String value1, String value2) {
addCriterion("name not between", value1, value2, "name");
return (Criteria) this;
}
public Criteria andTitleIsNull() {
addCriterion("title is null");
return (Criteria) this;
}
public Criteria andTitleIsNotNull() {
addCriterion("title is not null");
return (Criteria) this;
}
public Criteria andTitleEqualTo(String value) {
addCriterion("title =", value, "title");
return (Criteria) this;
}
public Criteria andTitleNotEqualTo(String value) {
addCriterion("title <>", value, "title");
return (Criteria) this;
}
public Criteria andTitleGreaterThan(String value) {
addCriterion("title >", value, "title");
return (Criteria) this;
}
public Criteria andTitleGreaterThanOrEqualTo(String value) {
addCriterion("title >=", value, "title");
return (Criteria) this;
}
public Criteria andTitleLessThan(String value) {
addCriterion("title <", value, "title");
return (Criteria) this;
}
public Criteria andTitleLessThanOrEqualTo(String value) {
addCriterion("title <=", value, "title");
return (Criteria) this;
}
public Criteria andTitleLike(String value) {
addCriterion("title like", value, "title");
return (Criteria) this;
}
public Criteria andTitleNotLike(String value) {
addCriterion("title not like", value, "title");
return (Criteria) this;
}
public Criteria andTitleIn(List<String> values) {
addCriterion("title in", values, "title");
return (Criteria) this;
}
public Criteria andTitleNotIn(List<String> values) {
addCriterion("title not in", values, "title");
return (Criteria) this;
}
public Criteria andTitleBetween(String value1, String value2) {
addCriterion("title between", value1, value2, "title");
return (Criteria) this;
}
public Criteria andTitleNotBetween(String value1, String value2) {
addCriterion("title not between", value1, value2, "title");
return (Criteria) this;
}
public Criteria andDescriptionIsNull() {
addCriterion("description is null");
return (Criteria) this;
}
public Criteria andDescriptionIsNotNull() {
addCriterion("description is not null");
return (Criteria) this;
}
public Criteria andDescriptionEqualTo(String value) {
addCriterion("description =", value, "description");
return (Criteria) this;
}
public Criteria andDescriptionNotEqualTo(String value) {
addCriterion("description <>", value, "description");
return (Criteria) this;
}
public Criteria andDescriptionGreaterThan(String value) {
addCriterion("description >", value, "description");
return (Criteria) this;
}
public Criteria andDescriptionGreaterThanOrEqualTo(String value) {
addCriterion("description >=", value, "description");
return (Criteria) this;
}
public Criteria andDescriptionLessThan(String value) {
addCriterion("description <", value, "description");
return (Criteria) this;
}
public Criteria andDescriptionLessThanOrEqualTo(String value) {
addCriterion("description <=", value, "description");
return (Criteria) this;
}
public Criteria andDescriptionLike(String value) {
addCriterion("description like", value, "description");
return (Criteria) this;
}
public Criteria andDescriptionNotLike(String value) {
addCriterion("description not like", value, "description");
return (Criteria) this;
}
public Criteria andDescriptionIn(List<String> values) {
addCriterion("description in", values, "description");
return (Criteria) this;
}
public Criteria andDescriptionNotIn(List<String> values) {
addCriterion("description not in", values, "description");
return (Criteria) this;
}
public Criteria andDescriptionBetween(String value1, String value2) {
addCriterion("description between", value1, value2, "description");
return (Criteria) this;
}
public Criteria andDescriptionNotBetween(String value1, String value2) {
addCriterion("description not between", value1, value2, "description");
return (Criteria) this;
}
public Criteria andCtimeIsNull() {
addCriterion("ctime is null");
return (Criteria) this;
}
public Criteria andCtimeIsNotNull() {
addCriterion("ctime is not null");
return (Criteria) this;
}
public Criteria andCtimeEqualTo(Long value) {
addCriterion("ctime =", value, "ctime");
return (Criteria) this;
}
public Criteria andCtimeNotEqualTo(Long value) {
addCriterion("ctime <>", value, "ctime");
return (Criteria) this;
}
public Criteria andCtimeGreaterThan(Long value) {
addCriterion("ctime >", value, "ctime");
return (Criteria) this;
}
public Criteria andCtimeGreaterThanOrEqualTo(Long value) {
addCriterion("ctime >=", value, "ctime");
return (Criteria) this;
}
public Criteria andCtimeLessThan(Long value) {
addCriterion("ctime <", value, "ctime");
return (Criteria) this;
}
public Criteria andCtimeLessThanOrEqualTo(Long value) {
addCriterion("ctime <=", value, "ctime");
return (Criteria) this;
}
public Criteria andCtimeIn(List<Long> values) {
addCriterion("ctime in", values, "ctime");
return (Criteria) this;
}
public Criteria andCtimeNotIn(List<Long> values) {
addCriterion("ctime not in", values, "ctime");
return (Criteria) this;
}
public Criteria andCtimeBetween(Long value1, Long value2) {
addCriterion("ctime between", value1, value2, "ctime");
return (Criteria) this;
}
public Criteria andCtimeNotBetween(Long value1, Long value2) {
addCriterion("ctime not between", value1, value2, "ctime");
return (Criteria) this;
}
public Criteria andOrdersIsNull() {
addCriterion("orders is null");
return (Criteria) this;
}
public Criteria andOrdersIsNotNull() {
addCriterion("orders is not null");
return (Criteria) this;
}
public Criteria andOrdersEqualTo(Long value) {
addCriterion("orders =", value, "orders");
return (Criteria) this;
}
public Criteria andOrdersNotEqualTo(Long value) {
addCriterion("orders <>", value, "orders");
return (Criteria) this;
}
public Criteria andOrdersGreaterThan(Long value) {
addCriterion("orders >", value, "orders");
return (Criteria) this;
}
public Criteria andOrdersGreaterThanOrEqualTo(Long value) {
addCriterion("orders >=", value, "orders");
return (Criteria) this;
}
public Criteria andOrdersLessThan(Long value) {
addCriterion("orders <", value, "orders");
return (Criteria) this;
}
public Criteria andOrdersLessThanOrEqualTo(Long value) {
addCriterion("orders <=", value, "orders");
return (Criteria) this;
}
public Criteria andOrdersIn(List<Long> values) {
addCriterion("orders in", values, "orders");
return (Criteria) this;
}
public Criteria andOrdersNotIn(List<Long> values) {
addCriterion("orders not in", values, "orders");
return (Criteria) this;
}
public Criteria andOrdersBetween(Long value1, Long value2) {
addCriterion("orders between", value1, value2, "orders");
return (Criteria) this;
}
public Criteria andOrdersNotBetween(Long value1, Long value2) {
addCriterion("orders not between", value1, value2, "orders");
return (Criteria) this;
}
}
public static class Criteria extends GeneratedCriteria implements Serializable {
protected Criteria() {
super();
}
}
public static class Criterion implements Serializable {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
} | [
"minhuayong@aliyun.com"
] | minhuayong@aliyun.com |
79803a413a41d7752f70233692d2cedacfa8c292 | a39d8a5f49aa6b50d41850ba8474a5999fe3ff98 | /AppAAC/app/src/main/java/cn/wjf/appaac/utils/BindUtil.java | 5d2c2a5f7bbe92f07ec47bfa2719e7bd233385e8 | [] | no_license | wjfjfw2854/sunny | 3d29135c0965faf1adc36aa54e8cf1b869acdb57 | c1c7248af9bc0d36e35a2700ce6ae0414643c142 | refs/heads/master | 2022-12-23T12:11:18.988085 | 2022-12-13T09:42:21 | 2022-12-13T09:42:21 | 222,394,789 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 528 | java | package cn.wjf.appaac.utils;
import android.view.View;
import androidx.databinding.BindingAdapter;
import cn.wjf.appaac.vm.ShellVm;
public class BindUtil {
@BindingAdapter({"android:clickReq"})
public static void requestUserClick(View v, final ShellVm vm)
{
View.OnClickListener onClickListener = new View.OnClickListener() {
@Override
public void onClick(View v) {
vm.requestUser();
}
};
v.setOnClickListener(onClickListener);
}
}
| [
"421284553@qq.com"
] | 421284553@qq.com |
1327132e65bffae9e0946acad8a6a91e67f5d3ce | ff09b6c9fb9d675fbc3cca5d114ea9b916642500 | /src/main/java/com/bass/amed/repository/ScrRoleRepository.java | 15fb917146cecf8696eae39558662b79ddb0d8d7 | [] | no_license | AlexeiVerbitki/AMED | 8873c719ca80d8a314def8a7a8bd25cd111d85e8 | 2a5752579e1802a180d79b2da9ea69796f574017 | refs/heads/master | 2020-03-31T20:27:34.158109 | 2019-04-11T07:48:33 | 2019-04-11T07:48:33 | 152,541,184 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 504 | java | package com.bass.amed.repository;
import com.bass.amed.entity.ScrRoleEntity;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import java.util.Optional;
import java.util.Set;
public interface ScrRoleRepository extends JpaRepository<ScrRoleEntity, Integer>
{
Optional<ScrRoleEntity> findById(Integer id);
@Query("SELECT r FROM ScrRoleEntity r LEFT JOIN FETCH r.authorities")
Set<ScrRoleEntity> findAllRolesWithRights();
}
| [
"mailverbitski@gmail.com"
] | mailverbitski@gmail.com |
dc57c2b038b3cd737723154385af4940829fa273 | 073abe3afddb63dd6ba7d8b84dc96167cff6cfb4 | /src/test/java/org/ortsevlised/InsuranceProgramTest.java | 80467cdf36fd987e279768d1381610c6e512a307 | [] | no_license | ortsevlised/Junit5 | 02689274cb9ca0b38e6673ffef004e1e11dc02fc | 06dacbc56168bd782e0e983f343b32881c9bea9e | refs/heads/master | 2022-12-19T08:40:08.041906 | 2020-09-29T17:35:11 | 2020-09-29T17:35:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,685 | java | package org.ortsevlised;
import jline.internal.Log;
import org.apache.commons.lang3.StringUtils;
import org.junit.jupiter.api.*;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;
import org.junit.jupiter.params.provider.ValueSource;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.PrintStream;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.TimeUnit;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.ortsevlised.Constants.HOW_MANY_ACCIDENTS_DID_YOU_HAVE;
import static org.ortsevlised.Constants.PLEASE_ENTER_A_VALID_NUMBER;
import static org.ortsevlised.ExtraPerAccident.MORE_ACCIDENTS;
import static org.ortsevlised.ExtraPerAccident.values;
public class InsuranceProgramTest {
private static final ByteArrayOutputStream mockOut = new ByteArrayOutputStream();
private static final PrintStream originalOut = System.out;
private static final InputStream originalIn = System.in;
private static InsurancePrice price;
@BeforeAll
static void setup() {
Log.info(">>> Started tests for: " + InsuranceProgram.class);
price = new InsurancePrice(500);
}
@BeforeEach
void mockSetOut() {
PrintStream newOut = new PrintStream(mockOut);
System.setOut(newOut);
}
@AfterEach
void setOriginalInAndOutValues() {
System.setIn(originalIn);
System.setOut(originalOut);
}
@AfterAll
static void tearDown() {
Log.info(">>> Finished tests for: " + InsuranceProgram.class);
}
@DisplayName("Testing the total amount to pay - Happy path")
@ParameterizedTest
@ValueSource(ints = {0, 1, 2, 3, 4, 5})
void getInsuranceToPayTest(int numberOfAccidents) {
ToPay insuranceToPay = InsuranceProgram.addSurchargePerAccident(numberOfAccidents, price.getCurrentPrice());
assertThat("The total amount should be", insuranceToPay.getAmount(),
is(price.getCurrentPrice() + values()[numberOfAccidents].getExtraToPay()));
}
@DisplayName("Testing the total amount to pay - Negative path")
@ParameterizedTest
@ValueSource(ints = {-1, 6, 232})
void getInsuranceToPayTestNegativeScenarios(int numberOfAccidents) {
ToPay insuranceToPay = InsuranceProgram.addSurchargePerAccident(numberOfAccidents, price.getCurrentPrice());
assertThat("I get -1 as a flag value", insuranceToPay.getAmount(),
is(MORE_ACCIDENTS.getExtraToPay()));
}
@DisplayName("Testing input of a valid number")
@ParameterizedTest
@CsvSource({
"5,5",
"0,0",
"70,70"
})
public void shouldTakeUserInputTest(String input, String expectedValue) throws TooManyRetriesException {
ByteArrayInputStream in = new ByteArrayInputStream(input.getBytes());
System.setIn(in);
assertThat("5", InsuranceProgram.getUserInput(), is(Integer.valueOf(expectedValue)));
}
@Test
@DisplayName("Testing error message is displayed when using an invalid input")
public void shouldTakeUserInputTestNegativeScenario() throws TooManyRetriesException {
ByteArrayInputStream in = new ByteArrayInputStream("5s\n5".getBytes());
System.setIn(in);
assertThat("5", InsuranceProgram.getUserInput(), is(5));
assertTrue(new String(mockOut.toByteArray(), StandardCharsets.UTF_8).
contains(PLEASE_ENTER_A_VALID_NUMBER));
}
@Test
@DisplayName("Testing TooManyRetriesException is thrown when entering and invalid input for more than 50 times")
public void getUserInputThrowsTooManyRetriesException() {
String str = "test\n";
String repeated = StringUtils.repeat(str, 50);
ByteArrayInputStream in = new ByteArrayInputStream(repeated.getBytes());
System.setIn(in);
assertThrows(TooManyRetriesException.class, () -> InsuranceProgram.getUserInput());
}
@DisplayName("Testing the print messages method with Strings")
@Timeout(value = 50, unit = TimeUnit.MILLISECONDS)
@ParameterizedTest
@ValueSource(strings = {"Hi", "break\nline", "232"})
public void printMessagesTest(String message) {
System.out.println(message);
System.out.print(HOW_MANY_ACCIDENTS_DID_YOU_HAVE);
assertTrue(new String(mockOut.toByteArray(), StandardCharsets.UTF_8).contains(message + "\n" + HOW_MANY_ACCIDENTS_DID_YOU_HAVE));
}
}
| [
"jdesilvestro@gmail.com"
] | jdesilvestro@gmail.com |
e8ed37e019ce041ff49aeb528070e2e1e38bac99 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/16/16_df34e4895307c374c88e3db190fd047e1245594f/TestMappingCalculator/16_df34e4895307c374c88e3db190fd047e1245594f_TestMappingCalculator_s.java | e109de29f8752bec7724d351caa15c1ee73e511b | [] | 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 | 7,405 | java | package edu.brown.mappings;
import java.io.File;
import java.util.*;
import org.voltdb.VoltProcedure;
import org.voltdb.benchmark.tpcc.procedures.neworder;
import org.voltdb.catalog.*;
import edu.brown.BaseTestCase;
import edu.brown.mappings.AbstractMapping;
import edu.brown.mappings.ParameterMapping;
import edu.brown.mappings.MappingCalculator;
import edu.brown.mappings.ParameterMappingsSet;
import edu.brown.mappings.MappingCalculator.*;
import edu.brown.utils.CollectionUtil;
import edu.brown.utils.ProjectType;
import edu.brown.workload.*;
import edu.brown.workload.filters.Filter;
import edu.brown.workload.filters.ProcParameterValueFilter;
import edu.brown.workload.filters.ProcedureLimitFilter;
import edu.brown.workload.filters.ProcedureNameFilter;
public class TestMappingCalculator extends BaseTestCase {
private static final int WORKLOAD_XACT_LIMIT = 1000;
private static final Class<? extends VoltProcedure> TARGET_PROCEDURE = neworder.class;
private static Workload workload;
private Random rand = new Random(0);
private MappingCalculator pc;
private Procedure catalog_proc;
@Override
protected void setUp() throws Exception {
super.setUp(ProjectType.TPCC);
if (workload == null) {
File file = this.getWorkloadFile(ProjectType.TPCC);
workload = new Workload(catalog);
Filter filter = new ProcedureNameFilter(false)
.include(TARGET_PROCEDURE.getSimpleName())
.attach(new ProcParameterValueFilter().include(1, new Long(1))) // D_ID
.attach(new ProcedureLimitFilter(WORKLOAD_XACT_LIMIT));
((Workload) workload).load(file.getAbsolutePath(), catalog_db, filter);
}
assert(workload.getTransactionCount() > 0);
// Setup
this.catalog_proc = this.getProcedure(TARGET_PROCEDURE);
this.pc = new MappingCalculator(catalog_db);
}
/**
* testQueryInstance
*/
public void testQueryInstance() {
ProcedureCorrelations procc = this.pc.getProcedureCorrelations(this.catalog_proc);
procc.start();
for (Statement catalog_stmt : this.catalog_proc.getStatements()) {
Set<QueryInstance> previous = new HashSet<QueryInstance>();
for (int i = 0; i < 2; i++) {
QueryInstance query_instance = procc.getQueryInstance(catalog_stmt);
assertNotNull(query_instance);
assertEquals(i, query_instance.getSecond().intValue());
assertFalse(previous.contains(query_instance));
previous.add(query_instance);
} // FOR
} // FOR
procc.finish();
}
/**
* testProcParameterCorrelation
*/
public void testProcParameterCorrelation() {
ProcedureCorrelations procc = this.pc.getProcedureCorrelations(this.catalog_proc);
procc.start();
Statement catalog_stmt = CollectionUtil.first(this.catalog_proc.getStatements());
assertNotNull(catalog_stmt);
QueryInstance query_instance = procc.getQueryInstance(catalog_stmt);
assertNotNull(query_instance);
assertEquals(0, query_instance.getSecond().intValue());
for (StmtParameter catalog_stmt_param : catalog_stmt.getParameters()) {
Set<AbstractMapping> previous = new HashSet<AbstractMapping>();
for (ProcParameter catalog_proc_param : this.catalog_proc.getParameters()) {
ProcParameterCorrelation ppc = query_instance.getProcParameterCorrelation(catalog_stmt_param, catalog_proc_param);
assertNotNull(ppc);
assertEquals(catalog_proc_param.getIsarray(), ppc.getIsArray());
assertEquals(catalog_proc_param, ppc.getProcParameter());
int cnt = (ppc.getIsArray() ? rand.nextInt(10) : 1);
for (int i = 0; i < cnt; i++) {
AbstractMapping correlation = ppc.getAbstractCorrelation(i);
assertFalse(previous.contains(correlation));
previous.add(correlation);
} // FOR
} // FOR
} // FOR
procc.finish();
}
/**
* testProcessTransaction
*/
public void testProcessTransaction() throws Exception {
int ctr = 0;
for (TransactionTrace xact_trace : workload) {
assertNotNull(xact_trace);
this.pc.processTransaction(xact_trace);
if (ctr++ >= 100) break;
} // FOR
this.pc.calculate();
ProcedureCorrelations procc = this.pc.getProcedureCorrelations(this.catalog_proc);
assertNotNull(procc);
// System.err.println(xact_trace.debug(catalog_db));
Statement catalog_stmt = this.catalog_proc.getStatements().get("getStockInfo01");
assertNotNull(catalog_stmt);
double threshold = 1.0d;
ParameterMappingsSet pc = procc.getCorrelations(threshold);
assertNotNull(pc);
// System.err.println(pc.debug());
SortedMap<Integer, SortedMap<StmtParameter, SortedSet<ParameterMapping>>> stmt_correlations = pc.get(catalog_stmt);
assertNotNull(stmt_correlations);
assertFalse(stmt_correlations.isEmpty());
// assertEquals(1, stmt_correlations.size());
SortedMap<StmtParameter, SortedSet<ParameterMapping>> param_correlations = stmt_correlations.get(0);
assertEquals(catalog_stmt.getParameters().size(), param_correlations.size());
// System.err.println(procc.debug(catalog_stmt));
// System.err.print(CorrelationCalculator.DEFAULT_DOUBLE_LINE);
// for (StmtParameter catalog_stmt_param : param_correlations.keySet()) {
// System.err.println(catalog_stmt_param + ": " + param_correlations.get(catalog_stmt_param));
// }
// System.err.print(CorrelationCalculator.DEFAULT_DOUBLE_LINE);
// System.err.println(pc.debug(catalog_stmt));
// System.err.print(CorrelationCalculator.DEFAULT_DOUBLE_LINE);
// System.err.println("FULL DUMP:");
// for (Correlation c : pc) {
// if (c.getStatement().equals(catalog_stmt)) System.err.println(" " + c);
// }
// System.err.print(CorrelationCalculator.DEFAULT_DOUBLE_LINE);
ProcParameter expected_param[] = new ProcParameter[] {
this.catalog_proc.getParameters().get(4),
this.catalog_proc.getParameters().get(5),
};
int expected_index[] = { 0, 14 }; // ???
for (int i = 0, cnt = catalog_stmt.getParameters().size(); i < cnt; i++) {
StmtParameter catalog_param = catalog_stmt.getParameters().get(i);
assertNotNull(catalog_param);
ParameterMapping c = CollectionUtil.first(param_correlations.get(catalog_param));
assertNotNull(c);
assert(c.getCoefficient() >= threshold);
assertEquals("[" + i + "]", expected_param[i], c.getProcParameter());
assertEquals("[" + i + "]", expected_index[i], c.getProcParameterIndex().intValue());
} // FOR
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
397b3765714743111b48b0720f991fb4b99b570d | 02d7815d44030fa9cee804c3736320baef63f858 | /sdk/src/main/java/org/zstack/sdk/SchedulerJobSchedulerTriggerInventory.java | 5a71b543f979b300ea6bd93449ad4ed11be50cca | [
"Apache-2.0"
] | permissive | txdyzdy/zstack | b9d60f1f580fefa4734bce6a5ddedb081a383caa | 3b919f5d1c9b156fcef374cfd61c80ce5b52d8a2 | refs/heads/master | 2021-09-05T22:22:45.585615 | 2018-01-31T06:36:03 | 2018-01-31T06:36:03 | 114,520,620 | 1 | 0 | null | 2017-12-17T08:19:48 | 2017-12-17T08:19:48 | null | UTF-8 | Java | false | false | 1,314 | java | package org.zstack.sdk;
public class SchedulerJobSchedulerTriggerInventory {
public java.lang.String uuid;
public void setUuid(java.lang.String uuid) {
this.uuid = uuid;
}
public java.lang.String getUuid() {
return this.uuid;
}
public java.lang.String schedulerJobUuid;
public void setSchedulerJobUuid(java.lang.String schedulerJobUuid) {
this.schedulerJobUuid = schedulerJobUuid;
}
public java.lang.String getSchedulerJobUuid() {
return this.schedulerJobUuid;
}
public java.lang.String schedulerTriggerUuid;
public void setSchedulerTriggerUuid(java.lang.String schedulerTriggerUuid) {
this.schedulerTriggerUuid = schedulerTriggerUuid;
}
public java.lang.String getSchedulerTriggerUuid() {
return this.schedulerTriggerUuid;
}
public java.sql.Timestamp createDate;
public void setCreateDate(java.sql.Timestamp createDate) {
this.createDate = createDate;
}
public java.sql.Timestamp getCreateDate() {
return this.createDate;
}
public java.sql.Timestamp lastOpDate;
public void setLastOpDate(java.sql.Timestamp lastOpDate) {
this.lastOpDate = lastOpDate;
}
public java.sql.Timestamp getLastOpDate() {
return this.lastOpDate;
}
}
| [
"873863981@qq.com"
] | 873863981@qq.com |
9c446c375d85333b931d9798b8c47e2d0079f298 | 90e9bed95ceb48943f08e771463771a514464cf7 | /lab1/hello.java | 0bf4c99ba95bd7db538dc6fe115cecb254a1e760 | [] | no_license | nhihon/cs61b | 30d0c5e3c29e7db610613d51119c64cd140e9bab | e569f9b9b65e37664f391253cfe43fdabf3b1461 | refs/heads/master | 2020-04-08T19:25:16.610199 | 2018-11-30T03:47:08 | 2018-11-30T03:47:08 | 159,654,528 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 855 | java | public class hello{
//0 1 1 2 3 5 8 13 21
public static void main(String[] args){
System.out.println(fib3(Integer.parseInt(args[0]), Integer.parseInt(args[0]), 0, 1 ));
System.out.println(fib4(Integer.parseInt(args[0]), 0,1));
}
public static long fib(int n){
if (n == 0) return 0;
if (n == 1) return 1;
return fib(n-1) + fib(n-2);
}
public static long fib2(int n){
if (n < 2) return n;
long f0 = 0;
long f1 = 1;
long result = 0;
for (int i = 2; i <= n; i+=1){
result = f0 + f1;
f0 = f1;
f1 = result;
}
return result;
}
public static long fib3(int n, int k, int f0, int f1){
for (int i = 2; i <= n; i+=1){
k = f0 + f1;
f0 = f1;
f1 = k;
}
return k;
}
// 0 1 1 2 3 5 8 13 21 34
public static long fib4(int n, int f0, int f1){
if (n == 0) return f0;
return fib4(n-1, f1, f0+f1);
}
}
| [
"trankhanh.trung@ncs.com.sg"
] | trankhanh.trung@ncs.com.sg |
5a0ce5a187f3481f17ec1169f582e53636f34d6e | 4a6663826fe126cc964a32855e01ebde71d8a394 | /src/main/java/model/IDOverFlowException.java | 8503135bd469ef69d3d30aa23670e9cd371394fc | [] | no_license | Mohamedtaha86/wmplayer | c734843305ecb605f9de1dca8f444453f5f02f4c | fbc82353bc4e5671d436ad19d9f1f414c84e562d | refs/heads/master | 2020-04-24T23:19:38.616824 | 2019-02-24T14:07:50 | 2019-02-24T14:07:50 | 172,340,444 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 207 | java | package model;
public class IDOverFlowException extends ArithmeticException {
public IDOverFlowException(){
super();
}
public IDOverFlowException(String s){
super(s);
}
}
| [
"Mohamedtaha861@gmail.com"
] | Mohamedtaha861@gmail.com |
fcad5c2b07eec21e44ed03858f01c797d36da653 | e96455751715d3a87c9c4183b0f53d942be6e1ff | /xlfd-cloud-inventory/src/main/java/com/xlfd/inventory/Swagger2.java | 169289ca33186d5552b6c68c95f321fe50d74a99 | [] | no_license | allanxu1310/xlfd-cloud | f22d7c3250eeb03f539845b3516b868348ab3578 | 8bff32ebd375c1305126cfc9b91409fdc5473963 | refs/heads/master | 2020-03-28T05:39:46.858249 | 2018-09-26T12:51:36 | 2018-09-26T12:51:36 | 147,789,563 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,545 | java | package com.xlfd.inventory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
/**
* swageger2
* @auther Allan
* @date 2018/7/27 17:01
*/
@Configuration
@EnableSwagger2 // 启用Swagger2
public class Swagger2 {
@Bean
public Docket createRestApi() {// 创建API基本信息
return new Docket(DocumentationType.SWAGGER_2)
.apiInfo(apiInfo())
.select()
.apis(RequestHandlerSelectors.basePackage("com.xlfd.inventory.controller"))// 扫描该包下的所有需要在Swagger中展示的API,@ApiIgnore注解标注的除外
.paths(PathSelectors.any())
.build();
}
private ApiInfo apiInfo() {// 创建API的基本信息,这些信息会在Swagger UI中进行显示
return new ApiInfoBuilder()
.title("xlfd cloud RESTful APIs")// API 标题
.description("xlfd-cloud-inventory offered RESTful APIs")// API描述
.contact("xlfd")// 联系人
.version("1.0")// 版本号
.build();
}
}
| [
"allanxu1310@gmail.com"
] | allanxu1310@gmail.com |
360bc6c33eb90f17a033258bc4d0408197feff3f | 164d3c415fdbf004ea778af45738e9e315f80ae2 | /src/test/java/com/gallup/gethip/service/ProfileServiceTest.java | 82b2c0aca37c42130481afdf6d3b74b3d6e64806 | [] | no_license | GETHIP-Archive/get-hip-project-2016-peermarked | 032c22414187180256abf602d30da01d8d62b3f4 | 6597e73ed184625c47a1d3676401db1fc50b26bb | refs/heads/master | 2020-12-25T02:10:52.039805 | 2016-03-04T04:39:23 | 2016-03-04T04:39:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,014 | java | package com.gallup.gethip.service;
import java.util.List;
import org.glassfish.grizzly.http.server.HttpServer;
import com.gallup.gethip.Main;
import com.gallup.gethip.TestSetup;
import com.gallup.gethip.model.Profile;
import com.sun.jersey.api.client.Client;
import junit.framework.TestCase;
public class ProfileServiceTest extends TestCase {
private HttpServer httpServer;
private ProfileService profileService = new ProfileService();
private final String PROFILE_NAME = "matthew1024921";
public ProfileServiceTest(String testName) {
super(testName);
}
@Override
protected void setUp() throws Exception {
super.setUp();
// start the Grizzly2 web container
httpServer = Main.startServer();
new TestSetup();
// create the client
Client.create();
}
@Override
protected void tearDown() throws Exception {
super.tearDown();
httpServer.stop();
}
public void testCreateProfile() {
Profile profile1 = profileService.createProfile(new Profile(0L, PROFILE_NAME, "Matthew", "Meacham", "hunter4", 10));
assertEquals(profile1.getProfileName(), PROFILE_NAME);
assertEquals(profile1.getFirstName(), "Matthew");
assertEquals(profile1.getLastName(), "Meacham");
assertNotSame(profile1.getPassword(), "hunter4");
assertNotSame(0L, profile1.getId());
assertEquals(profile1.getScore(), 10);
assertNotNull(profile1.getSalt());
assertNotNull(profile1.getCreated());
// Duplicate entry test
Profile profile2 = profileService.createProfile(new Profile(0L, PROFILE_NAME, "NewMatthew", "ShouldntWork", "hunter5", 100));
assertNull(profile2);
}
public void testReadAllProfiles() {
List<Profile> profiles = profileService.readAllProfiles();
assertTrue(profiles.size() > 0);
}
public void testReadProfile() {
Profile profile1 = profileService.readProfile("matthew");
assertNotNull(profile1);
assertEquals(profile1.getProfileName(), "matthew");
assertNotSame(profile1.getPassword(), "hunter2");
// Random profile name that shouldn't exist
Profile profile2 = profileService.readProfile("fdsajf;lkdasj;lkfjask;lfjaslkjfkasjfkljadsfjhaskjhfkjashfkjahskjfhakjhfakj");
assertNull(profile2);
}
public void testUpdateProfile() {
Profile profile = profileService.readProfile(PROFILE_NAME);
profile.setFirstName("NewFirstName");
profile.setLastName("NewLastName");
Profile profile1 = profileService.updateProfile(profile);
assertEquals(profile1.getFirstName(), "NewFirstName");
assertEquals(profile1.getLastName(), "NewLastName");
assertEquals(profile1.getId(), profile.getId());
assertEquals(profile1.getPassword(), profile.getPassword());
assertEquals(profile1.getProfileName(), profile.getProfileName());
assertEquals(profile1.getSalt(), profile.getSalt());
assertEquals(profile1.getScore(), profile.getScore());
assertEquals(profile1.getCreated(), profile.getCreated());
}
public void testDeleteProfile() {
profileService.deleteProfile(PROFILE_NAME);
assertTrue(profileService.readProfile(PROFILE_NAME) == null);
}
}
| [
"mmeacham6@gmail.com"
] | mmeacham6@gmail.com |
18e2b0d1a7fec72b8d0f91d49601bf3669bc054a | 46986168ea3588fa719e512a90dbc26570caae41 | /java8feature/src/main/java/a4/java8/thread/lambda/SimpleThread.java | ce8dbd999a8dbc46e89d4469367d07b82e4d8b9c | [] | no_license | ramashanker/corejava | 0fdb9ae01987945f6d18f4200b78dbe4044214c0 | fff3201a01951fddebf64f59ae9c9cd54dcec2ed | refs/heads/master | 2021-12-15T05:05:24.245458 | 2021-11-30T13:47:56 | 2021-11-30T13:47:56 | 152,703,892 | 0 | 0 | null | 2021-07-17T18:10:10 | 2018-10-12T06:27:05 | Java | UTF-8 | Java | false | false | 510 | java | package a4.java8.thread.lambda;
public class SimpleThread implements Runnable {
@Override
public void run() {
System.out.println("SinpmeThread is running");
}
public static void main(String[] args) {
SimpleThread runnable = new SimpleThread();
Thread thread = new Thread(runnable);
thread.start();
/*
* Or we can write like this.
*/
new Thread(new Runnable() {
@Override
public void run() {
System.out.println("annonymus thread is running:");
}
}).start();
;
}
}
| [
"ramashanker87@gmail.com"
] | ramashanker87@gmail.com |
65ddb7447e740d47cf788b9700f0715d27c5cc2b | 697af7c2bc1b081ce7ca5f5bef6c3fe19ca6ed7c | /android/app/src/main/java/com/elloremwrapper/MainApplication.java | 5702af82e5bb333a631e6ed218caefbbe20e19ca | [] | no_license | AlexAlemp/ellorem_wrapper | dd884a6329b45d4d3c1129c153bfae64030593c6 | b28db01c1a0d63484a06f62a857678ffb26f4a26 | refs/heads/master | 2023-01-28T07:37:58.176217 | 2019-11-29T19:02:16 | 2019-11-29T19:02:16 | 224,908,299 | 0 | 0 | null | 2022-12-10T10:35:50 | 2019-11-29T19:00:49 | Objective-C | UTF-8 | Java | false | false | 2,281 | java | package com.elloremwrapper;
import android.app.Application;
import android.content.Context;
import com.facebook.react.PackageList;
import com.facebook.react.ReactApplication;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.soloader.SoLoader;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost =
new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
@SuppressWarnings("UnnecessaryLocalVariable")
List<ReactPackage> packages = new PackageList(this).getPackages();
// Packages that cannot be autolinked yet can be added manually here, for example:
// packages.add(new MyReactNativePackage());
return packages;
}
@Override
protected String getJSMainModuleName() {
return "index";
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
initializeFlipper(this); // Remove this line if you don't want Flipper enabled
}
/**
* Loads Flipper in React Native templates.
*
* @param context
*/
private static void initializeFlipper(Context context) {
if (BuildConfig.DEBUG) {
try {
/*
We use reflection here to pick up the class that initializes Flipper,
since Flipper library is not available in release mode
*/
Class<?> aClass = Class.forName("com.facebook.flipper.ReactNativeFlipper");
aClass.getMethod("initializeFlipper", Context.class).invoke(null, context);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
}
| [
"aleksandar.alempijevic@alterset.net"
] | aleksandar.alempijevic@alterset.net |
93d2932b841bbf867af4f13f13de40053cc278ad | d94fd86c5553d4057e7c23f6a23d8bf45a0b9391 | /Rony/Java/Modulo 3/Aulas/src/Aula2/Exercicio2.java | 05384bdd102b226476bf706ce44ac75faa0fe582 | [] | no_license | grazielags/cpAbril2019 | 78615c0dabc86aa7ab35be88724a7f1e5a238ac3 | 9689f2abc8203cade10a9f539feeb82bb61c0b0b | refs/heads/master | 2020-05-01T22:42:20.622787 | 2019-06-20T01:13:19 | 2019-06-20T01:13:19 | 177,665,390 | 0 | 0 | null | null | null | null | ISO-8859-2 | Java | false | false | 930 | java | package Aula2;
import javax.swing.JOptionPane;
public class Exercicio2 {
public static void main(String[] args) {
JOptionPane.showMessageDialog(null," Implementaremos um programa para calcular a área de um trapézio, onde: \r\n" +
"a = altura\r\n" +
"b = base menor\r\n" +
"B = base maior\r\n" +
"área = (a . (b + B)) / 2\r\n" +
"mostraremos: \n" +
"Valor exato da área.\r\n" +
"Valor arredondado para inteiro.");
int a = Integer.parseInt(JOptionPane.showInputDialog("Digite o valor da altura: "));
int b = Integer.parseInt(JOptionPane.showInputDialog("Digite o valor da base menor: "));
int B = Integer.parseInt(JOptionPane.showInputDialog("Digite o valor da base maior: "));
double area1 = (a * (b + B)) /2.0;
int area2 = (a * (b + B)) /2;
JOptionPane.showMessageDialog(null, "Valor exato da área é " + area1 +
"\nValor arrendondado da área é " + area2);
}
}
| [
"rjzeitoune@gmail.com"
] | rjzeitoune@gmail.com |
bf91d4dd613ff0a22d67053ad81e8f904b65cd71 | 81bff2c0b4b2038392fc2a39776af9ad21587e60 | /GatherVisitor.java | 3cab030a7e4cceb75da61ec73b90567964e79e01 | [
"MIT"
] | permissive | stathismast/mini-java-compiler | deefa94cda6cbb5ceafe94b0a72fae1c5f50ec19 | c5483486483f3eb99eb0103ea5e024e8d48f111e | refs/heads/master | 2020-04-05T00:34:27.683074 | 2018-11-26T21:10:32 | 2018-11-26T21:10:32 | 156,402,470 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,813 | java | import syntaxtree.*;
import visitor.GJDepthFirst;
import java.util.*;
public class GatherVisitor extends GJDepthFirst<String, String> {
static public HashMap<String, ClassInfo> classTable = new HashMap<String, ClassInfo>();
String currentClass;
String currentMethod;
public void init(){
classTable.clear();
}
public void printClassInfo(){
for(String className : classTable.keySet()){
classTable.get(className).print();
}
}
/**
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "{"
* f3 -> ( VarDeclaration() )*
* f4 -> ( MethodDeclaration() )*
* f5 -> "}"
*/
public String visit(ClassDeclaration n, String argu) throws Exception {
String name = n.f1.f0.toString();
currentClass = name;
if(classTable.containsKey(name)){
throw new Exception("ClassDeclaration: Redeclaration of class " + name + ".");
}
ClassInfo classInfo = new ClassInfo(name,null);
classTable.put(name, classInfo);
String _ret=null;
n.f0.accept(this, argu);
n.f1.accept(this, argu);
n.f2.accept(this, argu);
n.f3.accept(this, argu);
n.f4.accept(this, argu);
n.f5.accept(this, argu);
currentClass = null;
return _ret;
}
/**
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "extends"
* f3 -> Identifier()
* f4 -> "{"
* f5 -> ( VarDeclaration() )*
* f6 -> ( MethodDeclaration() )*
* f7 -> "}"
*/
public String visit(ClassExtendsDeclaration n, String argu) throws Exception {
String name = n.f1.f0.toString();
String classExtends = n.f3.f0.toString();
if(!classTable.containsKey(classExtends)){
throw new Exception("ClassExtendsDeclaration: " + name + " extends " + classExtends + ", class " + classExtends + " must be defined before " + name + ".");
}
currentClass = name;
if(classTable.containsKey(name)){
throw new Exception("ClassExtendsDeclaration: Redeclaration of class " + name + ".");
}
ClassInfo classInfo = new ClassInfo(name,classExtends);
classTable.put(name, classInfo);
String _ret=null;
n.f0.accept(this, argu);
n.f1.accept(this, argu);
n.f2.accept(this, argu);
n.f3.accept(this, argu);
n.f4.accept(this, argu);
n.f5.accept(this, argu);
n.f6.accept(this, argu);
n.f7.accept(this, argu);
currentClass = null;
return _ret;
}
/**
* f0 -> "class"
* f1 -> Identifier()
* f2 -> "{"
* f3 -> "public"
* f4 -> "static"
* f5 -> "void"
* f6 -> "main"
* f7 -> "("
* f8 -> "String"
* f9 -> "["
* f10 -> "]"
* f11 -> Identifier()
* f12 -> ")"
* f13 -> "{"
* f14 -> ( VarDeclaration() )*
* f15 -> ( Statement() )*
* f16 -> "}"
* f17 -> "}"
*/
public String visit(MainClass n, String argu) throws Exception {
String name = n.f1.f0.toString();
currentClass = name;
ClassInfo classInfo = new ClassInfo(name,null);
classTable.put(name, classInfo);
currentMethod = "main";
MethodInfo methodInfo = new MethodInfo(currentMethod, "void");
methodInfo.variables.put(n.f11.f0.toString(), "String[]");
methodInfo.parameters.add("String[]");
classTable.get(currentClass).methods.put(currentMethod, methodInfo);
String _ret=null;
n.f0.accept(this, argu);
n.f1.accept(this, argu);
n.f2.accept(this, argu);
n.f3.accept(this, argu);
n.f4.accept(this, argu);
n.f5.accept(this, argu);
n.f6.accept(this, argu);
n.f7.accept(this, argu);
n.f8.accept(this, argu);
n.f9.accept(this, argu);
n.f10.accept(this, argu);
n.f11.accept(this, argu);
n.f12.accept(this, argu);
n.f13.accept(this, argu);
n.f14.accept(this, argu);
n.f15.accept(this, argu);
n.f16.accept(this, argu);
n.f17.accept(this, argu);
currentMethod = null;
currentClass = null;
return _ret;
}
/**
* f0 -> Type()
* f1 -> Identifier()
* f2 -> ";"
*/
public String visit(VarDeclaration n, String argu) throws Exception {
String type;
String name = n.f1.f0.toString();
String _ret=null;
type = n.f0.accept(this, argu);
n.f1.accept(this, argu);
n.f2.accept(this, argu);
if(currentClass != null){
if(currentMethod != null){
if(classTable.get(currentClass).methods.get(currentMethod).variables.get(name) == null)
classTable.get(currentClass).methods.get(currentMethod).variables.put(name, type);
else
throw new Exception("Redeclaration of variable '" + name + "' in method " + currentMethod + "() from class " + currentClass);
}
else{
if(classTable.get(currentClass).variables.get(name) == null)
classTable.get(currentClass).variables.put(name, type);
else
throw new Exception("Redeclaration of variable '" + name + "' from class " + currentClass);
}
}
else throw new Exception();
return _ret;
}
/**
* f0 -> "public"
* f1 -> Type()
* f2 -> Identifier()
* f3 -> "("
* f4 -> ( FormalParameterList() )?
* f5 -> ")"
* f6 -> "{"
* f7 -> ( VarDeclaration() )*
* f8 -> ( Statement() )*
* f9 -> "return"
* f10 -> Expression()
* f11 -> ";"
* f12 -> "}"
*/
public String visit(MethodDeclaration n, String argu) throws Exception {
String type;
String name = n.f2.f0.toString();
currentMethod = name;
String _ret=null;
n.f0.accept(this, argu);
type = n.f1.accept(this, argu);
MethodInfo methodInfo = new MethodInfo(name, type);
if(classTable.get(currentClass).methods.containsKey(name)){
throw new Exception("MethodDeclaration: Redeclaration of method " + name + " in class " + currentClass + ".");
}
classTable.get(currentClass).methods.put(name, methodInfo);
n.f2.accept(this, argu);
n.f3.accept(this, argu);
n.f4.accept(this, argu);
n.f5.accept(this, argu);
n.f6.accept(this, argu);
n.f7.accept(this, argu);
n.f8.accept(this, argu);
n.f9.accept(this, argu);
n.f10.accept(this, argu);
n.f11.accept(this, argu);
n.f12.accept(this, argu);
currentMethod = null;
return _ret;
}
/**
* f0 -> Type()
* f1 -> Identifier()
*/
public String visit(FormalParameter n, String argu) throws Exception {
String type;
String name = n.f1.f0.toString();
String _ret=null;
type = n.f0.accept(this, argu);
n.f1.accept(this, argu);
if(currentClass != null && currentMethod != null){
classTable.get(currentClass).methods.get(currentMethod).variables.put(name, type);
classTable.get(currentClass).methods.get(currentMethod).parameters.add(type);
}
else throw new Exception();
return _ret;
}
/**
* f0 -> ArrayType()
* | BooleanType()
* | IntegerType()
* | Identifier()
*/
public String visit(Type n, String argu) throws Exception {
return n.f0.accept(this, argu);
}
/**
* f0 -> "int"
* f1 -> "["
* f2 -> "]"
*/
public String visit(ArrayType n, String argu) throws Exception {
String _ret = "int[]";
n.f0.accept(this, argu);
n.f1.accept(this, argu);
n.f2.accept(this, argu);
return _ret;
}
/**
* f0 -> "boolean"
*/
public String visit(BooleanType n, String argu) throws Exception {
n.f0.accept(this, argu);
return "boolean";
}
/**
* f0 -> "int"
*/
public String visit(IntegerType n, String argu) throws Exception {
n.f0.accept(this, argu);
return "int";
}
/**
* f0 -> <IDENTIFIER>
*/
public String visit(Identifier n, String argu) throws Exception {
n.f0.accept(this, argu);
return n.f0.toString();
}
}
| [
"st.mastorakis@gmail.com"
] | st.mastorakis@gmail.com |
1568a16b19327759c914839f5be820964d14b571 | e7f381b0c70ecb416031dbfd6ba54326fb06f8a8 | /app/src/main/java/com/example/piyush/fim/myDatabase.java | 75f110539eeb1cf9e1f8f33f01a2d844d9ccc05c | [] | no_license | PiyushBansal98/FIM | a2d9582d1aeeb1256befaecc0eadc544d3cbc4fa | 6ced257d1a16af3ec94f7c30011ec67d937af2bd | refs/heads/master | 2020-06-14T12:58:05.829510 | 2019-07-04T05:43:21 | 2019-07-04T05:43:21 | 195,010,601 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,459 | java | package com.example.piyush.fim;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
public class myDatabase extends SQLiteOpenHelper {
private static final String Database_Name="student.db";
private static final String TABLE_NAME="student";
private static final String COL_1="ID";
private static final String COL_2="ROLL";
private static final String COL_3="NAME";
private static final String COL_4="SURNAME";
public myDatabase(Context context) {
super(context, Database_Name, null, 1);
}
@Override
public void onCreate(SQLiteDatabase sqLiteDatabase) {
sqLiteDatabase.execSQL("create table "+TABLE_NAME+" "+"(ID INTEGER PRIMARY KEY AUTOINCREMENT,ROLL TEXT, NAME TEXT, SURNAME TEXT)");
}
@Override
public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) {
sqLiteDatabase.execSQL("DROP TABLE IF EXISTS "+TABLE_NAME);
onCreate(sqLiteDatabase);
}
public boolean insertData(String roll,String nem,String srnem)
{
SQLiteDatabase database=this.getWritableDatabase();
ContentValues contentValues=new ContentValues();
contentValues.put(COL_2,roll);
contentValues.put(COL_3,nem);
contentValues.put(COL_4,srnem);
long res = database.insert(TABLE_NAME,null,contentValues);
if (res==-1)
{
return false;
}
else
{
return true;
}
}
public Cursor getAllData()
{
SQLiteDatabase database= this.getReadableDatabase();
Cursor result= database.rawQuery("select * from "+TABLE_NAME, null);
return result;
}
public boolean isUpate(String id, String roll ,String nem ,String srnem)
{
SQLiteDatabase database=this.getWritableDatabase();
ContentValues contentValues=new ContentValues();
contentValues.put(COL_1,id);
contentValues.put(COL_2,roll);
contentValues.put(COL_3,nem);
contentValues.put(COL_4,srnem);
database.update(TABLE_NAME,contentValues,"ID=?", new String[]{id});
return true;
}
public Integer deleteData(String id)
{
SQLiteDatabase database= this.getWritableDatabase();
return database.delete(TABLE_NAME,"ID=?",new String[]{id});
}
} | [
"piyushbansalixa@gmail.com"
] | piyushbansalixa@gmail.com |
c6a064e81cf199b9191b449d6895db5b60684da9 | df742fe918b84ecbedcc42b5e12b8b685126188a | /src/main/java/edu/spring/travel06/domain/FreeWishVO.java | f9256c50713589ed96e4990557f2f7fe6e7c5c4f | [] | no_license | KwonHyeJeong/ProjectTravel | 4de48ab5a6ed583458676e9d92c8acbb45ccf83d | 2a44367542fc05be927b2fadab17a7c924eace31 | refs/heads/master | 2023-03-16T10:25:22.161846 | 2021-03-10T14:57:59 | 2021-03-10T14:57:59 | 346,385,001 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 839 | java | package edu.spring.travel06.domain;
public class FreeWishVO
{
private int freeWishNo;
private int freeNo;
private int mno;
public FreeWishVO()
{
super();
}
public FreeWishVO(int freeWishNo, int freeNo, int mno)
{
super();
this.freeWishNo = freeWishNo;
this.freeNo = freeNo;
this.mno = mno;
}
public int getFreeWishNo()
{
return freeWishNo;
}
public void setFreeWishNo(int freeWishNo)
{
this.freeWishNo = freeWishNo;
}
public int getFreeNo()
{
return freeNo;
}
public void setFreeNo(int freeNo)
{
this.freeNo = freeNo;
}
public int getMno() {
return mno;
}
public void setMno(int mno)
{
this.mno = mno;
}
@Override
public String toString()
{
return "FreeWishVO [freeWishNo=" + freeWishNo + ", freeNo=" + freeNo + ", mno=" + mno + "]";
}
}
| [
"kk98010832@gmail.com"
] | kk98010832@gmail.com |
7f4917ef2c0dacb123c6c4495fe17c7411ca1cbe | 0f173fe5655c792f3734efafa5b7a552efa10e2a | /Snappy-Android/src/com/snappy/SplashScreenActivity.java | 770b9b1b29d77c7ac11b445886b7686f2debce36 | [
"MIT"
] | permissive | jaullo/Snappy | 66f69e6fa3cc0620b23aad95c99337c6f13f69e2 | 2512f82c83dcd83864ea3b37a29890d9f6c8c3fd | refs/heads/master | 2021-01-21T12:11:01.679370 | 2015-04-01T00:14:39 | 2015-04-01T00:14:39 | 29,272,625 | 4 | 4 | null | 2015-03-04T19:34:59 | 2015-01-15T00:18:48 | Java | UTF-8 | Java | false | false | 7,256 | java | /*
* The MIT License (MIT)
*
* Copyright � 2013 Clover Studio Ltd. All rights reserved.
*
* 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 com.snappy;
import java.io.File;
import java.util.List;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Handler;
import android.util.Log;
import android.widget.Toast;
import com.crittercism.app.Crittercism;
import com.snappy.couchdb.CouchDB;
import com.snappy.couchdb.LocalDB;
import com.snappy.couchdb.ResultListener;
import com.snappy.couchdb.model.User;
import com.snappy.extendables.SideBarActivity;
import com.snappy.management.UsersManagement;
import com.snappy.utils.Const;
import com.snappy.utils.Preferences;
/**
* SplashScreenActivity
*
* Displays splash screen for 2 seconds.
*/
public class SplashScreenActivity extends Activity {
private String mSavedEmail;
private String mSavedPassword;
public static SplashScreenActivity sInstance = null;
private User mUser;
public static boolean isinFG = false;
private boolean isIntent = false;
public void onPause() {
super.onPause();
isinFG = false;
}
public void onResume() {
super.onResume();
isinFG = true;
}
public void onDestroy() {
super.onDestroy();
isinFG = false;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
SplashScreenActivity.sInstance = this;
setContentView(R.layout.activity_splash_screen);
/* Initiate Crittercism */
Crittercism.init(getApplicationContext(), Const.CRITTERCISM_APP_ID);
new CouchDB();
// new UsersManagement();
if (SpikaApp.hasNetworkConnection()) {
if (checkIfUserSignIn()) {
mSavedEmail = SpikaApp.getPreferences().getUserEmail();
mSavedPassword = SpikaApp.getPreferences().getUserPassword();
mUser = new User();
CouchDB.authAsync(mSavedEmail, mSavedPassword, new AuthListener(), SplashScreenActivity.this, false);
} else {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
startActivity(new Intent(SplashScreenActivity.this,
SignInActivity.class));
finish();
}
}, 2000);
}
} else {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent intent = new Intent(SplashScreenActivity.this,
RecentActivityActivity.class);
intent.putExtra(Const.SIGN_IN, true);
SplashScreenActivity.this.startActivity(intent);
Toast.makeText(SplashScreenActivity.this,
getString(R.string.no_internet_connection),
Toast.LENGTH_LONG).show();
}
}, 2000);
}
// isIntent = getIntent().getBooleanExtra(Const.PUSH_INTENT, false);
// if(isIntent)
// {
LocalDB db = new LocalDB(this);
db.deleteAllMessages();
// }
}
private boolean checkIfUserSignIn() {
boolean isSessionSaved = false;
Preferences prefs = SpikaApp.getPreferences();
if (prefs.getUserEmail() == null && prefs.getUserPassword() == null) {
isSessionSaved = false;
} else if (prefs.getUserEmail().equals("")
&& prefs.getUserPassword().equals("")) {
isSessionSaved = false;
} else {
isSessionSaved = true;
}
return isSessionSaved;
}
private void signIn(User u) {
UsersManagement.setLoginUser(u);
UsersManagement.setToUser(u);
UsersManagement.setToGroup(null);
boolean openPushNotification = getIntent().getBooleanExtra(
Const.PUSH_INTENT, false);
Intent intent = new Intent(SplashScreenActivity.this,
RecentActivityActivity.class);
if (openPushNotification) {
intent = getIntent();
intent.setClass(SplashScreenActivity.this,
RecentActivityActivity.class);
}
//parse URI hookup://user/[ime korisnika] and hookup://group/[ime grupe]
Uri userUri = getIntent().getData();
//If opened from link
if (userUri != null) {
String scheme = userUri.getScheme(); // "hookup"
String host = userUri.getHost(); // "user" or "group"
if (host.equals("user")) {
List<String> params = userUri.getPathSegments();
String userName = params.get(0); // "ime korisnika"
intent.putExtra(Const.USER_URI_INTENT, true);
intent.putExtra(Const.USER_URI_NAME, userName);
} else if (host.equals("group")) {
List<String> params = userUri.getPathSegments();
String groupName = params.get(0); // "ime grupe"
intent.putExtra(Const.GROUP_URI_INTENT, true);
intent.putExtra(Const.GROUP_URI_NAME, groupName);
}
}
intent.putExtra(Const.SIGN_IN, true);
SplashScreenActivity.this.startActivity(intent);
finish();
}
private void checkPassProtect (User user) {
if (SpikaApp.getPreferences().getPasscodeProtect())
{
Intent passcode = new Intent(SplashScreenActivity.this,
PasscodeActivity.class);
passcode.putExtra("protect", true);
SplashScreenActivity.this.startActivityForResult(passcode, 0);
}
else
{
signIn(user);
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == Activity.RESULT_OK) {
signIn(mUser);
}
else {
finish();
}
super.onActivityResult(requestCode, resultCode, data);
}
private boolean authentificationOk(User user) {
boolean authentificationOk = false;
if (user.getEmail() != null && !user.getEmail().equals("")) {
if (user.getEmail().equals(mSavedEmail)) {
authentificationOk = true;
}
}
return authentificationOk;
}
private class AuthListener implements ResultListener<String>
{
@Override
public void onResultsSucceded(String result) {
boolean tokenOk = result.equals(Const.LOGIN_SUCCESS);
mUser = UsersManagement.getLoginUser();
if (tokenOk && mUser!=null) {
if (authentificationOk(mUser)) {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
checkPassProtect(mUser);
}
}, 2000);
}
} else {
SideBarActivity.appLogout(false, false, true);
}
}
@Override
public void onResultsFail() {
SideBarActivity.appLogout(false, true, false);
}
}
}
| [
"jhulloahernandez@gmail.com"
] | jhulloahernandez@gmail.com |
3e5595869161e975aacd6228f21666db1a336967 | 60f61244a07d9c106f1523278ec32ca31ffebd33 | /PartsStore.war/src/com/dam/ps/util/JSONMapper.java | 8ef9f19e685346d8967038b1264b5c2ea134331a | [] | no_license | jaideeb/wiprodxp | 257dd4bc90a3e04d573207606321316911cdbdae | 329a2b9f9e942b84a6feaab47bb9edbaed96dcc5 | refs/heads/master | 2020-03-08T15:53:29.937713 | 2018-04-05T15:56:39 | 2018-04-05T15:56:39 | 128,224,023 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,145 | java | /**
* This software is the confidential and proprietary information of
* Wipro. 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 Wipro.
*
*/
package com.dam.ps.util;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import net.sf.json.JSONObject;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.support.JdbcUtils;
/**
* This class will map the JDBC ResultSet to a JSON structure
*
*/
public class JSONMapper implements RowMapper<JSONObject> {
public JSONObject mapRow(ResultSet rs, int rowNum) throws SQLException {
String key = null;
String value = null;
ResultSetMetaData rsmd = rs.getMetaData();
int columnCount = rsmd.getColumnCount();
JSONObject result = new JSONObject();
for (int index = 1; index <= columnCount; index++) {
key = JdbcUtils.lookupColumnName(rsmd, index);
value = rs.getString(key);
result.accumulate(key, value);
}
return result;
}
}
| [
"noreply@github.com"
] | jaideeb.noreply@github.com |
a6be7123985834059462104e9d4b375327b26c0c | 07b69053141eb39d902acb698cf6c262bff6caed | /Programmers/완주하지 못한 선수.java | 9c5e4c099914ad7a4999696ca42048d6ed012705 | [] | no_license | woehd9410/Algorithm | 9ce944a339ea33e0328746cc81ec7203d6bc598f | 827fc581341ee571132ba71253f4840cb7a288f1 | refs/heads/master | 2022-08-02T00:12:49.109842 | 2022-07-06T14:03:53 | 2022-07-06T14:03:53 | 220,876,025 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 718 | java | import java.util.*;
class Solution {
public String solution(String[] participant, String[] completion) {
String answer = "";
HashMap<String, Integer> hm = new HashMap<>();
for(String part : participant) {
if(hm.get(part) == null) {
hm.put(part, 1);
}else {
int num = hm.get(part) + 1;
hm.put(part, num);
}
}
for(String comp : completion) {
if(hm.get(comp) != null) {
int num = hm.get(comp) - 1;
hm.put(comp, num);
}
}
for(String key : hm.keySet()) {
if(hm.get(key) == 1) answer = key;
}
return answer;
}
} | [
"woehd9410@gmail.com"
] | woehd9410@gmail.com |
896001f12207855dae64d87bbdeba4a53aa1b0ca | 3b998a0897d395c2dfeb81ebb68609bbf3651f17 | /app/src/main/java/com/hitachi_tstv/yodpanom/yaowaluk/util/CMCommonUtils.java | 2da31a787c6b4440b40795e5bbd6507625f47658 | [] | no_license | yaowalukMuz/FleedJsonXML | bc39d52f34961d087c06606ac0b383ccebe7e8e2 | ff54f3515896beceea944ad841f6249c3f8a695f | refs/heads/master | 2021-01-21T08:55:04.983365 | 2017-09-08T09:58:56 | 2017-09-08T09:58:56 | 101,959,849 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 561 | java | package com.hitachi_tstv.yodpanom.yaowaluk.util;
import java.io.InputStream;
import java.io.OutputStream;
public class CMCommonUtils {
public static void CopyStream(InputStream is, OutputStream os)
{
final int buffer_size=1024;
try
{
byte[] bytes=new byte[buffer_size];
for(;;)
{
int count=is.read(bytes, 0, buffer_size);
if(count==-1)
break;
os.write(bytes, 0, count);
}
}
catch(Exception ex){}
}
} | [
"yaowamuz.c@gmail.com"
] | yaowamuz.c@gmail.com |
2447c7c9f07d507747fa7fe1963d95eb7b9f94a3 | e728a645244ec41d3f693b19361366cd2059cf49 | /03. Inheritance - EXC/p_02_book_shop/Main.java | 51350e16a67ac84a8d1c9fda8a5d654759f126e4 | [] | no_license | VTheodore/Java-OOP-Basics | 6dee2fc4fda2694302f8d8306f074f0398eccb77 | a83e50dabe0d9eac81ff6d5b3c36d6cf774a5ab3 | refs/heads/master | 2020-03-19T22:45:19.357604 | 2018-08-29T17:10:04 | 2018-08-29T17:10:04 | 136,980,532 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,236 | java | package L03_InheritanceEXC.p_02_book_shop;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.lang.instrument.IllegalClassFormatException;
import java.lang.reflect.Method;
public class Main {
public static void main(String[] args) throws IOException {
try {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String author = in.readLine();
String title = in.readLine();
double price = Double.parseDouble(in.readLine());
Book book = new Book(author, title, price);
GoldenEditionBook goldenEditionBook = new GoldenEditionBook(author, title, price);
Method[] goldenBookDeclaredMethods = GoldenEditionBook.class.getDeclaredMethods();
if (goldenBookDeclaredMethods.length > 1){
throw new IllegalClassFormatException("Code duplication in GoldenEditionBook!");
}
System.out.println(book.toString());
System.out.println(goldenEditionBook.toString());
}catch (IllegalArgumentException | IllegalClassFormatException error){
System.out.println(error.getMessage());
}
}
}
| [
"theodorevezenkov@gmail.com"
] | theodorevezenkov@gmail.com |
7f3a514481f5a8329100800fdf16397fe0168855 | 63872445a35bb5216b7a7d045ee5d65ec7cff8c8 | /Java_1/JMSclassicAPI/src/jms_pubSub/Pub.java | c0d2d89cfc8dffa4f84e66533a1f86b9e006a1d4 | [] | no_license | Vokamrecom/Java-3th-course | e2d659464804c9e85b184d395df0938985aa4021 | 02ad71badeeec56a9e41d69b35b20224e6df3022 | refs/heads/master | 2020-03-30T19:18:39.729744 | 2018-10-25T16:33:10 | 2018-10-25T16:33:10 | 151,536,962 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,208 | java | package jms_pubSub;
import javax.jms.*;
import com.sun.messaging.ConnectionConfiguration;
import com.sun.messaging.ConnectionFactory;
import java.util.Scanner;
public class Pub {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
ConnectionFactory connectionFactory = new ConnectionFactory();
try(JMSContext context = connectionFactory.createContext("admin","admin")) {
connectionFactory.setProperty(ConnectionConfiguration.imqAddressList, "mq://127.0.0.1:7676,mq://127.0.0.1:7676");
Destination topic = context.createTopic("Topic1");
TextMessage outMsg = context.createTextMessage();
outMsg.setStringProperty("aa", "aa");
//context.createTextMessage().setJMSPriority(5);
JMSProducer producer = context.createProducer();
while (true) {
System.out.print("Введите сообщение: ");
String message = in.nextLine();
outMsg.setText(message);
producer.setPriority(5).send(topic, outMsg);
}
}
catch (JMSException e) {
e.printStackTrace();
}
}
}
| [
"ermakovkiril@gmail.com"
] | ermakovkiril@gmail.com |
36d6561baff3c0e0d96eb0b7e60c8b38abc480e9 | e40176cb97d31cb776b25701394ce506106e4f94 | /src/CTDL/Homework_3/Sphere.java | 92898aeb538e05af4b79759ca5fff4e6b8d3ae1a | [] | no_license | parkouryb/Data-Structures-and-Algorithms-HUS | bb18603a683693f054bcb230a8ca9ab98d059c12 | e30e3fb10ad781477ed47de19eea19a9d9be74ec | refs/heads/master | 2023-04-10T14:07:40.178834 | 2021-04-20T17:20:07 | 2021-04-20T17:20:07 | 253,273,077 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 611 | java | package CTDL.Homework_3;
public class Sphere extends Shape {
private double radius = 0;
private final double PI = 3.14159;
public Sphere(double radius) {
this.radius = radius;
}
@Override
protected double getVolume() {
return (4.0 * PI * Math.pow(this.radius, 3)) / 3.0;
}
@Override
protected double getArea() {
return 4.0 * PI * Math.pow(this.radius, 2);
}
@Override
protected double getPerimeter() {
return 0;
}
@Override
public String toString() {
return "Sphere [radius=" + radius + "]";
}
} | [
"147523689a@gmail.com"
] | 147523689a@gmail.com |
20135e58148e681e6ab6b0c4bcccf012ab69a053 | 5eebed1e8a9a6f2c20a302a0765571d32d777137 | /Webproj5/src/Com/internousdev/webproj5/dao/InquiryComlpeteDAO.java | 3c50c6772bd47e0dcb18e2d171b63c11ab6a9dc3 | [] | no_license | Rush-light/backup | 6cb5e88c7d465da28947a0d2faee8acbcaf2157a | d8c522bbca514ecfba9f0dc777f8d980678ed24e | refs/heads/master | 2021-09-09T20:12:32.251682 | 2018-03-19T12:47:02 | 2018-03-19T12:47:02 | 114,627,160 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,679 | java | package Com.internousdev.webproj5.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import Com.internousdev.webproj5.dto.InquiryDTO;
import Com.internousdev.webproj5.util.DBConnector;
public class InquiryComlpeteDAO {
List<InquiryDTO> inquiryDTOList = new ArrayList<InquiryDTO>();
public List<InquiryDTO> select() {
DBConnector db = new DBConnector();
Connection con = db.getConnection();
String sql = "select * from inquiry";
try {
PreparedStatement ps = con.prepareStatement(sql);
ResultSet rs = ps.executeQuery();
while(rs.next()) {
InquiryDTO dto=new InquiryDTO();
dto.setName(rs.getString("name"));
dto.setQtype(rs.getString("qtype"));
dto.setBody(rs.getString("body"));
inquiryDTOList.add(dto);
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
con.close();
} catch (SQLException e) {
e.printStackTrace();
}
return inquiryDTOList;
}
public int insert(String name,String qtype, String body) {
int ret = 0;
DBConnector db = new DBConnector();
Connection con = db.getConnection();
String sql = "insert into inquiry values(?,?,?)";
try {
PreparedStatement ps = con.prepareStatement(sql);
ps.setString(1, name);
ps.setString(2, qtype);
ps.setString(3, body);
int i = ps.executeUpdate();
if (i>0) {
System.out.println(i+"件登録されました");
ret = i;
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
con.close();
} catch (SQLException e) {
e.printStackTrace();
}
return ret;
}
}
| [
"lightning_o-din0711@docomo.ne.jp"
] | lightning_o-din0711@docomo.ne.jp |
5f08ea26653c9b83f272030a7bfd676c5251bb9d | cbb95f312aceb43457e4a94434914bb9e6ba90b1 | /consumer/src/main/java/domain/objects/CityObj.java | c01a6ce82724cc04245e333a1c53634b67a26a58 | [] | no_license | IgorVictorovich/Java | a7210655e6e81bcfb83149ae94630b38ea749713 | d16d80c86960e90dc770d7a47d0b37c09e00bdec | refs/heads/master | 2021-01-01T15:45:15.169107 | 2015-10-25T10:44:50 | 2015-10-25T10:44:50 | 7,980,326 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 929 | java | package domain.objects;
import javax.persistence.*;
/**
* Created by Igor on 24.10.2015.
*/
@Entity
@Table(schema = "public",name = "City")
public class CityObj {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long city_id;
private String city_name;
@ManyToOne
@JoinColumn(name="country_id",
insertable=false, updatable=false,
nullable=false)
private CountryObj countryObj;
public Long getCity_id() {
return city_id;
}
public void setCity_id(Long city_id) {
this.city_id = city_id;
}
public String getCity_name() {
return city_name;
}
public void setCity_name(String city_name) {
this.city_name = city_name;
}
public CountryObj getCountryObj() {
return countryObj;
}
public void setCountryObj(CountryObj countryObj) {
this.countryObj = countryObj;
}
}
| [
"="
] | = |
ab655ee6e4bf920d849793bab110f663135313ba | aa3ad688404fd308e5ac974b0bc21d1864967bee | /src/main/java/com/bb/bbwebapp/jdbcTemplate/dao/TBBGroupJDBCTemplateDao.java | dcdcb609660309d6334ab70c8b82d908b355d11e | [] | no_license | Ankitkapoor4986/webAppJdbcTemplate | c442a3cd74cd0ec6d1bbe0e306ee5eacb0fa3a4b | 02fd417906933b555bc6de37557efd3fc77a8232 | refs/heads/master | 2020-12-25T14:13:31.850334 | 2016-07-11T08:00:20 | 2016-07-11T08:00:20 | 60,603,604 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,532 | java | /**
*
*/
package com.bb.bbwebapp.jdbcTemplate.dao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Repository;
import com.bb.bbwebapp.interfaces.dao.TBBGroupDao;
import com.bb.bbwebapp.mapper.TBBGroupMapper;
import com.bb.bbwebapp.model.Head;
import com.bb.bbwebapp.model.TBBGroup;
import com.bb.bbwebapp.model.User;
/**
* @author ankit
*
*/
@Repository
public class TBBGroupJDBCTemplateDao implements TBBGroupDao {
@Autowired
private JdbcTemplate jdbcTemplate;
/* (non-Javadoc)
* @see com.bb.bbwebapp.dao.ITBBGroupDao#getTBBBuddyGroupOfUser(com.bb.bbwebapp.model.User)
*/
@Override
public TBBGroup getTBBBuddyGroupOfUser(User user) {
StringBuilder query=new StringBuilder();
query.append(" select g.groupName as groupName ,h.name as head_name , g.groupId group_id ,h.id head_id ")
.append(" from User_ u join TBB_Buddy_Group bg on u.userId=bg.userId join TBB_Group g ")
.append(" on g.groupId=bg.groupId and u.userId=? left join TBB_Head h on g.groupId=h.groupId ");
return jdbcTemplate.queryForObject(query.toString(),new Object[] {user.getUserId()},
new TBBGroupMapper());
}
@Override
public void setHead(Head head) {
StringBuilder query=new StringBuilder();
query.append(" insert into TBB_Head ")
.append(" (name,groupId) values (?,?)");
jdbcTemplate.update(query.toString(), new Object[]{
head.getName(),head.getGroup().getGroupId()
});
}
}
| [
"akapoor@xebia.com"
] | akapoor@xebia.com |
76a6e8eb2bf8244654ffb213e1dcae4427a18e08 | f362e65b22ce4d580fd64704ae6a3ba56822c2ca | /app/src/main/java/com/realizer/schoolgenie/parent/selectteacherdialog/TeacherQuerySelectStudentDialogFragment.java | 134164df72069c31501cd4f5a11bdad9b755dd0c | [] | no_license | bhagyashriatRealizerTech/SGP | 3bc7f7dad51641f95a0a6e6b55bab4e99f1786e7 | 74be3c03be866899d4f24009850492f95134f5de | refs/heads/master | 2021-01-25T06:49:21.833406 | 2017-06-12T10:30:11 | 2017-06-12T10:30:11 | 93,615,827 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,046 | java | package com.realizer.schoolgenie.parent.selectteacherdialog;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.DialogFragment;
import android.app.Fragment;
import android.app.FragmentTransaction;
import android.content.DialogInterface;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.Log;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;
import com.realizer.schoolgenie.parent.R;
import com.realizer.schoolgenie.parent.backend.DatabaseQueries;
import com.realizer.schoolgenie.parent.chat.TeacherQueryFragment;
import com.realizer.schoolgenie.parent.chat.model.TeacherQuery1model;
import com.realizer.schoolgenie.parent.exceptionhandler.ExceptionHandler;
import com.realizer.schoolgenie.parent.pupil.backend.DALMyPupilInfo;
import com.realizer.schoolgenie.parent.selectteacherdialog.adapter.TeacherMyClassStudentListAdapter;
import com.realizer.schoolgenie.parent.selectteacherdialog.model.TeacherMyClassStudentModel;
import java.util.ArrayList;
import java.util.Set;
public class TeacherQuerySelectStudentDialogFragment extends DialogFragment {
ArrayList<String> mAllData;
ArrayAdapter<String> mAdapter;
ArrayList<TeacherMyClassStudentModel> studentNameList;
Button seletedstud;
ArrayList<String> sendTo;
ListView lststudentname;
int stat;
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Thread.setDefaultUncaughtExceptionHandler(new ExceptionHandler(getActivity()));
final AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
LayoutInflater layoutInflater = getActivity().getLayoutInflater();
View view = layoutInflater.inflate(R.layout.teacher_queryview_selectstudent_layout, null);
lststudentname = (ListView) view.findViewById(R.id.lsttselctstudentname);
seletedstud = (Button) view.findViewById(R.id.btnselectstud);
sendTo = new ArrayList<String>();
Bundle b1 = getArguments();
stat = b1.getInt("STAT",0);
Log.d("STAT", "" + stat);
if (b1.getInt("Status", 0) == 1) {
//setData();
studentNameList = GetStudentName();
TeacherQuerySelectStudentDialogFragment tq = new TeacherQuerySelectStudentDialogFragment();
lststudentname.setAdapter(new TeacherMyClassStudentListAdapter(getActivity(), studentNameList, "All", tq,getList(),stat));
final EditText inputsearch = (EditText) view.findViewById(R.id.inputSearch);
inputsearch.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
if (0 != inputsearch.getText().length()) {
String spnId = inputsearch.getText().toString();
setSearchResult(spnId);
} else {
setData();
}
}
});
seletedstud.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
ArrayList<String> result = getList();
// Toast.makeText(getActivity(), " " + result.size(), Toast.LENGTH_SHORT).show();
Fragment fragment =null;
Bundle bundle = new Bundle();
Bundle b = getArguments();
if(b.getInt("FRAG",0)==1){
fragment = new TeacherQueryFragment();
}
bundle.putStringArrayList("NameList",result);
bundle.putInt("FLAG",1);
fragment.setArguments(bundle);
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.addToBackStack(null);
fragmentTransaction.replace(R.id.frame_container,fragment);
fragmentTransaction.commit();
dismiss();
}
});
builder.setTitle("Select Student");
builder.setView(view);
}
return builder.create();
}
public ArrayList<String> getList()
{
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(getActivity());
Set<String> set = preferences.getStringSet("NameList", null);
Set<String> set1 = preferences.getStringSet("SetList", null);
Set<String> set2 = preferences.getStringSet("SearchList", null);
ArrayList<String> result = new ArrayList<String>();
if (set == null) {
} else {
ArrayList<String> sample = new ArrayList<String>(set);
result.addAll(sample);
}
if (set1 == null) {
} else {
ArrayList<String> sample1 = new ArrayList<String>(set1);
result.addAll(sample1);
}
if (set2 == null) {
} else {
ArrayList<String> sample2 = new ArrayList<String>(set2);
result.addAll(sample2);
}
return result;
}
public void setData() {
Bundle b1 =getArguments();
if(b1.getInt("FRAG",0)==1) {
studentNameList = GetStudentName();
}
else if(b1.getInt("FRAG",0)==2){
studentNameList = GetStudentName1();
}
TeacherQuerySelectStudentDialogFragment tq = new TeacherQuerySelectStudentDialogFragment();
mAllData = new ArrayList<String>();
for(int i=0;i<studentNameList.size();i++)
{
mAllData.add(studentNameList.get(i).getSrnoStd());
mAllData.add(studentNameList.get(i).getStdName());
}
lststudentname.setAdapter(new TeacherMyClassStudentListAdapter(getActivity(),studentNameList,"set",tq,getList(),stat));
}
public void setSendTo(ArrayList<String> snd)
{
sendTo = snd;
Log.d("Size", "" + sendTo.size());
}
public void setSearchResult(String str) {
ArrayList mSearch = new ArrayList<TeacherMyClassStudentModel>();
Bundle b1 =getArguments();
if(b1.getInt("FRAG",0)==1) {
studentNameList = GetStudentName();
}
else if(b1.getInt("FRAG",0)==2){
studentNameList = GetStudentName1();
}
TeacherQuerySelectStudentDialogFragment tq = new TeacherQuerySelectStudentDialogFragment();
mAllData = new ArrayList<>();
for(int i=0;i<studentNameList.size();i++)
{
mAllData.add (studentNameList.get(i).getStdName().toString());
}
for (String temp : mAllData) {
if (temp.toLowerCase().contains(str.toLowerCase())) {
TeacherMyClassStudentModel tDetails = new TeacherMyClassStudentModel();
tDetails.setStdName(temp);
mSearch.add(tDetails);
}
}
lststudentname.setAdapter(new TeacherMyClassStudentListAdapter(getActivity(),mSearch,"search",tq,getList(),stat));
}
private ArrayList<TeacherMyClassStudentModel> GetStudentName()
{
Bundle b = getArguments();
String sdata =b.getString("NameList");
ArrayList<TeacherMyClassStudentModel> results = new ArrayList<>();
DatabaseQueries qr = new DatabaseQueries(getActivity());
ArrayList<TeacherQuery1model> temp = qr.GetInitiatedChat("false");
for(int i =0;i<temp.size();i++)
{
TeacherMyClassStudentModel tDetails = new TeacherMyClassStudentModel();
TeacherQuery1model o1= temp.get(i);
tDetails.setStdName(o1.getUname());
results.add(tDetails);
}
return results;
}
private ArrayList<TeacherMyClassStudentModel> GetStudentName1()
{
Bundle b = getArguments();
String sdata =b.getString("NameList");
ArrayList<TeacherMyClassStudentModel> results = new ArrayList<>();
DatabaseQueries qr = new DatabaseQueries(getActivity());
DALMyPupilInfo dal = new DALMyPupilInfo(getActivity());
String UserD[]= dal.GetSTDDIVData();
ArrayList<TeacherQuery1model> temp = qr.GetstudList(UserD[0],UserD[1]);
for(int i =0;i<temp.size();i++)
{
TeacherMyClassStudentModel tDetails = new TeacherMyClassStudentModel();
TeacherQuery1model o1= temp.get(i);
tDetails.setStdName(o1.getUname());
results.add(tDetails);
}
return results;
}
@Override
public void onResume()
{
super.onResume();
getDialog().setOnKeyListener(new DialogInterface.OnKeyListener()
{
@Override
public boolean onKey(DialogInterface dialog, int keyCode,
KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_BACK))
{
dialog.dismiss();
//This is the filter
if (event.getAction()!= KeyEvent.ACTION_DOWN)
return true;
else
{
//Hide your keyboard here!!!!!!
return true; // pretend we've processed it
}
}
else
return false; // pass on to be processed as normal
}
});
}
}
| [
"sachin.shinde@realizertech.com"
] | sachin.shinde@realizertech.com |
94a3babe26302b1165eed46f8df9009b632c36d0 | a1cc7321c90a21fb559c39a99fa54cff5915cf9e | /js8ri/src/ch08/ex10/Main.java | 4d14707345c2cadbfd8ca4299bc6c92ee3caed58 | [] | no_license | inoue-keiichi/Java-training | 1009637f51bd15fce6bcd989e6bb0c99d2255ee7 | dd5ca7bc86e32740e74a50dd831ae322b81c32a3 | refs/heads/master | 2023-05-15T04:50:00.598526 | 2023-05-08T11:43:48 | 2023-05-08T11:43:48 | 203,075,371 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,212 | java | package ch08.ex10;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.nio.file.FileAlreadyExistsException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Scanner;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;
public class Main {
public static void main(final String[] args) throws IOException {
Path path = null;
try {
path = extractZipFile(
"/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/src.zip");
displayFiles(path, "transient|volatile");
} finally {
if (path != null) {
deleteFile(path);
}
}
}
private static Path extractZipFile(final String dir) throws IOException {
final Path path = Files.createTempDirectory(null);
Files.createDirectories(path);
try (ZipInputStream in = new ZipInputStream(new FileInputStream(
new File("/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/src.zip")))) {
ZipEntry e;
while ((e = in.getNextEntry()) != null) {
final Path dst = Paths.get(path.toString(), e.getName());
if (e.isDirectory()) {
Files.createDirectories(dst);
continue;
}
Files.createDirectories(dst.getParent());
try {
Files.createFile(dst.getFileName());
} catch (final FileAlreadyExistsException ex) {
}
Files.write(dst, in.readAllBytes());
}
}
return path;
}
private static void displayFiles(final Path path, final String pattern) throws IOException {
Files.walk(path).filter(p -> {
final File file = new File(p.toString());
if (file.isDirectory()) {
return false;
}
try (Scanner scanner = new Scanner(file)) {
while (scanner.hasNext()) {
if (scanner.next().matches(pattern)) {
return true;
}
}
} catch (final FileNotFoundException e1) {
// TODO 自動生成された catch ブロック
e1.printStackTrace();
}
return false;
}).forEach(System.out::println);
}
private static void deleteFile(final Path path) throws IOException {
Files.walk(path).forEach(p -> {
final File file = new File(p.toString());
file.deleteOnExit();
});
}
}
| [
"inouejai@gmail.com"
] | inouejai@gmail.com |
cd638e7964d908d5510354e7e61af9dc20c5178f | 69d5e93f7966b2bab9aa3679293a1326eeae246f | /app/src/main/java/com/maple/socketio/im/MySocket.java | d0ca98b5ece158aff0351a2bd8b6fa70baafc4fb | [] | no_license | gaoguanqi/socketio | a05c618c50764077524807ad39adcaef81865192 | 3aab5c0b9cd982d32aeaf22c336b4c0dedbd3eff | refs/heads/master | 2022-12-15T09:35:24.256944 | 2020-09-15T10:39:02 | 2020-09-15T10:39:02 | 295,694,737 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 92 | java | package com.maple.socketio.im;
import io.socket.client.Socket;
public class MySocket {
}
| [
"307590625@qq.com"
] | 307590625@qq.com |
2cab1951ddb41cfdc5ebb3ed9ab9fd2619139d8b | e9e6aed3d6120c1ad2537e271ca3c604bf5fa384 | /NovenaPractica/Practica9/src/Empleado/EmpleadoHora.java | 317aabe2fafe6e68ae811198bfec9ec721197b64 | [] | no_license | SerranoTrinidad/LaboratorioDOO | 623bebf3f331a0afcb9bb46ad3de8555c6d98d63 | 74927e0794ae0130c875fc45027ed11c6f5e0373 | refs/heads/master | 2020-03-28T05:08:45.793562 | 2018-11-13T01:05:30 | 2018-11-13T01:05:30 | 147,759,062 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 436 | 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 Empleado;
/**
*
* @author LSTI204_B1
*/
public class EmpleadoHora implements Empleado{
@Override
public void FormaPago(){
System.out.println("El pago de este empleado sera por hora");
}
}
| [
"noreply@github.com"
] | SerranoTrinidad.noreply@github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.