blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 7
332
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
50
| license_type
stringclasses 2
values | repo_name
stringlengths 7
115
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 557
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
684M
⌀ | star_events_count
int64 0
77.7k
| fork_events_count
int64 0
48k
| gha_license_id
stringclasses 17
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 82
values | src_encoding
stringclasses 28
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
5.41M
| extension
stringclasses 11
values | content
stringlengths 7
5.41M
| authors
listlengths 1
1
| author
stringlengths 0
161
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
074a6f4fd427f131eaecbf058e8d3cd8e919b455 | ef363294f953b2a4c31626960363b7ef5276acb5 | /src/basics/Basics.java | a5765c69a9674d6d10ecdc1cf65031cf201c3f2d | []
| no_license | mrigankdoshy/java-basics | 57da88a61ea0f84dd9f1c268d3c7d69a0d313d7c | 80365498f65408137d37fca9e7bd07e5d8263e92 | refs/heads/master | 2021-09-23T02:22:54.169669 | 2018-09-20T00:59:54 | 2018-09-20T00:59:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 256 | java |
package basics;
public class Basics
{
public static void main(String[] args)
{
// TODO code application logic here
int A,B,sum;
A=10;
B=20;
sum=A+B;
System.out.println("The Sum="+sum);
}
}
| [
"[email protected]"
]
| |
2993df55ea0dbc1a053b7f24a966f902d3b2a913 | e214a4b051466a311f5f8c708a4265567eca0279 | /text1/src/Server/ServerListen.java | 17ddaeb40d019844e781319bc305536bd1057cc8 | []
| no_license | antjzkx/LAN-chat-room | 7fb59b5f6f493d626d907f5629b5bbdec4ae6410 | 28a329cbb6dee22335a389eb67c3cc453a6d0ec8 | refs/heads/master | 2020-07-16T21:49:36.896186 | 2019-09-02T15:27:30 | 2019-09-02T15:27:30 | 205,875,605 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 1,587 | java | package Server;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.net.*;
import java.io.*;
public class ServerListen extends Thread{
ServerSocket server;
JComboBox combobox;
JTextField textfield;
JTextArea textarea;
UserLinkList userLinkList; //用户列表
Node client;
ServerReceive recvThread;
public boolean isStop;
/*
* 聊天服务器的用户上线与下线监听
* */
public ServerListen(ServerSocket server,JComboBox combobox,JTextArea textarea,JTextField textfield,UserLinkList userLinkList){
this.server = server;
this.combobox = combobox;
this.textarea = textarea;
this.textfield = textfield;
this.userLinkList = userLinkList;
isStop = false;
}
public void run(){
while(!isStop && !server.isClosed()){
try{
client = new Node();
client.socket = server.accept();
client.output = new ObjectOutputStream(client.socket.getOutputStream());
client.output.flush();
client.input = new ObjectInputStream(client.socket.getInputStream());
client.username = (String) client.input.readObject();
//显示提示消息
combobox.addItem(client.username);
userLinkList.addUser(client);
textarea.append("用户"+ client.username+"上线"+"\n");
textfield.setText("在线用户"+userLinkList.getCount()+"人\n");
recvThread = new ServerReceive(textarea,textfield,combobox,client,userLinkList);
recvThread.start();
}
catch(Exception e) {}
}
}
}
| [
"[email protected]"
]
| |
5aa736ba7d2c2ce867b7777e33466e21e717d40b | 139960e2d7d55e71c15e6a63acb6609e142a2ace | /mobile_app1/module1183/src/main/java/module1183packageJava0/Foo1263.java | dfcc356a698b62c32d1e150c163ac9648ec2e45e | [
"Apache-2.0"
]
| permissive | uber-common/android-build-eval | 448bfe141b6911ad8a99268378c75217d431766f | 7723bfd0b9b1056892cef1fef02314b435b086f2 | refs/heads/master | 2023-02-18T22:25:15.121902 | 2023-02-06T19:35:34 | 2023-02-06T19:35:34 | 294,831,672 | 83 | 7 | Apache-2.0 | 2021-09-24T08:55:30 | 2020-09-11T23:27:37 | Java | UTF-8 | Java | false | false | 378 | java | package module1183packageJava0;
import java.lang.Integer;
public class Foo1263 {
Integer int0;
public void foo0() {
new module1183packageJava0.Foo1262().foo5();
}
public void foo1() {
foo0();
}
public void foo2() {
foo1();
}
public void foo3() {
foo2();
}
public void foo4() {
foo3();
}
public void foo5() {
foo4();
}
}
| [
"[email protected]"
]
| |
098c1ffad13d4dc19410d801f62ddb4bf3e02a64 | 8e7472561d8b9654e7f0dc205ad0ba224cb1afb1 | /hibernate-core/src/main/java/org/hibernate/boot/jaxb/mapping/spi/JaxbSqlResultSetMapping.java | 34a44a57fd0a6b01cbe253580c00ade4d7e4cda2 | []
| no_license | fdj32/HHH-6044 | 0b117c1e7c8fd442af69d873a7bb064ea94efc7e | 937c6f5601a5aa329ab19a3dfaffa03f8abee4f1 | refs/heads/main | 2023-08-10T23:26:39.712754 | 2021-09-28T13:08:14 | 2021-09-28T13:08:14 | 409,494,966 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,738 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.09.23 at 03:19:15 PM CST
//
package org.hibernate.boot.jaxb.mapping.spi;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
*
* @Target({TYPE}) @Retention(RUNTIME)
* public @interface SqlResultSetMapping {
* String name();
* EntityResult[] entities() default {};
* ConstructorResult[] classes() default{};
* ColumnResult[] columns() default {};
* }
*
*
*
* <p>Java class for sql-result-set-mapping complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="sql-result-set-mapping">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="entity-result" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}entity-result" maxOccurs="unbounded" minOccurs="0"/>
* <element name="constructor-result" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}constructor-result" maxOccurs="unbounded" minOccurs="0"/>
* <element name="column-result" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}column-result" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "sql-result-set-mapping", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", propOrder = {
"description",
"entityResult",
"constructorResult",
"columnResult"
})
public class JaxbSqlResultSetMapping
implements Serializable
{
@XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm")
protected String description;
@XmlElement(name = "entity-result", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm")
protected List<JaxbEntityResult> entityResult;
@XmlElement(name = "constructor-result", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm")
protected List<JaxbConstructorResult> constructorResult;
@XmlElement(name = "column-result", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm")
protected List<JaxbColumnResult> columnResult;
@XmlAttribute(name = "name", required = true)
protected String name;
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the entityResult property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the entityResult property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getEntityResult().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JaxbEntityResult }
*
*
*/
public List<JaxbEntityResult> getEntityResult() {
if (entityResult == null) {
entityResult = new ArrayList<JaxbEntityResult>();
}
return this.entityResult;
}
/**
* Gets the value of the constructorResult property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the constructorResult property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getConstructorResult().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JaxbConstructorResult }
*
*
*/
public List<JaxbConstructorResult> getConstructorResult() {
if (constructorResult == null) {
constructorResult = new ArrayList<JaxbConstructorResult>();
}
return this.constructorResult;
}
/**
* Gets the value of the columnResult property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the columnResult property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getColumnResult().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link JaxbColumnResult }
*
*
*/
public List<JaxbColumnResult> getColumnResult() {
if (columnResult == null) {
columnResult = new ArrayList<JaxbColumnResult>();
}
return this.columnResult;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}
| [
"[email protected]"
]
| |
57bfb5cd9592daeaf2a7158b5b4943cd1ec1a6e1 | f65509f3a5048d6fda2981cbaffe163823e1f51f | /qa-javaFX-module/src/main/java/org/rb/qa/ui/qa/QaPresenter.java | d25fc550871977280ec5cc43309b4f7273864891 | []
| no_license | rigels02/goods-qa-main | 0a0abd250d664e90c1ad0261961a40f3df972d2f | cb429842a71cedee57b47a04d3cd60a15f424a2d | refs/heads/master | 2021-04-03T10:31:02.081482 | 2018-11-19T15:09:25 | 2018-11-19T15:09:25 | 124,577,428 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 15,523 | java | package org.rb.qa.ui.qa;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Optional;
import java.util.ResourceBundle;
import java.util.logging.Level;
import java.util.logging.Logger;
import javafx.application.Platform;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.Scene;
import javafx.scene.control.Alert;
import javafx.scene.control.ChoiceDialog;
import javafx.scene.control.Label;
import javafx.scene.control.ListCell;
import javafx.scene.control.ListView;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.input.KeyCode;
import javafx.scene.input.KeyEvent;
import javafx.scene.input.MouseEvent;
import javafx.scene.web.WebView;
import javafx.stage.FileChooser;
import javafx.stage.Modality;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
import javafx.stage.WindowEvent;
import javafx.util.Callback;
import javax.inject.Inject;
import javax.xml.bind.JAXBException;
import org.rb.qa.model.KNBase;
import org.rb.qa.storage.StorageType;
import org.rb.qa.storage.KNBaseSaver;
import org.rb.qa.model.QA;
import org.rb.qa.service.DocType;
import org.rb.qa.service.KNBaseEditor;
import org.rb.qa.service.QAGenerator;
import org.rb.qa.storage.InitKNBaseMulti;
import org.rb.qa.ui.MainApp;
import org.rb.qa.ui.qaeditview.QaeditviewPresenter;
import org.rb.qa.ui.qaeditview.QaeditviewView;
import org.rb.qa.ui.tools.Dialogs;
import org.rb.qa.storage.StorageFactories;
import org.rb.qa.storage.jaxb.JaxbFactory;
import org.rb.qa.ui.restful.RestfulPresenter;
import org.rb.qa.ui.restful.RestfulView;
/**
*
* @author raitis
*/
public class QaPresenter implements Initializable {
private ResourceBundle resources = null;
@Inject
Stage primaryStage;
@Inject
QAGenerator qaGenerator;
//-------
@FXML
private Label fmainInfo;
@FXML
private ListView<String> fquestionView;
@FXML
private WebView fanswerView;
private Image icon_html;
private Image icon_md;
private int totalQuestions;
private int htmlQuestion;
private int mdQuestions;
@Override
public void initialize(URL location, ResourceBundle resources) {
this.resources = resources;
icon_html= new Image(getClass().getResourceAsStream("/images/icons8-html-48.png"));
icon_md= new Image(getClass().getResourceAsStream("/images/icons8-markdown-48.png"));
updateListView();
fquestionView.setOnMouseClicked(new EventHandler<MouseEvent>() {
@Override
public void handle(MouseEvent event) {
System.out.println("clicked on "+ fquestionView.getSelectionModel().getSelectedIndex()
+ " Item: "+fquestionView.getSelectionModel().getSelectedItem());
updateAnswerView(fquestionView.getSelectionModel().getSelectedIndex());
}
});
fquestionView.setOnKeyReleased(new EventHandler<KeyEvent>() {
@Override
public void handle(KeyEvent event) {
if(fquestionView.getSelectionModel().getSelectedIndex()<0)
return;
if(event.getCode() == KeyCode.ENTER){
updateAnswerView(fquestionView.getSelectionModel().getSelectedIndex());
}
}
});
countDocs();
}
private void countDocs() {
htmlQuestion = 0;
mdQuestions = 0;
Date lastModified = ((JaxbFactory)StorageFactories.take().getFactory()).getDataModifyDate();
totalQuestions = qaGenerator.getKnBase().getQaList().size();
String selectedKnb = String.format("%s(%s)", InitKNBaseMulti.getKnbXML(),InitKNBaseMulti.getKnbTitle());
for (QA qa : qaGenerator.getKnBase().getQaList()) {
DocType type = qaGenerator.getAnswerDocType(qa.getAnswer());
//type == DocType.HTML
switch(type){
case HTML:
htmlQuestion++;
break;
case Markdown:
mdQuestions++;
break;
}
}
fmainInfo.setText(String.format("Total Questions:%d, HTML= %d, MD= %d, Modified: %s, Selected: %s",
totalQuestions, htmlQuestion, mdQuestions,lastModified,selectedKnb));
}
public void updateListView(){
List<String> questions = qaGenerator.getAllQuestionsList();
ObservableList<String> olist= FXCollections.observableList(questions);
fquestionView.setItems(olist);
fquestionView.setCellFactory(new Callback<ListView<String>, ListCell<String>>() {
@Override
public ListCell<String> call(ListView<String> param) {
return new ListCell<String>(){
@Override
protected void updateItem(String item, boolean empty) {
super.updateItem(item, empty);
if(empty){
setText(null);
setGraphic(null);
}else {
DocType type = qaGenerator.getAnswerDocTypeForQuestion(item);
if(type==DocType.HTML){
ImageView rect = new ImageView(icon_html);
resizeImageView(rect);
setGraphic(rect);
}else if(type==DocType.Markdown){
ImageView rect = new ImageView(icon_md);
resizeImageView(rect);
setGraphic(rect);
}
setText(item);
}
}
private void resizeImageView(ImageView rect) {
//rect.setFitHeight(rect.getFitHeight() / 2);
//rect.setFitWidth(rect.getFitWidth() / 2);
rect.setFitWidth(24);
rect.setPreserveRatio(true);
}
};
}
});
fquestionView.refresh();
updateAnswerView(fquestionView.getSelectionModel().getSelectedIndex());
countDocs();
}
private void updateAnswerView(int selectedItemIdx) {
if(selectedItemIdx< 0) {
fanswerView.getEngine().loadContent("");
return;
}
String answer = qaGenerator.getAnswerforQuestionByIndex(selectedItemIdx);
fanswerView.getEngine().loadContent(answer);
}
//===========================//
@FXML
void onBtnAdd(ActionEvent event) {
/**
fquestionView.getItems().add("Put question here...");
fquestionView.getSelectionModel().selectLast();
if(fquestionView.getSelectionModel().getSelectedIndex()<0) return; //??
*/
takeSelectedAndStartEditView(true);
}
@FXML
void onBtnDelete(ActionEvent event) {
if(fquestionView.getSelectionModel().getSelectedIndex()<0) return;
int idx = fquestionView.getSelectionModel().getSelectedIndex();
boolean ok = Dialogs.popupConfirmMsg("Confirm",
"Delete selected Question record?\nQ= "+
qaGenerator.getQuestionByIndex(idx));
if(!ok) return;
KNBaseEditor.take(qaGenerator.getKnBase()).delete(idx);
try {
MainApp.app.reloadAppDataConfig();
} catch (Exception ex) {
Logger.getLogger(QaPresenter.class.getName()).log(Level.SEVERE, null, ex);
}
updateListView();
}
@FXML
void onBtnMove(ActionEvent event) {
if(fquestionView.getSelectionModel().getSelectedIndex()<0) return;
int idx = fquestionView.getSelectionModel().getSelectedIndex();
int maxIdx = qaGenerator.getAllQuestionsList().size()-1;
//TODO
int newIdx = Dialogs.NumInputDialog("Select position to move on", maxIdx, "Input pos number");
//System.out.println("Result = "+newIdx);
if(newIdx == -1)
return;
try {
KNBaseEditor.take(qaGenerator.getKnBase()).moveItem(idx, newIdx);
MainApp.app.reloadAppDataConfig();
} catch (Exception ex) {
Logger.getLogger(QaPresenter.class.getName()).log(Level.SEVERE, null, ex);
Dialogs.popupError("Error", ex.getMessage());
}
updateListView();
}
private void takeSelectedAndStartEditView(boolean addNew){
Scene oldScene = primaryStage.getScene();
QaeditviewView editView = new QaeditviewView();
QaeditviewPresenter qeditPresenter = (QaeditviewPresenter)editView.getPresenter();
int idx= -1;
QA qa;
if(!addNew){
idx = fquestionView.getSelectionModel().getSelectedIndex();
qaGenerator.setUseConverter(false); //switch off converter
qa = qaGenerator.getQuestionAnswer(idx);
qaGenerator.setUseConverter(true); //switch on
}else{
qa = new QA(String.format("Q%d. Put Question here...", (totalQuestions+1)),"Put Answer here...");
}
qeditPresenter.initData(oldScene,idx,qa);
Scene scene = new Scene( editView.getView() );
//keep QaPresenter reference
scene.setUserData(this);
// scene.getStylesheets().add("/styles/Styles.css");
primaryStage.setTitle( "Edit Question Answer" );
primaryStage.setScene( scene );
primaryStage.show();
}
@FXML
void onBtnEdit(ActionEvent event) {
if(fquestionView.getSelectionModel().getSelectedIndex()<0) return;
takeSelectedAndStartEditView(false);
}
@FXML
void onExportKNBase(ActionEvent event) throws Exception{
File file = saveFile("Select file to save");
if(file==null) return;
try {
KNBaseSaver.take(
qaGenerator.getKnBase(), StorageFactories.take().getFactory()
)
.save(file.getPath());
} catch (JAXBException | FileNotFoundException ex) {
Logger.getLogger(QaPresenter.class.getName()).log(Level.SEVERE, null, ex);
Dialogs.popupError("Error", ex.getMessage());
return;
}
Dialogs.popupMsg("File "+file.getName()+" saved!");
}
@FXML
void onExportBySimpleXml(ActionEvent event) {
File file = saveFile("Select file to save");
if(file==null) return;
try {
KNBaseSaver.take(
qaGenerator.getKnBase(), StorageFactories.use(StorageType.SimpleStorage).getFactory()
)
.save(file.getPath());
} catch (Exception ex) {
Logger.getLogger(QaPresenter.class.getName()).log(Level.SEVERE, null, ex);
Dialogs.popupError("Error", ex.getMessage());
return;
}
Dialogs.popupMsg("File "+file.getName()+" saved!");
}
private File saveFile(String title){
if(title==null || title.isEmpty()){
title = "Output File";
}
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle("Open "+ title);
Stage stage = new Stage();
File selection = fileChooser.showSaveDialog(stage);
System.out.println("Selection = "+selection);
return selection;
}
@FXML
void onRestfulServer(ActionEvent event) {
Scene oldScene = primaryStage.getScene();
Stage server = new Stage(StageStyle.UTILITY);
//Disable close button
server.setOnCloseRequest((WindowEvent e) -> {
e.consume();
});
server.initModality(Modality.APPLICATION_MODAL);
RestfulView restfulView = new RestfulView();
RestfulPresenter restfulPresenter = (RestfulPresenter)restfulView.getPresenter();
restfulPresenter.initData(primaryStage,server);
Scene scene = new Scene( restfulView.getView() );
//keep QaPresenter reference
//scene.setUserData(this);
// scene.getStylesheets().add("/styles/Styles.css");
server.setTitle( "Restful Server" );
server.setScene( scene );
server.show();
}
@FXML
void onPreferencesSelected(ActionEvent event) {
List<String> titles = InitKNBaseMulti.getKnbTitles();
List<String> files = InitKNBaseMulti.getKnbFiles();
int selected = InitKNBaseMulti.getKnbIdx();
List<String> selectionList = new ArrayList<>();
for (int i=0; i< titles.size(); i++) {
selectionList.add(String.format("%s (%s)", titles.get(i),files.get(i)));
}
ChoiceDialog<String> dialog = new ChoiceDialog<>(selectionList.get(selected),selectionList);
dialog.setTitle("Selecte KNB file");
dialog.setHeaderText("Choice KNB:");
Optional<String> result = dialog.showAndWait();
if(result.isPresent()){
System.out.println("file selected: "+result.get());
String choosen = result.get();
int idx = selectionList.indexOf(choosen);
try {
InitKNBaseMulti.setKnbXML(idx);
} catch (IOException ex) {
Logger.getLogger(QaPresenter.class.getName()).log(Level.SEVERE, null, ex);
Alert errDlg = new Alert(Alert.AlertType.ERROR);
errDlg.setContentText("Error to save selection: "+ex.getMessage());
errDlg.showAndWait();
return;
}
KNBase knBase= null;
try {
//TODO load selected KNB data
knBase = InitKNBaseMulti.go(StorageFactories.take().getFactory());
} catch (Exception ex) {
Logger.getLogger(QaPresenter.class.getName()).log(Level.SEVERE, null, ex);
Alert errDlg = new Alert(Alert.AlertType.ERROR);
errDlg.setContentText("Error to load knBase: "+ex.getMessage());
errDlg.showAndWait();
return;
}
qaGenerator.setKnBase(knBase);
updateListView();
}
}
@FXML
void onQuit(ActionEvent event) {
Platform.exit();
}
}
| [
"[email protected]"
]
| |
7a582f59bc2596116e28758281826d550b5582dc | ff8deb04209952145dbc1efbd226dc2be1b8231e | /JSPBasicProject6/src/com/sist/temp/FoodManager.java | 76c39b73532b0f4c8b0995c1b6372f6c4b177d60 | []
| no_license | chaijewon/2020-12-22-webStudy | e9c2139681930ae44985dc3399b20314a62be34f | ae453c535926c53075bcf50d05596d88f1adf3fa | refs/heads/master | 2023-04-04T10:57:05.571275 | 2021-04-08T08:35:13 | 2021-04-08T08:35:13 | 341,717,649 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,476 | java | package com.sist.temp;
import java.util.StringTokenizer;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
public class FoodManager {
public static void main(String[] args) {
// TODO Auto-generated method stub
try
{
Document doc=Jsoup.connect("https://www.mangoplate.com/restaurants/9qHLgnJtje").get();
//Element addr=doc.selectFirst("table.info td");
//System.out.println(addr.text());
Element json=doc.selectFirst("script#reviewCountInfo");
System.out.println(json.data());
String s=json.data();
JSONParser jp=new JSONParser();
JSONArray arr=(JSONArray)jp.parse(s);
for(int i=0;i<arr.size();i++)
{
JSONObject obj=(JSONObject)arr.get(i);
System.out.println(obj.get("count"));
}
Elements menu=doc.select("table.info td.menu_td");
String m="";
for(int i=0;i<menu.size();i++)
{
m+=menu.get(i).text();
}
StringTokenizer st=new StringTokenizer(m,"원");
while(st.hasMoreTokens())
{
System.out.println(st.nextToken());
}
System.out.println(m);
}catch(Exception ex) {}
}
}
| [
"SIST@DESKTOP-J6TRPCU"
]
| SIST@DESKTOP-J6TRPCU |
621325c68a4b8a98b8093949fb55ffdcd7e2fe6d | 04065ebe4d6f6046eb6fa14fb0b6fdb7c8666d2b | /components/plots/src/org/geworkbench/components/plots/CellRenderer.java | f70f02b4fabfc3152dd1379384e108b319d0c41e | []
| no_license | cwt1/geworkbench-components | aefbdd72d0a6deecf68519005d2e7b452077c9c7 | dc760e7ddba9ae016b3ac7ad56cde02f00325f4a | refs/heads/master | 2021-05-30T14:18:52.614275 | 2016-02-10T21:13:42 | 2016-02-10T21:13:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,762 | java | package org.geworkbench.components.plots;
import java.awt.Color;
import java.awt.Component;
import javax.swing.DefaultListCellRenderer;
import javax.swing.JLabel;
import javax.swing.JList;
/**
* Cell rendered for the lists that handles the special selection conditions.
*/
class CellRenderer extends DefaultListCellRenderer {
private static final long serialVersionUID = -33685131076219308L;
private final ChartGroup group;
public CellRenderer(ChartGroup group) {
this.group = group;
}
@Override
public Component getListCellRendererComponent(JList<?> list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
JLabel label = (JLabel) super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus); //To change body of overridden methods use File | Settings | File Templates.
String labelToMatch = label.getText().trim();
if(group.charts.size() > 0){
// Check for x-axis
String xLabel = group.charts.get(0).getXLabel().trim();
if(labelToMatch.trim().startsWith(xLabel)){
// Color the label to indicate that it is on the x-axis of the chart.
label.setBackground(Color.BLACK);
label.setForeground(Color.WHITE);
} else {
// Check for y-axis
for(Chart c: group.charts){
String yLabel = c.getYLabel().trim();
if(labelToMatch.trim().startsWith(yLabel)){
// Color the label to indicate that there is a chart.
label.setBackground(Color.LIGHT_GRAY);
}
}
}
}
return label;
}
} | [
"[email protected]"
]
| |
2d1bcce99e3ca03e049e4a1d1e2df660f7eda8df | 3e56f40ece67f8a7f0f4b8dd0203ca82a30acfd4 | /qchat-service/src/main/java/com/qchat/netty/UserChannelRel.java | c1634ac0f7f63e773a7ef99a680b41f12bad5189 | [
"MIT"
]
| permissive | iAtlantis/QChat | 161b58f47f329a75e9a6b7d9f3a53ab1f034b233 | 706c2aefa7f35bfc81b7a47a52df27345bffefa6 | refs/heads/main | 2023-08-18T19:51:20.762454 | 2021-10-15T08:44:59 | 2021-10-15T08:44:59 | 366,246,670 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 685 | java | package com.qchat.netty;
import java.util.HashMap;
import io.netty.channel.Channel;
/**
* @Description: 用户id和channel的关联关系处理
*/
public class UserChannelRel {
private static HashMap<String, Channel> manager = new HashMap<>();
public static void put(String senderId, Channel channel) {
manager.put(senderId, channel);
}
public static Channel get(String senderId) {
return manager.get(senderId);
}
public static void output() {
for (HashMap.Entry<String, Channel> entry : manager.entrySet()) {
System.out.println("UserId: " + entry.getKey()
+ ", ChannelId: " + entry.getValue().id().asLongText());
}
}
}
| [
"[email protected]"
]
| |
6f6fcdaf31cc633e36e3d286a9f098e10ed787ba | c6728b4991d6167e217744e7f6af17c654720ca1 | /core/src/main/java/com/rxmuhammadyoussef/core/widget/rxedittext/TextChangesListener.java | a5fd1489d2dba620dff87e40df0148f3b0c7a86f | [
"Apache-2.0"
]
| permissive | Anabeesh/anabeesh-android | 2a0f89205fa135dea078d7dd5038bb0dabdda9c1 | fce1ae79cccf0086930b4b7256cfd1006d3d20bf | refs/heads/develop | 2021-01-25T14:16:56.312808 | 2018-05-09T21:56:06 | 2018-05-10T18:27:56 | 123,679,387 | 1 | 1 | Apache-2.0 | 2018-05-10T18:27:58 | 2018-03-03T09:51:52 | Java | UTF-8 | Java | false | false | 130 | java | package com.rxmuhammadyoussef.core.widget.rxedittext;
public interface TextChangesListener<T> {
void onChanged(T result);
}
| [
"[email protected]"
]
| |
12684b099584b37aa61df8748fc8cdc0c5f9a752 | 038cf2d7cd0e62cc55667595c3b3dff73e5be906 | /src/priv/algorithm/coding_interviews/Question_63.java | 98b32edb1a615dbd1f18c1ea265044b0d8604997 | []
| no_license | MindExp/nowCoder | eba6ba8fbf682198d47254a28d1d847d16e05e1b | 0a5282f80ed1381a13e0a4c311f7ab3452c8f9d9 | refs/heads/master | 2023-04-06T17:26:21.535155 | 2019-09-24T16:54:32 | 2019-09-24T16:54:32 | 203,813,240 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,115 | java | package priv.algorithm.coding_interviews;
/**
* 63. 股票的最大利润
* 可以有一次买入和一次卖出,买入必须在前。求最大收益。
*/
public class Question_63 {
public static void main(String[] args) {
int[][] testInstances = {{7, 1, 5, 3, 6, 4}, {9, 11, 8, 5, 7, 12, 16, 14}};
Question_63 question_63 = new Question_63();
for (int[] testInstance : testInstances) {
int maxProfit = question_63.maxProfit(testInstance);
System.out.println(maxProfit);
}
}
private int maxProfit(int[] timeStamp) {
if (timeStamp == null || timeStamp.length == 0)
return 0;
int maxProfit = Integer.MIN_VALUE, minValue = Integer.MAX_VALUE;
int[] dp = new int[timeStamp.length];
for (int time = 0; time < timeStamp.length; time++) {
if (timeStamp[time] < minValue)
minValue = timeStamp[time];
dp[time] = timeStamp[time] - minValue;
if (dp[time] > maxProfit)
maxProfit = dp[time];
}
return maxProfit;
}
}
| [
"[email protected]"
]
| |
fe0de2ded937506dff5ed520447beb1d97ef2e21 | 83d4e49752f31403e2c9b30c3d64553e3553047a | /BankAccount.java | 93ac852aa8e2bd0b723b53dc61818e81652c8868 | []
| no_license | j6allen/BankAccount | 890ce4a1a78789d3dd228392084efa03b038eaae | 32a33a3b09d32e23d597ed61a8514b9ce7d1640a | refs/heads/master | 2021-01-25T10:16:27.084827 | 2014-08-01T16:21:42 | 2014-08-01T16:21:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,438 | java | /****************
@Author Jesse Allen
@Created October 11 2013
*****************/
/**
A Class that holds information on a bank account
*/
public class BankAccount
{
//Private instance fields
private double balance;
private String firstName;
private String lastName;
/**
Default constructor
*/
public BankAccount()
{
balance = 0;//sets balance to zero
}
/**
Constructor
@param balance The starting balance of the account
*/
public BankAccount(double balance)
{
//Used this keyword to avoid shadowing
this.balance = balance;
}
/**
Copy Constructor
@param origAccount The account to be copied
*/
public BankAccount(BankAccount origAccount)
{
balance = origAccount.balance;
}
/**
deposits an amount in the account
@param amount The amount to be deposited
*/
public void deposit(double amount)
{
balance += amount;
}
/**
withdrawls an amount from the account
@param amount The amount to be withdrawn
*/
public void withdrawl(double amount)
{
balance -= amount;
}
/**
Gets the current balance of the account
@return Returns the accounts balance
*/
public double getBalance()
{
return balance;
}
}
| [
"[email protected]"
]
| |
690b5ecac8f33bdeb878a879f2435ac0a70f8a6d | 9ef576f83c6df3591b899ed00fe27322a20d5eb7 | /jamud-plugin/com/jamud/plugin/logicmoo/util/StatTable.java | a8175e99fee17448ffb70ad44e8c38e069f40b3d | []
| no_license | opensim4opencog/PrologVirtualWorlds | fbe064a3eaef97724ad887c12c2775ddb3e1edf9 | a31b65b566e13a4aa9df3ae07d949e97321941e9 | refs/heads/master | 2021-01-10T05:57:44.190374 | 2008-09-28T18:22:57 | 2008-09-28T18:22:57 | 52,572,229 | 5 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,715 | java | package logicmoo.util;
import java.util.Enumeration;
import java.util.Hashtable;
import java.util.StringTokenizer;
public class StatTable extends Hashtable implements Cloneable {
public StatTable() {
super();
}
public StatTable(String list) {
super();
if(list != null && list.trim().length() > 0) {
list = Util.replace(Util.replace(Util.replace(list, "\r", ""), "\n", ""), " ", "");
for(StringTokenizer st = new StringTokenizer(list, ";"); st.hasMoreTokens(); ) {
String[] n = Util.split(st.nextToken(), ":");
n[1] = n[1].trim();
if(n[1].length() > 0)
put(n[0].trim(), n[1]);
}
}
}
public synchronized String stat(String name, String defaultVal) {
Object o = get(name);
if(o != null)
return o.toString();
else
return defaultVal;
}
public synchronized int stat(String name, int defaultVal) {
Object o = get(name);
if(o != null) {
if(o instanceof Integer)
return ((Integer)o).intValue();
else if(o instanceof String) {
try {
Integer i = Integer.valueOf((String)o);
put(name, i);
return i.intValue();
}
catch(Exception e) {
return defaultVal;
}
}
}
return defaultVal;
}
public synchronized void set(String name, int value) {
put(name, new Integer(value));
}
public synchronized void set(String name, String value) {
put(name, value);
}
public synchronized String toString() {
String s = "";
for(Enumeration enum = keys(); enum.hasMoreElements(); ) {
String k = (String) enum.nextElement();
Object i = get(k);
if(i != null)
s += k + ":" + i.toString() + ";\n";
}
return s;
}
} | [
"[email protected]"
]
| |
53c3ead12b10e73a419dd6054f1db776245ac231 | 36ad89a89a6ec3e9fffefc78941de8dfdd96c18b | /src/main/java/ContentItem.java | 3b92fc24e4f1bc4ce46c4fe07701c2968a96fb6f | []
| no_license | justinawcs/dove | 833e4901bb023c00818fc5df7cf67579a607c7f3 | e8c28b3f142f1817edd9d422d642266c80e22e52 | refs/heads/master | 2021-01-20T19:57:59.594623 | 2016-08-02T19:59:00 | 2016-08-02T19:59:00 | 64,786,688 | 0 | 0 | null | 2016-08-02T19:59:01 | 2016-08-02T19:33:47 | Java | UTF-8 | Java | false | false | 8,437 | java | import java.awt.Image;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.util.Date;
import java.util.ArrayList;
import javax.imageio.ImageIO;
/**
* ContentItem class object maintains information from the Dove file and
* included files.
* @author Justin A. Williams
* @version 0.0.8
*/
public class ContentItem{
private File item; //Content Folder
private long size; //Total file size
private Date date; //Creation Date
private Info info; //Given info from data file
private boolean hasData;
private boolean hasImage;
private Image img; //thumbnail image
private String imgType = ""; //File extension of thumbnail
private long imgSize;
private ArrayList<String> names = new ArrayList<String>(); //Filelist names
/**
* Constructor: takes File object given and tests it to see if it is valid
* Dove content and/or has a thumbnail image.
* @param it ContentItem file(folder) location
*/
public ContentItem(File it){
item = it;
hasData = testData(); //sets hasData, hasImage, imgType
size = dive(item);
if(it.isDirectory()){
makeNames(it, "");
}
if(hasData){
makeInfo(); // date and info
}else{//There is no info and dates to get so they remain empty
info = null;
date = null;
}
if(hasImage){
try{
System.out.print("[ContentItem] Fetching img: " +
item.getAbsolutePath() );
img = ImageIO.read(new File(item.getAbsolutePath() + File.separator +
"thumb." + imgType ));
System.out.println(" - Done.");
}catch(IOException e){
System.out.println("Invalid thumb"); //should never get thrown
}
}else{//There is no image so null pointer
img = null;
}
System.out.println("[ContentItem] "+ toString());
}
/**
* Recursive method that returns the total file size of all files included in
* the ContentItem
* @param f starting file
* @return long number of bytes
*/
private long dive(File f){
long count = 0;
if(!f.canRead()){
count = 0;
}
else if(f.isFile()){
return f.length();
}else{//f.isFolder()
count += f.length();
File files[] = f.listFiles();
if(files == null /*|| files.length == 0 */){
System.out.println("EmptyFolder: " + f );
}else{
for(int i=0;i<files.length;i++){
if(files[i].isFile()){
count += files[i].length();
}else /*if(files[i].isDirectory())*/ {
count += dive(files[i]);
}
}
}
}
return count;
//if File isDirectory then Dive(File new);
//if File isFile then count += size
}
// build arraylist of names of files
/**
* Recursivley builds arraylist of names of all included files
* @param f File location
* @param bc "breadcrumb" Folder depth string, initially empty
*/
private void makeNames(File f, String bc){
File files[] = f.listFiles();
if(files == null /*|| files.length == 0 */){
System.out.println("EmptyFolder: " + f );
}else{
for(int i=0;i<files.length;i++){
names.add( bc + File.separator + files[i].getName() );
//every file/folder, etc. item gets copied, folder get delved into
if(files[i].isDirectory()){
makeNames(files[i], bc + File.separator + files[i].getName()
+ File.separator);
}
}
}
}
/**
* Tests item to see if valid Dove ContentItem
* @return true if both hasData and hasImage, sets hasData, hasImage, imgType
returns false if not directory, or cannot read, or no Data or image
*/
private boolean testData(){
//Returns true if both hasData and hasImage, sets hasData, hasImage, imgType
//Returns false if not directory, or can read, or no Data or image
if(item.isDirectory() && item.canRead() ){
//boolean data = false;
//boolean thumb = false;
String t[] = item.list();
for(int i=0;i<t.length;i++){
// checks info.dat for proper info
if(t[i].equals("info.dat") ){
hasData = true;
} // checks for thumb.ext file
if(t[i].startsWith("thumb.")){
/*if(t[i].equals("thumb.png") || t[i].equals("thumb.jpg")
|| t[i].equals("thumb.gif") ){*/
int len = t[i].lastIndexOf(".")+1; //the sixth position
imgType = t[i].substring(len, t[i].length());
hasImage = true;
imgSize = item.listFiles()[i].length();
//hasImage = true;
}
}
return (hasData);
}else{
return false;
}
}
/**
* Reads from info.dat file, a necessary file to be valid ContentItem.
*/
private void makeInfo(){
try {
String pull = (item.getAbsolutePath() + File.separator + "info.dat");
//System.out.println(pull.toString());
FileInputStream in = new FileInputStream(pull);
ObjectInputStream inFile = new ObjectInputStream(in);
info = (Info) inFile.readObject();
date = info.getDate();
inFile.close();
} catch (IOException e) {
System.out.println("Info not verified before searching!!");
e.printStackTrace();
} catch (ClassNotFoundException e){
System.out.println("Can't Find Info.class!");
e.printStackTrace();
}
}
/**
* Returns ContentItem file location(folder) as File object.
* @returns File location
*/
public File getFile() {
return item;
}
/**
* Returns total file size in bytes
* @returns total Filesize
*/
public long getSize() {
return size;
}
/**
* Returns the exact time ContentItem was created as a Date Object.
* @returns creation Date
*/
public Date getDate() {
return date;
}
/**
* Returns Info object that holds more data about the ContentItem
* @returns Info object
*/
public Info getInfo() {
return info;
}
/**
* Returns the image thumbnail
* @returns thumbnail image
*/
public Image getImage(){
return img;
}
/**
* Returns the image thumbnail file
* @returns thumbnail image file
*/
public File getImageFile(){
return new File(item.getAbsoluteFile() +File.separator+ "thumb." + imgType);
}
/**
* Returns the file size of the image thumbnail
* @returns thumbnail image filesize
*/
public long getImageSize(){
return imgSize;
}
/**
* Returns true if ContentItem has a thumbnail image
* @ reuturns boolean true if there is a thumbnail image
*/
public boolean hasImage(){
return hasImage;
}
/**
* Returns arraylist of filenames in the ContentItem folder
* @returns String-type ArrayList of all included file names
*/
public ArrayList<String> getNames(){
return names;
}
/**
* Returns a scaled instance of thumbnail image, using a fast but lossy
* conversion.
* @param width desired width
* @param height desired height
*/
public Image getImageScaledFast(int width, int height){
//TODO add precheck or try/catch to catch img == null
int h = img.getHeight(null);
int w = img.getWidth(null);
if(h > w){
return img.getScaledInstance(-1, height, Image.SCALE_FAST);
}if(w > h){
return img.getScaledInstance(width, -1, Image.SCALE_FAST);
}else{
return img.getScaledInstance(width, height, Image.SCALE_FAST);
}
}
//TODO check are these two methods equivalent, combine into overloaded method?
/**
* Returns a scaled instance of thumbnail image, using a smooth but slow
* conversion.
* @param width desired width
* @param height desired height
*/
public Image getImageScaledSmooth(int width, int height){
return img.getScaledInstance(width, height, Image.SCALE_SMOOTH);
}
/**
* Reutns true if this ContentItem has been found to have vaild data
* @returns boolean true if valid data has been found
*/
public boolean hasData() {
return hasData;
}
/**
* Returns a string of class object information
* @returns relevant class information in string object
*/
@Override
public String toString(){
return item.getAbsolutePath() + " Size:" + size + " ContentItem:" + hasData
+" "+ date + (hasData ? " Name:"+info.getName():" No Data") +
(hasImage ? " Image:" + hasImage +" imgSize:"+
imgSize : " No image.") ;
}
} | [
"[email protected]"
]
| |
fedf36c72511d099098bff0eec32a8ffc179afd6 | 74af5f3969b08b9359f2650b3ce845ee96b2d8fb | /app/src/main/java/jp/co/miraishonen/cycro/helper/BitmapHelper.java | ca49283ec8020178ffc543dd5d5b7f4dcb597022 | []
| no_license | mobilewebguru/bluetoothchat | 13a56483e1252000510c482b19919870ccd854c0 | 68c6a99ef3abe3cc548281155575c4b9eae4105c | refs/heads/master | 2021-06-26T22:16:56.407259 | 2017-09-11T18:56:20 | 2017-09-11T18:56:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,861 | java | package jp.co.miraishonen.cycro.helper;
import java.io.FileNotFoundException;
import android.content.Context;
import android.graphics.AvoidXfermode;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.PixelFormat;
import android.graphics.PixelXorXfermode;
import android.graphics.Rect;
import android.graphics.Xfermode;
import android.graphics.AvoidXfermode.Mode;
import android.net.Uri;
public class BitmapHelper {
public static Bitmap decodeUri(Uri selectedImage, Context context, int requiredSize) throws FileNotFoundException {
// Decode image size
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeStream(context.getContentResolver().openInputStream(selectedImage), null, o);
// Find the correct scale value. It should be the power of 2.
int width_tmp = o.outWidth, height_tmp = o.outHeight;
int scale = 1;
while ((width_tmp / scale > requiredSize && height_tmp / scale > requiredSize)) {
scale ++;
}
// Decode with inSampleSize
BitmapFactory.Options o2 = new BitmapFactory.Options();
o2.inSampleSize = scale;
return BitmapFactory.decodeStream(context.getContentResolver().openInputStream(selectedImage), null, o2);
}
public static Bitmap createRegularBitmap(Bitmap bm, int dstSize) {
int srcWidth = bm.getWidth();
int srcHeight = bm.getHeight();
Bitmap tmpBitmap = Bitmap.createBitmap(dstSize, dstSize, Bitmap.Config.ARGB_8888);
Bitmap dstBitmap = Bitmap.createBitmap(dstSize, dstSize, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(tmpBitmap);
Canvas dstCanvas = new Canvas(dstBitmap);
Rect srcRect;
if (srcWidth < srcHeight) {
srcRect = new Rect(0, (srcHeight - srcWidth) / 2, srcWidth, (srcHeight + srcWidth) / 2);
} else {
srcRect = new Rect((srcWidth - srcHeight) / 2, 0, (srcWidth + srcHeight) / 2, srcHeight);
}
canvas.drawBitmap(bm, srcRect, new Rect(0, 0, dstSize, dstSize), null);
//dstCanvas.drawBitmap(bm, srcRect, new Rect(0, 0, dstSize, dstSize), null);
Paint paint = new Paint();
paint.setColor(Color.BLACK);
paint.setStyle(Paint.Style.FILL);
dstCanvas.drawCircle(dstSize / 2, dstSize / 2, dstSize / 2, paint);
for (int i = 0; i < dstBitmap.getWidth(); i ++) {
for (int j = 0; j < dstBitmap.getHeight(); j ++) {
int pixel = dstBitmap.getPixel(i, j);
if (pixel == Color.BLACK) {
dstBitmap.setPixel(i, j, tmpBitmap.getPixel(i, j));
}
}
}
return tmpBitmap;
}
public static Bitmap getPhotoBitmap(String photoPath) {
return BitmapFactory.decodeFile(photoPath);
}
}
| [
"[email protected]"
]
| |
6b4e938fa5228670aa175d067dee2b3ade650968 | 86215bd7ab2457497727be0193d3960feec3b524 | /demo-fpml/src/main/generated-source/org/fpml/reporting/AdjustableRelativeOrPeriodicDates.java | 6165dbde9a49aca82ae22c659f0eedf652c7954c | []
| no_license | prasobhpk/stephennimmo-templates | 4770d5619488fe39ffa289b6ede36578c29d6c4d | ce2b04c09b6352311df65ad8643f682452f9d6a7 | refs/heads/master | 2016-09-11T13:47:44.366025 | 2013-08-21T18:29:55 | 2013-08-21T18:29:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,596 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// 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: 2011.06.01 at 08:58:10 AM CDT
//
package org.fpml.reporting;
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.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* <p>Java class for AdjustableRelativeOrPeriodicDates complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="AdjustableRelativeOrPeriodicDates">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="adjustableDates" type="{http://www.fpml.org/FpML-5/reporting}AdjustableDates" minOccurs="0"/>
* <element name="relativeDateSequence" type="{http://www.fpml.org/FpML-5/reporting}RelativeDateSequence" minOccurs="0"/>
* <element name="periodicDates" type="{http://www.fpml.org/FpML-5/reporting}PeriodicDates" minOccurs="0"/>
* </choice>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AdjustableRelativeOrPeriodicDates", propOrder = {
"adjustableDates",
"relativeDateSequence",
"periodicDates"
})
public class AdjustableRelativeOrPeriodicDates
implements Serializable
{
private final static long serialVersionUID = 1L;
protected AdjustableDates adjustableDates;
protected RelativeDateSequence relativeDateSequence;
protected PeriodicDates periodicDates;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
/**
* Gets the value of the adjustableDates property.
*
* @return
* possible object is
* {@link AdjustableDates }
*
*/
public AdjustableDates getAdjustableDates() {
return adjustableDates;
}
/**
* Sets the value of the adjustableDates property.
*
* @param value
* allowed object is
* {@link AdjustableDates }
*
*/
public void setAdjustableDates(AdjustableDates value) {
this.adjustableDates = value;
}
/**
* Gets the value of the relativeDateSequence property.
*
* @return
* possible object is
* {@link RelativeDateSequence }
*
*/
public RelativeDateSequence getRelativeDateSequence() {
return relativeDateSequence;
}
/**
* Sets the value of the relativeDateSequence property.
*
* @param value
* allowed object is
* {@link RelativeDateSequence }
*
*/
public void setRelativeDateSequence(RelativeDateSequence value) {
this.relativeDateSequence = value;
}
/**
* Gets the value of the periodicDates property.
*
* @return
* possible object is
* {@link PeriodicDates }
*
*/
public PeriodicDates getPeriodicDates() {
return periodicDates;
}
/**
* Sets the value of the periodicDates property.
*
* @param value
* allowed object is
* {@link PeriodicDates }
*
*/
public void setPeriodicDates(PeriodicDates value) {
this.periodicDates = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
}
| [
"[email protected]@ea902603-27ce-0092-70ca-3da810587992"
]
| [email protected]@ea902603-27ce-0092-70ca-3da810587992 |
1e4f20dd39ef03ba9756c08670e95fac6215b836 | fcd07b172467713fff00c66b1c84a3bcae48bf59 | /src/main/java/com/dnevi/expression/validator/validation/ValidatorContext.java | 66aca64cdb701855dfc285253b25a37f08e4bf2e | []
| no_license | DarioNevistic/json-schema-expression-validator | f6f1dd838872345465bda1f3cc24791ebe5b43ad | 5f67d1cd346040a22003d4c4cfde7df35f9acfbb | refs/heads/master | 2022-12-31T21:56:37.602423 | 2020-05-30T14:56:41 | 2020-05-30T14:56:41 | 268,090,730 | 0 | 0 | null | 2020-10-13T22:26:08 | 2020-05-30T14:00:38 | Java | UTF-8 | Java | false | false | 366 | java | package com.dnevi.expression.validator.validation;
import lombok.Getter;
@Getter
public class ValidatorContext {
private ValidationResult validationResult;
public ValidatorContext() {
this.validationResult = new ValidationResult();
}
public void addError(ValidationError result) {
this.validationResult.addError(result);
}
}
| [
"[email protected]"
]
| |
243543ad9c32b0bd7cbfddf9769b165aef93603b | c3db5ec091fb7abc1bb6d1237f5aba99661bf50b | /Patterns/Patternbinary.java | 31183379cfac3dcdd89567d5b00e435e53f39c8f | []
| no_license | Blueluelueluelue/JavaLearning | f46b3c20d814465a39c5a16b524d6ab7ccfa3c2f | 67ac2e689dc913d08b908db577fe236b25afefad | refs/heads/master | 2021-05-01T10:50:00.526584 | 2018-03-08T17:42:58 | 2018-03-08T17:42:58 | 121,110,010 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 315 | java | import java.lang.*;
import java.util.Scanner;
class Patternbinary
{
public static void main(String args[])
{
int i,j,n;
Scanner sc=new Scanner(System.in);
System.out.println("enter the no. of rows");
n=sc.nextInt();
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
System.out.print((i+j-1)%2+" ");
System.out.println();
}
}
}
| [
"[email protected]"
]
| |
351afc3982b7838f37fd741692936f986a66f001 | 62d9abd0b2945b6b92e35c5044514c31570ec513 | /src/main/java/com/lm/shopping/persistence/mapper/ItemMapper.java | af325548992a37bac534e799651ba91581913a0f | []
| no_license | liborio7/shopping | f48f73dccc72c667fee3735fd39e835dcf4c78a0 | 1702f4131283a39fb38f29b6328d33805e541c54 | refs/heads/master | 2020-04-13T00:14:59.401782 | 2018-12-23T13:18:21 | 2018-12-23T13:18:21 | 162,841,583 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 243 | java | package com.lm.shopping.persistence.mapper;
import com.lm.shopping.persistence.model.Item;
import java.util.List;
public interface ItemMapper {
Integer insert(Item entity);
Item loadById(Item entity);
List<Item> loadAll();
}
| [
"[email protected]"
]
| |
b38db2e58c55fd7a3ca43795798f27a823a2ec4b | 0a14214ed11d1f0448429f06d03bc3b67aea59af | /core/src/main/java/sneer/bitcoin/core/util/WalletUtils.java | ab50ca0242389323d516a175a55aba901cba7d85 | []
| no_license | sneerteam/Snitcoin | 60add0f3db60f6b0ab52e2e13da3e6b271795e00 | c9564f2603e220d337f226f29fd976a595813704 | refs/heads/master | 2016-09-15T11:36:57.883274 | 2016-05-13T11:25:26 | 2016-05-13T11:25:52 | 39,038,476 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 568 | java | package sneer.bitcoin.core.util;
public class WalletUtils {
public static String formatHash(String address, int groupSize, int lineSize) {
StringBuilder builder = new StringBuilder();
int len = address.length();
for (int i = 0; i < len; i += groupSize) {
int end = i + groupSize;
String part = address.substring(i, end < len ? end : len);
builder.append(part);
if (end < len) {
boolean endOfLine = lineSize > 0 && end % lineSize == 0;
builder.append(endOfLine ? '\n' : Constants.CHAR_SPACE);
}
}
return builder.toString();
}
}
| [
"[email protected]"
]
| |
6f87d937399ee2a1d3ac58449f0ee1b3c31cbae2 | 0af8b92686a58eb0b64e319b22411432aca7a8f3 | /single-large-project/src/test/java/org/gradle/test/performancenull_449/Testnull_44899.java | 09ca1c9a591a1d78a1af934252aeb961cd5e651b | []
| no_license | gradle/performance-comparisons | b0d38db37c326e0ce271abebdb3c91769b860799 | e53dc7182fafcf9fedf07920cbbea8b40ee4eef4 | refs/heads/master | 2023-08-14T19:24:39.164276 | 2022-11-24T05:18:33 | 2022-11-24T05:18:33 | 80,121,268 | 17 | 15 | null | 2022-09-30T08:04:35 | 2017-01-26T14:25:33 | null | UTF-8 | Java | false | false | 308 | java | package org.gradle.test.performancenull_449;
import static org.junit.Assert.*;
public class Testnull_44899 {
private final Productionnull_44899 production = new Productionnull_44899("value");
@org.junit.Test
public void test() {
assertEquals(production.getProperty(), "value");
}
} | [
"[email protected]"
]
| |
4b007fb76a6f0c692de5b3c21a22d26dd314e9df | 44e1114cd16a233e63f0e065541c47d13d777e20 | /PagaBoleto/src/Boleto.java | 83b303a9210022a8ba92ff30e26f6345be64d298 | []
| no_license | matheusdutra96/PagaBoleto | 5f961393dacc38d4c44b946597966d595163efc9 | f54f05357788747bc1db329bba5b60c00baba07d | refs/heads/master | 2022-11-20T04:04:57.620596 | 2020-07-12T23:31:27 | 2020-07-12T23:31:27 | 279,161,437 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 604 | java | public class Boleto {
private String codigo;
private String data;
private double valorPago;
public Boleto(String c, String d, double v) {
this.codigo = c;
this.data = d;
this.valorPago = v;
}
public String getCodigo() {
return codigo;
}
public void setCodigo(String codigo) {
this.codigo = codigo;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
public double getValorPago() {
return valorPago;
}
public void setValorPago(double valorPago) {
this.valorPago = valorPago;
}
}
| [
"mathe@LAPTOP-084K0S9A"
]
| mathe@LAPTOP-084K0S9A |
0c090d9eecc38221ad7f1f395ffebfa92baf35e2 | 8674b1dd0e305f80b3f7ea55af160244bb7931cc | /src/test/java/runners/MainRunner.java | b13191b3bfe030fdb4124258695adae9a16c6a52 | []
| no_license | ejca1212/WebDriverUniversityFramework | e24e24ee1a113a5906178c507c456a2dc6ee8c6a | 543a90103a523a9e81cd8c29546c959dcbf88a37 | refs/heads/master | 2021-06-10T06:24:41.105706 | 2019-06-05T21:48:28 | 2019-06-05T21:48:28 | 175,291,842 | 0 | 0 | null | 2021-04-26T18:54:16 | 2019-03-12T20:31:47 | HTML | UTF-8 | Java | false | false | 946 | java | package runners;
import com.cucumber.listener.Reporter;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;
import cucumber.api.testng.AbstractTestNGCucumberTests;
import org.junit.runner.RunWith;
import org.testng.annotations.AfterClass;
import utils.AdvanceReport;
import java.io.File;
@RunWith(Cucumber.class)
@CucumberOptions(
features = {"src/test/java/resources/features/"},
glue = {"stepDefinitions"},
monochrome = true,
plugin = {"pretty", "html:target/cucumber", "json:target/cucumber.json", "com.cucumber.listener.ExtentCucumberFormatter:output/report.html"}
)
public class MainRunner extends AbstractTestNGCucumberTests {
@AfterClass
public static void writeExtentReport () throws Exception {
Reporter.loadXMLConfig(new File(System.getProperty("user.dir") + "/src/main/java/utils/ReportsConfig.xml"));
AdvanceReport.copyLatestExtentReport();
}
}
| [
"[email protected]"
]
| |
f61c271e3f783e4f70c2e6146c39baf04369fdde | 6a3041766026860972eb999aa8698efd50b61145 | /src/calculation/Remainder.java | 8d624e5b4c50058b12cf64da0ae33ad76d6fcce0 | []
| no_license | nakguan/baekjoon | d42fc20b6e9af93ed8384f44947cc723ea031050 | 550c18b8865d4049baf71720d04e6f73e6393a4d | refs/heads/master | 2021-01-01T18:18:42.628607 | 2017-08-30T04:34:10 | 2017-08-30T04:34:10 | 98,296,525 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 440 | java | package calculation;
import java.util.Scanner;
public class Remainder {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int num1 = sc.nextInt();
int num2 = sc.nextInt();
int num3 = sc.nextInt();
System.out.println((num1+num2)%num3);
System.out.println((num1%num3+num2%num3)%num3);
System.out.println((num1*num2)%num3);
System.out.println((num1%num3*num2%num3)%num3);
sc.close();
}
}
| [
"[email protected]"
]
| |
450b56c0e5c9343b0ed99ceb63509a85ab3dc219 | 7033053710cf2fd800e11ad609e9abbb57f1f17e | /cardayProject/carrental-service/src/main/java/com/cmdt/carrental/platform/service/model/request/user/UserInfoDto.java | c62bfd1df395dd30dcee1c1dd4272994808afceb | []
| no_license | chocoai/cardayforfjga | 731080f72c367c7d3b8e7844a1c3cd034cc11ee6 | 91d7c8314f44024825747e12a60324ffc3d43afb | refs/heads/master | 2020-04-29T02:14:07.834535 | 2018-04-02T09:51:07 | 2018-04-02T09:51:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,772 | java | package com.cmdt.carrental.platform.service.model.request.user;
import java.io.Serializable;
import javax.validation.constraints.NotNull;
public class UserInfoDto implements Serializable{
private static final long serialVersionUID = 1L;
private Long id; //编号
@NotNull(message="username不能为空")
private String username; //用户名
@NotNull(message="password不能为空")
private String password; //密码
private String realname; //真实名字
private Long roleId; //拥有的角色列表
private Long organizationId; //组织id
private String phone; //电话
private String email; //邮箱
private Long entId; //企业id
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getRealname() {
return realname;
}
public void setRealname(String realname) {
this.realname = realname;
}
public Long getRoleId() {
return roleId;
}
public void setRoleId(Long roleId) {
this.roleId = roleId;
}
public Long getOrganizationId() {
return organizationId;
}
public void setOrganizationId(Long organizationId) {
this.organizationId = organizationId;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getEntId() {
return entId;
}
public void setEntId(Long entId) {
this.entId = entId;
}
}
| [
"[email protected]"
]
| |
fc4b4301e3a435823800d381234f6ec315303f22 | d36069fc7dea094da8733c1b2d0d83e35b2526bb | /app/src/main/java/com/example/phuongnam/model/User.java | 2a91e2564a4d620ba9fa9b6886f72ba87710bbac | []
| no_license | phancanh07/PhuongNam | 3ba48574288c1471e2682360e2eca6516b9f02ad | 4968a1e84b5d358019c3fcafcc13f14e406e8c5c | refs/heads/master | 2022-12-27T01:09:13.612157 | 2020-10-07T00:50:38 | 2020-10-07T00:50:38 | 301,890,908 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 944 | java | package com.example.phuongnam.model;
public class User {
public String Username;
public String Password;
public String Email;
public String soDT;
public User() {
}
public User(String username, String password, String email, String soDT) {
Username = username;
Password = password;
Email = email;
this.soDT = soDT;
}
public String getUsername() {
return Username;
}
public void setUsername(String username) {
Username = username;
}
public String getPassword() {
return Password;
}
public void setPassword(String password) {
Password = password;
}
public String getEmail() {
return Email;
}
public void setEmail(String email) {
Email = email;
}
public String getSoDT() {
return soDT;
}
public void setSoDT(String soDT) {
this.soDT = soDT;
}
} | [
"[email protected]"
]
| |
41172d92b59147706ca4de3508c9e2be686d3a92 | aad57a23f8b5d5716e5a38b6b163d8cd374dc7ee | /TradeIn/app/src/main/java/com/tt/tradein/mvp/models/Goods.java | e14aca452d464481d88a1eff7f20a68d5f23d517 | []
| no_license | paranoia0618/AndroidStudioLearning | fc47904d4e36095d937005b8ee288389056c0859 | 71c95ebbec57e47e12c93ffc017968a38a7fd837 | refs/heads/master | 2021-09-10T06:19:29.465264 | 2018-03-20T15:42:30 | 2018-03-20T15:42:30 | 114,605,816 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,127 | java | package com.tt.tradein.mvp.models;
import java.util.List;
import cn.bmob.v3.BmobObject;
/**
* Created by tuozhaobing on 16-5-12.
*/
public class Goods extends BmobObject {
private String title;
private String description;
private String new_degree;
private String price;
private String location;
private String mount;
private String userid;
private String prince;
private String kind;
private String secondkind;
public String getKind() {
return kind;
}
public void setKind(String kind) {
this.kind = kind;
}
public String getSecondkind() {
return secondkind;
}
public void setSecondkind(String secondkind) {
this.secondkind = secondkind;
}
public String getPrince() {
return prince;
}
public void setPrince(String prince) {
this.prince = prince;
}
private List<String> images;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getNew_degree() {
return new_degree;
}
public void setNew_degree(String new_degree) {
this.new_degree = new_degree;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
public String getMount() {
return mount;
}
public void setMount(String mount) {
this.mount = mount;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public String getUserid() {
return userid;
}
public void setUserid(String userid) {
this.userid = userid;
}
public List<String> getImages() {
return images;
}
public void setImages(List<String> images) {
this.images = images;
}
}
| [
"[email protected]"
]
| |
a71707432615a467da7c8a806405d942728c05f6 | b7a63588107aae62de36fb390c0222d5722c706e | /TEA102G1/src/com/booking_ing_table/model/Booking_Ing_TableVO.java | 3ee689d2100d142fb3788234156204abff73351f | []
| no_license | si181818/TEA102G1 | 552264f1694338ce4224535cebd0cc009a08d9f2 | 3f1c2f5bbe0233e7e0e88d48b355eb79b22b5102 | refs/heads/master | 2023-08-24T04:37:12.162396 | 2021-10-17T14:53:01 | 2021-10-17T14:53:01 | 331,633,110 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,784 | java | package com.booking_ing_table.model;
import java.io.Serializable;
import java.sql.Date;
import com.booking_fixed_table.model.Booking_Fixed_TableVO;
//ORDER_ID VARCHAR2(100) NOT NULL,
//RS_STATUS NUMBER NOT NULL,
//RS_SIERAL VARCHAR2(100) NOT NULL,
//PRIMARY KEY (ORDER_ID),
public class Booking_Ing_TableVO extends Booking_Fixed_TableVO {
private String order_id;
private Integer rs_status;
private String rs_sieral;
private String gs_select_time;
private Date gs_select_date;
public Booking_Ing_TableVO() {
}
public Booking_Ing_TableVO(String order_id, Integer rs_status, String gs_select_time, Date gs_select_date) {
super();
this.order_id = order_id;
this.rs_status = rs_status;
this.gs_select_time = gs_select_time;
this.gs_select_date = gs_select_date;
}
public Date getGs_select_date() {
return gs_select_date;
}
public void setGs_select_date(Date gs_select_date) {
this.gs_select_date = gs_select_date;
}
public String getGs_select_time() {
return gs_select_time;
}
public void setGs_select_time(String gs_select_time) {
this.gs_select_time = gs_select_time;
}
public String getRs_sieral() {
return rs_sieral;
}
public void setRs_sieral(String rs_sieral) {
this.rs_sieral = rs_sieral;
}
public String getOrder_id() {
return order_id;
}
@Override
public String toString() {
return "Booking_Ing_TableVO [order_id=" + order_id + ", rs_status=" + rs_status + ", rs_sieral=" + rs_sieral
+ ", gs_select_time=" + gs_select_time + ", gs_select_date=" + gs_select_date + "]";
}
public void setOrder_id(String order_id) {
this.order_id = order_id;
}
public Integer getRs_status() {
return rs_status;
}
public void setRs_status(Integer rs_status) {
this.rs_status = rs_status;
}
}
| [
"[email protected]"
]
| |
2538aa3816f8a9ef1879fc9516c0704705304ee5 | 83291253d179ac079b026c19ccbe07749b158a14 | /core/src/main/java/com/tsilva/MessageProcessingModule2.java | 6debb088e274e6fbd099a712d8fa3fc062ba9a19 | []
| no_license | telmoanastacio/git-hub | 2ce1bfcab029b9dd1ba3d98f82c91204eac459b1 | 460dc38e0bfeb2f05ed76f744b5715f2f98bab43 | refs/heads/master | 2020-04-25T10:44:32.073234 | 2019-02-26T14:16:31 | 2019-02-26T14:16:31 | 172,720,089 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,919 | java | package com.tsilva;
import com.tsilva.demo.DemoData;
import java.util.*;
public class MessageProcessingModule2
{
public MessageProcessingModule2()
{}
public Map<String, Integer> getGlobalStatistics(String user)
{
UrlPathGenerator urlPathGenerator = new UrlPathGeneratorImpl();
UrlContentReader userReposContent = new UrlContentReaderImpl();
String userRepos = userReposContent.urlRead(urlPathGenerator.getUserRepositoryListUrl(user));
List<String> repos = new MessageProcessingModule1(userRepos).getRepos();
userRepos = null;
Map<String, Integer> globalStats = new HashMap<>();
for(String repo : repos)
{
String repoResult = new UrlContentReaderImpl()
.urlRead(urlPathGenerator.getRepositoryLanguageStatisticsUrl(user, repo));
Map<String, Integer> auxMap = new MessageProcessingModule1(repoResult).getStatistics();
for(String key : auxMap.keySet())
{
if(globalStats.containsKey(key))
{
globalStats.replace(key, globalStats.get(key) + auxMap.get(key));
}
else
{
globalStats.put(key, auxMap.get(key));
}
}
}
return sortByValue(globalStats);
}
// sort only the global statistics
private static <K, V extends Comparable<? super V>> Map<K, V> sortByValue(Map<K, V> map)
{
List<Map.Entry<K, V>> list = new ArrayList<>(map.entrySet());
list.sort(Map.Entry.comparingByValue());
Map<K, V> result = new LinkedHashMap<>();
for(int i = list.size() - 1; i >= 0; i-- ) /*(Map.Entry<K, V> entry : list)*/
{
Map.Entry<K, V> entry = list.get(i);
result.put(entry.getKey(), entry.getValue());
}
return result;
}
} | [
"[email protected]"
]
| |
88977a43d294c0adeaf8c3a34b32a2c13f4f86d0 | 5202174089ea80bf47d5ee8a45be9b1e656d4618 | /Java Basic Prgms/Assignment/Assignment 3/pg2 incomplete/x.java | 070f099e743d0041284c1e84eae168554fb2d23f | []
| no_license | Himalaya293/Training-Himalaya | 680a8a740248e61c61872a9f03ef6945e1ef500f | fe3dee3dc9be3bd44b8fd627432a99de5b5e6ec1 | refs/heads/main | 2023-05-04T01:18:27.500093 | 2021-03-21T20:57:16 | 2021-03-21T20:57:16 | 308,068,425 | 0 | 0 | null | 2021-02-25T07:36:34 | 2020-10-28T15:57:25 | Java | UTF-8 | Java | false | false | 523 | java | import java.util.*;
class x
{
public static void main(String []args)
{
Scanner sc=new Scanner(System.in);
System.out.print("enter k value");
int k=sc.nextInt();
System.out.print("enter n value");
int n=sc.nextInt();
int a[]=new int[n];
for(int i=0;i<a.length;i++)
{
a[i]=sc.nextInt();
}
for(int i=k;i<a.length;i++)
{
System.out.print(a[i]);
}
if(n-k>0){
for(int j=0;j<k;j++)
{
System.out.print(a[j]);
}
}
}
} | [
"[email protected]"
]
| |
93bb1c182714c20857f83983a4c4c896e7920c6b | 19bd344a926c3406109b406dac10defec2f52361 | /src/leetcode/leetcode145/Solution.java | 4d3fd96566ddda510b131843ad66dd5c8cbb71be | []
| no_license | Eivense/AlgorithmLearning | 57be7f1680ed38875e4dfcc45d9daef04a698e7a | 7907f22329210c5ab1c9ca934b7a0995713b1b0d | refs/heads/master | 2021-12-15T12:39:42.242758 | 2021-12-04T07:09:42 | 2021-12-04T07:09:42 | 185,633,025 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,582 | java | package leetcode.leetcode145;
import java.util.*;
/**
* Given a binary tree, return the postorder traversal of its nodes' values.
*
* Input: [1,null,2,3]
* 1
* \
* 2
* /
* 3
*
* Output: [3,2,1]
*
* 后根遍历 左右根
*
*/
class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) { val = x; }
}
public class Solution {
public List<Integer> postorderTraversal(TreeNode root) {
List<Integer> result=new ArrayList<>();
return postorder(root);
}
// public void postorder(List<Integer> result,TreeNode root){
// if(root!=null){
// postorder(result,root.left);
// postorder(result,root.right);
// result.add(root.val);
// }
// }
// 非递归
public List<Integer> postorder(TreeNode root) {
List<Integer> result = new ArrayList<>();
Deque<TreeNode> stack = new ArrayDeque<>();
Set<TreeNode> visited = new HashSet<>();
TreeNode node=root;
while(node!=null){
stack.push(node);
node = node.left;
}
while(!stack.isEmpty()){
node = stack.peek();
if(visited.contains(node)){
stack.pop();
result.add(node.val);
continue;
}else{
visited.add(node);
}
node=node.right;
while(node!=null){
stack.push(node);
node = node.left;
}
}
return result;
}
}
| [
"[email protected]"
]
| |
33691a92d8ac0af9464393644291823c0d7255ab | 9baa1d671a07694acc66843bd193858323266152 | /src/test/java/by/itacademy/callservice/CallServiceApplicationTests.java | b2d05fb2b92efaeb6b45f7f29013cceefc2a61a1 | []
| no_license | RyhorPaprauka/CallService | ef71e2f8c6d916c353f346cca7b880e49285b612 | 7231e6bd085b67074dc32768b92feb004be50a9a | refs/heads/master | 2022-02-21T17:39:31.552448 | 2019-10-27T09:01:01 | 2019-10-27T09:01:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 354 | java | package by.itacademy.callservice;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class CallServiceApplicationTests {
@Test
public void contextLoads() {
}
}
| [
"[email protected]"
]
| |
1a4298f57c7c86bee9eb1d8b9ba7ecdd8174ae12 | 771bc1ef8f433458611bf88d7f998b463eaa0475 | /TH2/UsingMessageDemo/app/src/test/java/com/example/usingmessagedemo/ExampleUnitTest.java | c3888fbf56084b1f8592ecd05bea209cc6d46568 | []
| no_license | truonghuy1011/AndroidStudio | 572c07d5fc211464a224f8c438047fc9ff4603aa | 5a37af83d6dc8255d992b67d9da8ce24da8b66d2 | refs/heads/master | 2023-03-25T01:29:00.958823 | 2021-03-23T05:51:40 | 2021-03-23T05:51:40 | 350,577,642 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 389 | java | package com.example.usingmessagedemo;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
} | [
"[email protected]"
]
| |
42446c98ae589dc24ab5f372fd5b9753a4a1638f | 0eb6dcac0092046bb8d6d1aa3ed1c336f5caa5f8 | /app/src/main/java/com/example/mclondi/wearablegridlistview/MainActivity.java | fb9fd60b635c4257757cc8108ca7c21e41543468 | []
| no_license | MClondi/WearableGridListView | 34ed210b724bad3b3baae15fa4bc9aeddcb1d3c1 | 7572061a714bf8a56086b39b43a26a39cd33c52a | refs/heads/master | 2020-12-25T13:45:29.235642 | 2016-06-16T22:02:53 | 2016-06-16T22:02:53 | 61,328,411 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,037 | java | package com.example.mclondi.wearablegridlistview;
import android.app.Activity;
import android.app.Fragment;
import android.os.Bundle;
import android.support.wearable.view.FragmentGridPagerAdapter;
import android.support.wearable.view.GridViewPager;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setContentView(R.layout.activity_main);
GridViewPager vp = (GridViewPager) findViewById(R.id.viewPager);
vp.setAdapter(new FragmentGridPagerAdapter(getFragmentManager()) {
@Override
public Fragment getFragment(int i, int i1) {
return new MainFragment().setPos(i1);
}
@Override
public int getRowCount() {
return 1;
}
@Override
public int getColumnCount(int i) {
return 6;
}
});
}
}
| [
"[email protected]"
]
| |
6398ceccf00b7f34ea1dba23c1b053dac196c717 | b394b47024c9c09bb1000ec5ef40c06afb35fb35 | /Test1/app/build/generated/source/r/debug/com/example/takeimage/R.java | 621ade7ac566a29e55b5ba4b1f2f37bec035dc64 | []
| no_license | siddharth2610/test-apps | 05c6e86525f87936793214fe769d7f015e417f57 | dcda3c321b3efb866addb64a25e975b79e33045a | refs/heads/master | 2021-01-20T18:47:53.180312 | 2016-06-24T10:16:04 | 2016-06-24T10:16:04 | 61,115,398 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 367,502 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.example.takeimage;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f040000;
public static final int abc_fade_out=0x7f040001;
public static final int abc_grow_fade_in_from_bottom=0x7f040002;
public static final int abc_popup_enter=0x7f040003;
public static final int abc_popup_exit=0x7f040004;
public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
public static final int abc_slide_in_bottom=0x7f040006;
public static final int abc_slide_in_top=0x7f040007;
public static final int abc_slide_out_bottom=0x7f040008;
public static final int abc_slide_out_top=0x7f040009;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarPopupTheme=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>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int actionBarSize=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f01005e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f01005d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f010058;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f010057;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f010059;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f01005f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f010078;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionLayout=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f010064;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f010065;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f01006d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f010066;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f01005a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f01005b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionProviderClass=0x7f010035;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionViewClass=0x7f010034;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f010084;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f0100a6;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alertDialogCenterButtons=0x7f0100a7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f0100a5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f0100a8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowHeadLength=0x7f01002b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowShaftLength=0x7f01002c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f0100ad;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int background=0x7f01000c;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f01000e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f01000d;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int backgroundTint=0x7f0100c9;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int backgroundTintMode=0x7f0100ca;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int barLength=0x7f01002d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f010081;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f0100ab;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f0100ac;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f0100aa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f01007d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f01001f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=0x7f0100ae;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f0100af;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonTint=0x7f010025;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int buttonTintMode=0x7f010026;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f0100b0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f0100b1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeIcon=0x7f01003d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f01001c;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int collapseContentDescription=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapseIcon=0x7f0100bf;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int color=0x7f010027;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorAccent=0x7f01009e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorButtonNormal=0x7f0100a2;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlActivated=0x7f0100a0;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f0100a1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlNormal=0x7f01009f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimary=0x7f01009c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimaryDark=0x7f01009d;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorSwitchThumbNormal=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int commitIcon=0x7f010042;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEnd=0x7f010017;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f010018;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetRight=0x7f010019;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStart=0x7f010016;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int controlBackground=0x7f0100a4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f01000f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int defaultQueryHint=0x7f01003c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dialogTheme=0x7f010075;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static final int displayOptions=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int divider=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f010083;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dividerPadding=0x7f010031;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerVertical=0x7f010082;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int drawableSize=0x7f010029;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f010094;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextBackground=0x7f01008a;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int editTextColor=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextStyle=0x7f0100b2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int elevation=0x7f01001a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f01001e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int gapBetweenBars=0x7f01002a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f01003e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hideOnContentScroll=0x7f010015;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f01007b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=0x7f010010;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f010009;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconifiedByDefault=0x7f01003a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f010012;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int initialActivityCount=0x7f01001d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int isLightTheme=0x7f010002;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemPadding=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f010039;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f01009b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listItemLayout=0x7f010023;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listLayout=0x7f010020;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f010095;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x7f01008f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f010091;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x7f010090;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f010092;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x7f010093;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f01000a;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int logoDescription=0x7f0100c3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f0100be;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int measureWithLargestChild=0x7f01002f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f010021;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int navigationContentDescription=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f0100c1;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int navigationMode=0x7f010004;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f010037;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingEnd=0x7f0100c7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelBackground=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f01009a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int panelMenuListWidth=0x7f010099;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f010087;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=0x7f01001b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f010088;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int preserveIconSpacing=0x7f010036;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f010013;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f010011;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int queryBackground=0x7f010044;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int queryHint=0x7f01003b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f0100b3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f010040;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchIcon=0x7f01003f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewStyle=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f01007f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f010080;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static final int showAsAction=0x7f010032;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static final int showDividers=0x7f010030;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showText=0x7f01004c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010022;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spinBars=0x7f010028;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f0100b5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int splitTrack=0x7f01004b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_above_anchor=0x7f010038;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int submitBackground=0x7f010045;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitle=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f0100b8;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitleTextColor=0x7f0100c5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f010043;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchMinWidth=0x7f010049;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchPadding=0x7f01004a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchStyle=0x7f0100b6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f010048;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static final int textAllCaps=0x7f010024;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f010096;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f01008c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f010074;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f0100a9;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorSearchUrl=0x7f01008d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=0x7f0100c8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=0x7f01002e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTextPadding=0x7f010047;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int title=0x7f010003;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f0100bd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f0100bb;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f0100ba;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f0100bc;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0100b7;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleTextColor=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=0x7f010086;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f010085;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int track=0x7f010046;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f010041;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f01004d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBarOverlay=0x7f01004f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionModeOverlay=0x7f010050;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMajor=0x7f010054;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMinor=0x7f010052;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMajor=0x7f010051;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMinor=0x7f010053;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMajor=0x7f010055;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMinor=0x7f010056;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowNoTitle=0x7f01004e;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f080002;
public static final int abc_action_bar_embed_tabs_pre_jb=0x7f080000;
public static final int abc_action_bar_expanded_action_views_exclusive=0x7f080003;
public static final int abc_config_actionMenuItemAllCaps=0x7f080004;
public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f080001;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f080005;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f080006;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0a003a;
public static final int abc_background_cache_hint_selector_material_light=0x7f0a003b;
public static final int abc_color_highlight_material=0x7f0a003c;
public static final int abc_input_method_navigation_guard=0x7f0a0000;
public static final int abc_primary_text_disable_only_material_dark=0x7f0a003d;
public static final int abc_primary_text_disable_only_material_light=0x7f0a003e;
public static final int abc_primary_text_material_dark=0x7f0a003f;
public static final int abc_primary_text_material_light=0x7f0a0040;
public static final int abc_search_url_text=0x7f0a0041;
public static final int abc_search_url_text_normal=0x7f0a0001;
public static final int abc_search_url_text_pressed=0x7f0a0002;
public static final int abc_search_url_text_selected=0x7f0a0003;
public static final int abc_secondary_text_material_dark=0x7f0a0042;
public static final int abc_secondary_text_material_light=0x7f0a0043;
public static final int accent_material_dark=0x7f0a0004;
public static final int accent_material_light=0x7f0a0005;
public static final int background_floating_material_dark=0x7f0a0006;
public static final int background_floating_material_light=0x7f0a0007;
public static final int background_material_dark=0x7f0a0008;
public static final int background_material_light=0x7f0a0009;
public static final int bright_foreground_disabled_material_dark=0x7f0a000a;
public static final int bright_foreground_disabled_material_light=0x7f0a000b;
public static final int bright_foreground_inverse_material_dark=0x7f0a000c;
public static final int bright_foreground_inverse_material_light=0x7f0a000d;
public static final int bright_foreground_material_dark=0x7f0a000e;
public static final int bright_foreground_material_light=0x7f0a000f;
public static final int button_material_dark=0x7f0a0010;
public static final int button_material_light=0x7f0a0011;
public static final int dim_foreground_disabled_material_dark=0x7f0a0012;
public static final int dim_foreground_disabled_material_light=0x7f0a0013;
public static final int dim_foreground_material_dark=0x7f0a0014;
public static final int dim_foreground_material_light=0x7f0a0015;
public static final int foreground_material_dark=0x7f0a0016;
public static final int foreground_material_light=0x7f0a0017;
public static final int highlighted_text_material_dark=0x7f0a0018;
public static final int highlighted_text_material_light=0x7f0a0019;
public static final int hint_foreground_material_dark=0x7f0a001a;
public static final int hint_foreground_material_light=0x7f0a001b;
public static final int material_blue_grey_800=0x7f0a001c;
public static final int material_blue_grey_900=0x7f0a001d;
public static final int material_blue_grey_950=0x7f0a001e;
public static final int material_deep_teal_200=0x7f0a001f;
public static final int material_deep_teal_500=0x7f0a0020;
public static final int material_grey_100=0x7f0a0021;
public static final int material_grey_300=0x7f0a0022;
public static final int material_grey_50=0x7f0a0023;
public static final int material_grey_600=0x7f0a0024;
public static final int material_grey_800=0x7f0a0025;
public static final int material_grey_850=0x7f0a0026;
public static final int material_grey_900=0x7f0a0027;
public static final int primary_dark_material_dark=0x7f0a0028;
public static final int primary_dark_material_light=0x7f0a0029;
public static final int primary_material_dark=0x7f0a002a;
public static final int primary_material_light=0x7f0a002b;
public static final int primary_text_default_material_dark=0x7f0a002c;
public static final int primary_text_default_material_light=0x7f0a002d;
public static final int primary_text_disabled_material_dark=0x7f0a002e;
public static final int primary_text_disabled_material_light=0x7f0a002f;
public static final int ripple_material_dark=0x7f0a0030;
public static final int ripple_material_light=0x7f0a0031;
public static final int secondary_text_default_material_dark=0x7f0a0032;
public static final int secondary_text_default_material_light=0x7f0a0033;
public static final int secondary_text_disabled_material_dark=0x7f0a0034;
public static final int secondary_text_disabled_material_light=0x7f0a0035;
public static final int switch_thumb_disabled_material_dark=0x7f0a0036;
public static final int switch_thumb_disabled_material_light=0x7f0a0037;
public static final int switch_thumb_material_dark=0x7f0a0044;
public static final int switch_thumb_material_light=0x7f0a0045;
public static final int switch_thumb_normal_material_dark=0x7f0a0038;
public static final int switch_thumb_normal_material_light=0x7f0a0039;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f06000b;
public static final int abc_action_bar_default_height_material=0x7f060001;
public static final int abc_action_bar_default_padding_end_material=0x7f06000c;
public static final int abc_action_bar_default_padding_start_material=0x7f06000d;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f06000f;
public static final int abc_action_bar_overflow_padding_end_material=0x7f060010;
public static final int abc_action_bar_overflow_padding_start_material=0x7f060011;
public static final int abc_action_bar_progress_bar_size=0x7f060002;
public static final int abc_action_bar_stacked_max_height=0x7f060012;
public static final int abc_action_bar_stacked_tab_max_width=0x7f060013;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f060014;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f060015;
public static final int abc_action_button_min_height_material=0x7f060016;
public static final int abc_action_button_min_width_material=0x7f060017;
public static final int abc_action_button_min_width_overflow_material=0x7f060018;
public static final int abc_alert_dialog_button_bar_height=0x7f060000;
public static final int abc_button_inset_horizontal_material=0x7f060019;
public static final int abc_button_inset_vertical_material=0x7f06001a;
public static final int abc_button_padding_horizontal_material=0x7f06001b;
public static final int abc_button_padding_vertical_material=0x7f06001c;
public static final int abc_config_prefDialogWidth=0x7f060005;
public static final int abc_control_corner_material=0x7f06001d;
public static final int abc_control_inset_material=0x7f06001e;
public static final int abc_control_padding_material=0x7f06001f;
public static final int abc_dialog_list_padding_vertical_material=0x7f060020;
public static final int abc_dialog_min_width_major=0x7f060021;
public static final int abc_dialog_min_width_minor=0x7f060022;
public static final int abc_dialog_padding_material=0x7f060023;
public static final int abc_dialog_padding_top_material=0x7f060024;
public static final int abc_disabled_alpha_material_dark=0x7f060025;
public static final int abc_disabled_alpha_material_light=0x7f060026;
public static final int abc_dropdownitem_icon_width=0x7f060027;
public static final int abc_dropdownitem_text_padding_left=0x7f060028;
public static final int abc_dropdownitem_text_padding_right=0x7f060029;
public static final int abc_edit_text_inset_bottom_material=0x7f06002a;
public static final int abc_edit_text_inset_horizontal_material=0x7f06002b;
public static final int abc_edit_text_inset_top_material=0x7f06002c;
public static final int abc_floating_window_z=0x7f06002d;
public static final int abc_list_item_padding_horizontal_material=0x7f06002e;
public static final int abc_panel_menu_list_width=0x7f06002f;
public static final int abc_search_view_preferred_width=0x7f060030;
public static final int abc_search_view_text_min_width=0x7f060006;
public static final int abc_switch_padding=0x7f06000e;
public static final int abc_text_size_body_1_material=0x7f060031;
public static final int abc_text_size_body_2_material=0x7f060032;
public static final int abc_text_size_button_material=0x7f060033;
public static final int abc_text_size_caption_material=0x7f060034;
public static final int abc_text_size_display_1_material=0x7f060035;
public static final int abc_text_size_display_2_material=0x7f060036;
public static final int abc_text_size_display_3_material=0x7f060037;
public static final int abc_text_size_display_4_material=0x7f060038;
public static final int abc_text_size_headline_material=0x7f060039;
public static final int abc_text_size_large_material=0x7f06003a;
public static final int abc_text_size_medium_material=0x7f06003b;
public static final int abc_text_size_menu_material=0x7f06003c;
public static final int abc_text_size_small_material=0x7f06003d;
public static final int abc_text_size_subhead_material=0x7f06003e;
public static final int abc_text_size_subtitle_material_toolbar=0x7f060003;
public static final int abc_text_size_title_material=0x7f06003f;
public static final int abc_text_size_title_material_toolbar=0x7f060004;
public static final int dialog_fixed_height_major=0x7f060007;
public static final int dialog_fixed_height_minor=0x7f060008;
public static final int dialog_fixed_width_major=0x7f060009;
public static final int dialog_fixed_width_minor=0x7f06000a;
public static final int disabled_alpha_material_dark=0x7f060040;
public static final int disabled_alpha_material_light=0x7f060041;
public static final int highlight_alpha_material_colored=0x7f060042;
public static final int highlight_alpha_material_dark=0x7f060043;
public static final int highlight_alpha_material_light=0x7f060044;
public static final int notification_large_icon_height=0x7f060045;
public static final int notification_large_icon_width=0x7f060046;
public static final int notification_subtext_size=0x7f060047;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_action_bar_item_background_material=0x7f020001;
public static final int abc_btn_borderless_material=0x7f020002;
public static final int abc_btn_check_material=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static final int abc_btn_colored_material=0x7f020006;
public static final int abc_btn_default_mtrl_shape=0x7f020007;
public static final int abc_btn_radio_material=0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b;
public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e;
public static final int abc_cab_background_internal_bg=0x7f02000f;
public static final int abc_cab_background_top_material=0x7f020010;
public static final int abc_cab_background_top_mtrl_alpha=0x7f020011;
public static final int abc_control_background_material=0x7f020012;
public static final int abc_dialog_material_background_dark=0x7f020013;
public static final int abc_dialog_material_background_light=0x7f020014;
public static final int abc_edit_text_material=0x7f020015;
public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016;
public static final int abc_ic_clear_mtrl_alpha=0x7f020017;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018;
public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b;
public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f;
public static final int abc_ic_search_api_mtrl_alpha=0x7f020020;
public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020021;
public static final int abc_item_background_holo_dark=0x7f020022;
public static final int abc_item_background_holo_light=0x7f020023;
public static final int abc_list_divider_mtrl_alpha=0x7f020024;
public static final int abc_list_focused_holo=0x7f020025;
public static final int abc_list_longpressed_holo=0x7f020026;
public static final int abc_list_pressed_holo_dark=0x7f020027;
public static final int abc_list_pressed_holo_light=0x7f020028;
public static final int abc_list_selector_background_transition_holo_dark=0x7f020029;
public static final int abc_list_selector_background_transition_holo_light=0x7f02002a;
public static final int abc_list_selector_disabled_holo_dark=0x7f02002b;
public static final int abc_list_selector_disabled_holo_light=0x7f02002c;
public static final int abc_list_selector_holo_dark=0x7f02002d;
public static final int abc_list_selector_holo_light=0x7f02002e;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f;
public static final int abc_popup_background_mtrl_mult=0x7f020030;
public static final int abc_ratingbar_full_material=0x7f020031;
public static final int abc_spinner_mtrl_am_alpha=0x7f020032;
public static final int abc_spinner_textfield_background_material=0x7f020033;
public static final int abc_switch_thumb_material=0x7f020034;
public static final int abc_switch_track_mtrl_alpha=0x7f020035;
public static final int abc_tab_indicator_material=0x7f020036;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020037;
public static final int abc_text_cursor_material=0x7f020038;
public static final int abc_textfield_activated_mtrl_alpha=0x7f020039;
public static final int abc_textfield_default_mtrl_alpha=0x7f02003a;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02003b;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f02003c;
public static final int abc_textfield_search_material=0x7f02003d;
public static final int ic_launcher=0x7f02003e;
public static final int notification_template_icon_bg=0x7f02003f;
}
public static final class id {
public static final int LinearLayout1=0x7f0b004d;
public static final int action0=0x7f0b0051;
public static final int action_bar=0x7f0b003e;
public static final int action_bar_activity_content=0x7f0b0000;
public static final int action_bar_container=0x7f0b003d;
public static final int action_bar_root=0x7f0b0039;
public static final int action_bar_spinner=0x7f0b0001;
public static final int action_bar_subtitle=0x7f0b0022;
public static final int action_bar_title=0x7f0b0021;
public static final int action_context_bar=0x7f0b003f;
public static final int action_divider=0x7f0b0055;
public static final int action_menu_divider=0x7f0b0002;
public static final int action_menu_presenter=0x7f0b0003;
public static final int action_mode_bar=0x7f0b003b;
public static final int action_mode_bar_stub=0x7f0b003a;
public static final int action_mode_close_button=0x7f0b0023;
public static final int activity_chooser_view_content=0x7f0b0024;
public static final int alertTitle=0x7f0b002e;
public static final int always=0x7f0b001b;
public static final int beginning=0x7f0b0018;
public static final int btnSelectGallery=0x7f0b004f;
public static final int btnSelectPhoto=0x7f0b004e;
public static final int buttonPanel=0x7f0b0034;
public static final int cancel_action=0x7f0b0052;
public static final int checkbox=0x7f0b0036;
public static final int chronometer=0x7f0b0058;
public static final int collapseActionView=0x7f0b001c;
public static final int contentPanel=0x7f0b002f;
public static final int custom=0x7f0b0033;
public static final int customPanel=0x7f0b0032;
public static final int decor_content_parent=0x7f0b003c;
public static final int default_activity_button=0x7f0b0027;
public static final int disableHome=0x7f0b000c;
public static final int edit_query=0x7f0b0040;
public static final int end=0x7f0b0019;
public static final int end_padder=0x7f0b005d;
public static final int expand_activities_button=0x7f0b0025;
public static final int expanded_menu=0x7f0b0035;
public static final int home=0x7f0b0004;
public static final int homeAsUp=0x7f0b000d;
public static final int icon=0x7f0b0029;
public static final int ifRoom=0x7f0b001d;
public static final int image=0x7f0b0026;
public static final int info=0x7f0b005c;
public static final int ivImage=0x7f0b0050;
public static final int line1=0x7f0b0056;
public static final int line3=0x7f0b005a;
public static final int listMode=0x7f0b0009;
public static final int list_item=0x7f0b0028;
public static final int media_actions=0x7f0b0054;
public static final int middle=0x7f0b001a;
public static final int multiply=0x7f0b0013;
public static final int never=0x7f0b001e;
public static final int none=0x7f0b000e;
public static final int normal=0x7f0b000a;
public static final int parentPanel=0x7f0b002b;
public static final int progress_circular=0x7f0b0005;
public static final int progress_horizontal=0x7f0b0006;
public static final int radio=0x7f0b0038;
public static final int screen=0x7f0b0014;
public static final int scrollView=0x7f0b0030;
public static final int search_badge=0x7f0b0042;
public static final int search_bar=0x7f0b0041;
public static final int search_button=0x7f0b0043;
public static final int search_close_btn=0x7f0b0048;
public static final int search_edit_frame=0x7f0b0044;
public static final int search_go_btn=0x7f0b004a;
public static final int search_mag_icon=0x7f0b0045;
public static final int search_plate=0x7f0b0046;
public static final int search_src_text=0x7f0b0047;
public static final int search_voice_btn=0x7f0b004b;
public static final int select_dialog_listview=0x7f0b004c;
public static final int shortcut=0x7f0b0037;
public static final int showCustom=0x7f0b000f;
public static final int showHome=0x7f0b0010;
public static final int showTitle=0x7f0b0011;
public static final int split_action_bar=0x7f0b0007;
public static final int src_atop=0x7f0b0015;
public static final int src_in=0x7f0b0016;
public static final int src_over=0x7f0b0017;
public static final int status_bar_latest_event_content=0x7f0b0053;
public static final int submit_area=0x7f0b0049;
public static final int tabMode=0x7f0b000b;
public static final int text=0x7f0b005b;
public static final int text2=0x7f0b0059;
public static final int textSpacerNoButtons=0x7f0b0031;
public static final int time=0x7f0b0057;
public static final int title=0x7f0b002a;
public static final int title_template=0x7f0b002d;
public static final int topPanel=0x7f0b002c;
public static final int up=0x7f0b0008;
public static final int useLogo=0x7f0b0012;
public static final int withText=0x7f0b001f;
public static final int wrap_content=0x7f0b0020;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f090001;
public static final int abc_config_activityShortDur=0x7f090002;
public static final int abc_max_action_buttons=0x7f090000;
public static final int cancel_button_image_alpha=0x7f090003;
public static final int status_bar_notification_info_maxnum=0x7f090004;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f030000;
public static final int abc_action_bar_up_container=0x7f030001;
public static final int abc_action_bar_view_list_nav_layout=0x7f030002;
public static final int abc_action_menu_item_layout=0x7f030003;
public static final int abc_action_menu_layout=0x7f030004;
public static final int abc_action_mode_bar=0x7f030005;
public static final int abc_action_mode_close_item_material=0x7f030006;
public static final int abc_activity_chooser_view=0x7f030007;
public static final int abc_activity_chooser_view_list_item=0x7f030008;
public static final int abc_alert_dialog_material=0x7f030009;
public static final int abc_dialog_title_material=0x7f03000a;
public static final int abc_expanded_menu_layout=0x7f03000b;
public static final int abc_list_menu_item_checkbox=0x7f03000c;
public static final int abc_list_menu_item_icon=0x7f03000d;
public static final int abc_list_menu_item_layout=0x7f03000e;
public static final int abc_list_menu_item_radio=0x7f03000f;
public static final int abc_popup_menu_item_layout=0x7f030010;
public static final int abc_screen_content_include=0x7f030011;
public static final int abc_screen_simple=0x7f030012;
public static final int abc_screen_simple_overlay_action_mode=0x7f030013;
public static final int abc_screen_toolbar=0x7f030014;
public static final int abc_search_dropdown_item_icons_2line=0x7f030015;
public static final int abc_search_view=0x7f030016;
public static final int abc_select_dialog_material=0x7f030017;
public static final int activity_main=0x7f030018;
public static final int notification_media_action=0x7f030019;
public static final int notification_media_cancel_action=0x7f03001a;
public static final int notification_template_big_media=0x7f03001b;
public static final int notification_template_big_media_narrow=0x7f03001c;
public static final int notification_template_lines=0x7f03001d;
public static final int notification_template_media=0x7f03001e;
public static final int notification_template_part_chronometer=0x7f03001f;
public static final int notification_template_part_time=0x7f030020;
public static final int select_dialog_item_material=0x7f030021;
public static final int select_dialog_multichoice_material=0x7f030022;
public static final int select_dialog_singlechoice_material=0x7f030023;
public static final int support_simple_spinner_dropdown_item=0x7f030024;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f050000;
public static final int abc_action_bar_home_description_format=0x7f050001;
public static final int abc_action_bar_home_subtitle_description_format=0x7f050002;
public static final int abc_action_bar_up_description=0x7f050003;
public static final int abc_action_menu_overflow_description=0x7f050004;
public static final int abc_action_mode_done=0x7f050005;
public static final int abc_activity_chooser_view_see_all=0x7f050006;
public static final int abc_activitychooserview_choose_application=0x7f050007;
public static final int abc_search_hint=0x7f050008;
public static final int abc_searchview_description_clear=0x7f050009;
public static final int abc_searchview_description_query=0x7f05000a;
public static final int abc_searchview_description_search=0x7f05000b;
public static final int abc_searchview_description_submit=0x7f05000c;
public static final int abc_searchview_description_voice=0x7f05000d;
public static final int abc_shareactionprovider_share_with=0x7f05000e;
public static final int abc_shareactionprovider_share_with_application=0x7f05000f;
public static final int abc_toolbar_collapse_description=0x7f050010;
public static final int app_name=0x7f050012;
public static final int hello_world=0x7f050013;
public static final int status_bar_notification_info_overflow=0x7f050011;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f07007b;
public static final int AlertDialog_AppCompat_Light=0x7f07007c;
public static final int Animation_AppCompat_Dialog=0x7f07007d;
public static final int Animation_AppCompat_DropDownUp=0x7f07007e;
/** API 11 theme customizations can go here.
API 14 theme customizations can go here.
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
*/
public static final int AppBaseTheme=0x7f070003;
/** All customizations that are NOT specific to a particular API-level can go here.
*/
public static final int AppTheme=0x7f07007f;
public static final int Base_AlertDialog_AppCompat=0x7f070080;
public static final int Base_AlertDialog_AppCompat_Light=0x7f070081;
public static final int Base_Animation_AppCompat_Dialog=0x7f070082;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f070083;
public static final int Base_DialogWindowTitle_AppCompat=0x7f070084;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f070085;
public static final int Base_TextAppearance_AppCompat=0x7f07002e;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f07002f;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f070030;
public static final int Base_TextAppearance_AppCompat_Button=0x7f070019;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f070031;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f070032;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f070033;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f070034;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f070035;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f070036;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f070004;
public static final int Base_TextAppearance_AppCompat_Large=0x7f070037;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070005;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070038;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070039;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f07003a;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070006;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f07003b;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f070086;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f07003c;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f07003d;
public static final int Base_TextAppearance_AppCompat_Small=0x7f07003e;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070007;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f07003f;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070008;
public static final int Base_TextAppearance_AppCompat_Title=0x7f070040;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070009;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070041;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f070042;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f070043;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f070044;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070045;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070046;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070047;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f070048;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070077;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070087;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070049;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f07004a;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f07004b;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f07004c;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070088;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f07004d;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f07004e;
public static final int Base_Theme_AppCompat=0x7f07004f;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f070089;
public static final int Base_Theme_AppCompat_Dialog=0x7f07000a;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f07008a;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f07008b;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07008c;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f070001;
public static final int Base_Theme_AppCompat_Light=0x7f070050;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07008d;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f07000b;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07008e;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07008f;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f070090;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070002;
public static final int Base_ThemeOverlay_AppCompat=0x7f070091;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f070092;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f070093;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f070094;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f070095;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f07000c;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f07000d;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070015;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f070016;
public static final int Base_V21_Theme_AppCompat=0x7f070051;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f070052;
public static final int Base_V21_Theme_AppCompat_Light=0x7f070053;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f070054;
public static final int Base_V22_Theme_AppCompat=0x7f070075;
public static final int Base_V22_Theme_AppCompat_Light=0x7f070076;
public static final int Base_V23_Theme_AppCompat=0x7f070078;
public static final int Base_V23_Theme_AppCompat_Light=0x7f070079;
public static final int Base_V7_Theme_AppCompat=0x7f070096;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f070097;
public static final int Base_V7_Theme_AppCompat_Light=0x7f070098;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f070099;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f07009a;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f07009b;
public static final int Base_Widget_AppCompat_ActionBar=0x7f07009c;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f07009d;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f07009e;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f070055;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f070056;
public static final int Base_Widget_AppCompat_ActionButton=0x7f070057;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070058;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070059;
public static final int Base_Widget_AppCompat_ActionMode=0x7f07009f;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0700a0;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070017;
public static final int Base_Widget_AppCompat_Button=0x7f07005a;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f07005b;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f07005c;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700a1;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f07007a;
public static final int Base_Widget_AppCompat_Button_Small=0x7f07005d;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f07005e;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700a2;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07005f;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f070060;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700a3;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070000;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700a4;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f070061;
public static final int Base_Widget_AppCompat_EditText=0x7f070018;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0700a5;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700a6;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700a7;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f070062;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f070063;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070064;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f070065;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070066;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f070067;
public static final int Base_Widget_AppCompat_ListView=0x7f070068;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f070069;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f07006a;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f07006b;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f07006c;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0700a8;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f07000e;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07000f;
public static final int Base_Widget_AppCompat_RatingBar=0x7f07006d;
public static final int Base_Widget_AppCompat_SearchView=0x7f0700a9;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700aa;
public static final int Base_Widget_AppCompat_Spinner=0x7f07006e;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f07006f;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f070070;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0700ab;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f070071;
public static final int Platform_AppCompat=0x7f070010;
public static final int Platform_AppCompat_Light=0x7f070011;
public static final int Platform_ThemeOverlay_AppCompat=0x7f070072;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f070073;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f070074;
public static final int Platform_V11_AppCompat=0x7f070012;
public static final int Platform_V11_AppCompat_Light=0x7f070013;
public static final int Platform_V14_AppCompat=0x7f07001a;
public static final int Platform_V14_AppCompat_Light=0x7f07001b;
public static final int Platform_Widget_AppCompat_Spinner=0x7f070014;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f070021;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f070022;
public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f070023;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f070024;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f070025;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070026;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070027;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070028;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070029;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f07002a;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f07002b;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f07002c;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f07002d;
public static final int TextAppearance_AppCompat=0x7f0700ac;
public static final int TextAppearance_AppCompat_Body1=0x7f0700ad;
public static final int TextAppearance_AppCompat_Body2=0x7f0700ae;
public static final int TextAppearance_AppCompat_Button=0x7f0700af;
public static final int TextAppearance_AppCompat_Caption=0x7f0700b0;
public static final int TextAppearance_AppCompat_Display1=0x7f0700b1;
public static final int TextAppearance_AppCompat_Display2=0x7f0700b2;
public static final int TextAppearance_AppCompat_Display3=0x7f0700b3;
public static final int TextAppearance_AppCompat_Display4=0x7f0700b4;
public static final int TextAppearance_AppCompat_Headline=0x7f0700b5;
public static final int TextAppearance_AppCompat_Inverse=0x7f0700b6;
public static final int TextAppearance_AppCompat_Large=0x7f0700b7;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0700b8;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700b9;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700ba;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700bb;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700bc;
public static final int TextAppearance_AppCompat_Medium=0x7f0700bd;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0700be;
public static final int TextAppearance_AppCompat_Menu=0x7f0700bf;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700c0;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0700c1;
public static final int TextAppearance_AppCompat_Small=0x7f0700c2;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0700c3;
public static final int TextAppearance_AppCompat_Subhead=0x7f0700c4;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700c5;
public static final int TextAppearance_AppCompat_Title=0x7f0700c6;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0700c7;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700c8;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700c9;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700ca;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700cb;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700cc;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700cd;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700ce;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700cf;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700d0;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0700d1;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700d2;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700d3;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700d4;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700d5;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0700d6;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700d7;
public static final int TextAppearance_StatusBar_EventContent=0x7f07001c;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f07001d;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f07001e;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f07001f;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f070020;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700d8;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700d9;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700da;
public static final int Theme_AppCompat=0x7f0700db;
public static final int Theme_AppCompat_CompactMenu=0x7f0700dc;
public static final int Theme_AppCompat_Dialog=0x7f0700dd;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0700de;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0700df;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0700e0;
public static final int Theme_AppCompat_Light=0x7f0700e1;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0700e2;
public static final int Theme_AppCompat_Light_Dialog=0x7f0700e3;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0700e4;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700e5;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700e6;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0700e7;
public static final int Theme_AppCompat_NoActionBar=0x7f0700e8;
public static final int ThemeOverlay_AppCompat=0x7f0700e9;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0700ea;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0700eb;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700ec;
public static final int ThemeOverlay_AppCompat_Light=0x7f0700ed;
public static final int Widget_AppCompat_ActionBar=0x7f0700ee;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0700ef;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0700f0;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0700f1;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0700f2;
public static final int Widget_AppCompat_ActionButton=0x7f0700f3;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0700f4;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0700f5;
public static final int Widget_AppCompat_ActionMode=0x7f0700f6;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0700f7;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0700f8;
public static final int Widget_AppCompat_Button=0x7f0700f9;
public static final int Widget_AppCompat_Button_Borderless=0x7f0700fa;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0700fb;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700fc;
public static final int Widget_AppCompat_Button_Colored=0x7f0700fd;
public static final int Widget_AppCompat_Button_Small=0x7f0700fe;
public static final int Widget_AppCompat_ButtonBar=0x7f0700ff;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f070100;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f070101;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f070102;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f070103;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f070104;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f070105;
public static final int Widget_AppCompat_EditText=0x7f070106;
public static final int Widget_AppCompat_Light_ActionBar=0x7f070107;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f070108;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070109;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f07010a;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07010b;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f07010c;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07010d;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f07010e;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07010f;
public static final int Widget_AppCompat_Light_ActionButton=0x7f070110;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070111;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070112;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070113;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f070114;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070115;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070116;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f070117;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f070118;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f070119;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f07011a;
public static final int Widget_AppCompat_Light_SearchView=0x7f07011b;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07011c;
public static final int Widget_AppCompat_ListPopupWindow=0x7f07011d;
public static final int Widget_AppCompat_ListView=0x7f07011e;
public static final int Widget_AppCompat_ListView_DropDown=0x7f07011f;
public static final int Widget_AppCompat_ListView_Menu=0x7f070120;
public static final int Widget_AppCompat_PopupMenu=0x7f070121;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f070122;
public static final int Widget_AppCompat_PopupWindow=0x7f070123;
public static final int Widget_AppCompat_ProgressBar=0x7f070124;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f070125;
public static final int Widget_AppCompat_RatingBar=0x7f070126;
public static final int Widget_AppCompat_SearchView=0x7f070127;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f070128;
public static final int Widget_AppCompat_Spinner=0x7f070129;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f07012a;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07012b;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f07012c;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f07012d;
public static final int Widget_AppCompat_Toolbar=0x7f07012e;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f07012f;
}
public static final class styleable {
/** Attributes that can be used with a ActionBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background com.example.takeimage:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.example.takeimage:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.example.takeimage:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.example.takeimage:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.example.takeimage:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.example.takeimage:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.example.takeimage:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.example.takeimage:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.example.takeimage:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.example.takeimage:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.example.takeimage:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.example.takeimage:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.example.takeimage:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.example.takeimage:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.example.takeimage:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.example.takeimage:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.takeimage:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.example.takeimage:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.example.takeimage:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.example.takeimage:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.example.takeimage:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.example.takeimage:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.example.takeimage:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.example.takeimage:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.takeimage:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.example.takeimage:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.example.takeimage:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@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 = {
0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009,
0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d,
0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011,
0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015,
0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019,
0x7f01001a, 0x7f01001b, 0x7f01007b
};
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.example.takeimage:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.example.takeimage:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name com.example.takeimage:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:elevation
*/
public static final int ActionBar_elevation = 24;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 26;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name com.example.takeimage:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:popupTheme
*/
public static final int ActionBar_popupTheme = 25;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity = 0;
/** Attributes that can be used with a ActionMenuItemView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
</table>
@see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView = {
0x0101013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ActionMenuItemView} array.
@attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background com.example.takeimage:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.example.takeimage:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.example.takeimage:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.example.takeimage:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.takeimage:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.example.takeimage: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 = {
0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c,
0x7f01000e, 0x7f01001c
};
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.example.takeimage:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.example.takeimage:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.takeimage:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01001d, 0x7f01001e
};
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.example.takeimage:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.example.takeimage:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.example.takeimage:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.example.takeimage:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.example.takeimage: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_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static final int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** 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_textAllCaps com.example.takeimage:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010024
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.example.takeimage:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint com.example.takeimage:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.example.takeimage:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f010025, 0x7f010026
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static final int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.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>
</table>
@attr name com.example.takeimage:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.example.takeimage:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.example.takeimage:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.example.takeimage:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.example.takeimage:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.example.takeimage:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.example.takeimage:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.example.takeimage:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.example.takeimage: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 = {
0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a,
0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e
};
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider com.example.takeimage:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.example.takeimage:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.example.takeimage:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.example.takeimage: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, 0x7f01000b, 0x7f01002f, 0x7f010030,
0x7f010031
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name com.example.takeimage:showDividers
*/
public static final int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout com.example.takeimage:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.example.takeimage:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.example.takeimage:actionViewClass}</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_showAsAction com.example.takeimage:showAsAction}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@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_showAsAction
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f010032, 0x7f010033, 0x7f010034,
0x7f010035
};
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:actionViewClass
*/
public static final int MenuItem_actionViewClass = 15;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name com.example.takeimage:showAsAction
*/
public static final int MenuItem_showAsAction = 13;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing com.example.takeimage:preserveIconSpacing}</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
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f010036
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/** 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_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor com.example.takeimage:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x7f010037
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor = 1;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.example.takeimage:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f010038
};
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon com.example.takeimage:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.example.takeimage:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.example.takeimage:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.example.takeimage:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.example.takeimage:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.example.takeimage:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.example.takeimage:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.example.takeimage:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.example.takeimage:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.example.takeimage:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.example.takeimage:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.example.takeimage:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.example.takeimage: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,
0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c,
0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040,
0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044,
0x7f010045
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static final int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** 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_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme com.example.takeimage:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x01010176, 0x0101017b, 0x01010262, 0x7f01001b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 1;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:popupTheme
*/
public static final int Spinner_popupTheme = 3;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText com.example.takeimage:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.example.takeimage:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.example.takeimage:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.example.takeimage:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.example.takeimage:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.example.takeimage:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.example.takeimage:track}</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_track
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f010046,
0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a,
0x7f01004b, 0x7f01004c
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static final int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static final int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static final int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:showText
*/
public static final int SwitchCompat_showText = 9;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:splitTrack
*/
public static final int SwitchCompat_splitTrack = 8;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 6;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:switchPadding
*/
public static final int SwitchCompat_switchPadding = 7;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 4;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:track
*/
public static final int SwitchCompat_track = 3;
/** 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_textColor android:textColor}</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_textAllCaps com.example.takeimage:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x7f010024
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static final int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.example.takeimage:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 4;
/** Attributes that can be used with a Theme.
<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 #Theme_actionBarDivider com.example.takeimage:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarItemBackground com.example.takeimage:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarPopupTheme com.example.takeimage:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarSize com.example.takeimage:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarSplitStyle com.example.takeimage:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarStyle com.example.takeimage:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarTabBarStyle com.example.takeimage:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarTabStyle com.example.takeimage:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarTabTextStyle com.example.takeimage:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarTheme com.example.takeimage:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionBarWidgetTheme com.example.takeimage:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionButtonStyle com.example.takeimage:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionDropDownStyle com.example.takeimage:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionMenuTextAppearance com.example.takeimage:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionMenuTextColor com.example.takeimage:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeBackground com.example.takeimage:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeCloseButtonStyle com.example.takeimage:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeCloseDrawable com.example.takeimage:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeCopyDrawable com.example.takeimage:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeCutDrawable com.example.takeimage:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeFindDrawable com.example.takeimage:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModePasteDrawable com.example.takeimage:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModePopupWindowStyle com.example.takeimage:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeSelectAllDrawable com.example.takeimage:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeShareDrawable com.example.takeimage:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeSplitBackground com.example.takeimage:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeStyle com.example.takeimage:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionModeWebSearchDrawable com.example.takeimage:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionOverflowButtonStyle com.example.takeimage:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_actionOverflowMenuStyle com.example.takeimage:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_activityChooserViewStyle com.example.takeimage:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogButtonGroupStyle com.example.takeimage:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogCenterButtons com.example.takeimage:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogStyle com.example.takeimage:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_alertDialogTheme com.example.takeimage:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_autoCompleteTextViewStyle com.example.takeimage:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_borderlessButtonStyle com.example.takeimage:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonBarButtonStyle com.example.takeimage:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonBarNegativeButtonStyle com.example.takeimage:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonBarNeutralButtonStyle com.example.takeimage:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonBarPositiveButtonStyle com.example.takeimage:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonBarStyle com.example.takeimage:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonStyle com.example.takeimage:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_buttonStyleSmall com.example.takeimage:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_checkboxStyle com.example.takeimage:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_checkedTextViewStyle com.example.takeimage:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorAccent com.example.takeimage:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorButtonNormal com.example.takeimage:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorControlActivated com.example.takeimage:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorControlHighlight com.example.takeimage:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorControlNormal com.example.takeimage:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorPrimary com.example.takeimage:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorPrimaryDark com.example.takeimage:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_colorSwitchThumbNormal com.example.takeimage:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_controlBackground com.example.takeimage:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dialogPreferredPadding com.example.takeimage:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dialogTheme com.example.takeimage:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dividerHorizontal com.example.takeimage:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dividerVertical com.example.takeimage:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dropDownListViewStyle com.example.takeimage:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.example.takeimage:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_editTextBackground com.example.takeimage:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_editTextColor com.example.takeimage:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_editTextStyle com.example.takeimage:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_homeAsUpIndicator com.example.takeimage:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.example.takeimage:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listDividerAlertDialog com.example.takeimage:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPopupWindowStyle com.example.takeimage:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemHeight com.example.takeimage:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemHeightLarge com.example.takeimage:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemHeightSmall com.example.takeimage:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemPaddingLeft com.example.takeimage:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_listPreferredItemPaddingRight com.example.takeimage:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_panelBackground com.example.takeimage:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_panelMenuListTheme com.example.takeimage:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_panelMenuListWidth com.example.takeimage:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_popupMenuStyle com.example.takeimage:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_popupWindowStyle com.example.takeimage:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_radioButtonStyle com.example.takeimage:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_ratingBarStyle com.example.takeimage:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_searchViewStyle com.example.takeimage:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_selectableItemBackground com.example.takeimage:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_selectableItemBackgroundBorderless com.example.takeimage:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_spinnerDropDownItemStyle com.example.takeimage:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_spinnerStyle com.example.takeimage:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_switchStyle com.example.takeimage:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceLargePopupMenu com.example.takeimage:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceListItem com.example.takeimage:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceListItemSmall com.example.takeimage:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle com.example.takeimage:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceSearchResultTitle com.example.takeimage:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu com.example.takeimage:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textColorAlertDialogListItem com.example.takeimage:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_textColorSearchUrl com.example.takeimage:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_toolbarNavigationButtonStyle com.example.takeimage:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_toolbarStyle com.example.takeimage:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowActionBar com.example.takeimage:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowActionBarOverlay com.example.takeimage:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowActionModeOverlay com.example.takeimage:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowFixedHeightMajor com.example.takeimage:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowFixedHeightMinor com.example.takeimage:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowFixedWidthMajor com.example.takeimage:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowFixedWidthMinor com.example.takeimage:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowMinWidthMajor com.example.takeimage:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowMinWidthMinor com.example.takeimage:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #Theme_windowNoTitle com.example.takeimage:windowNoTitle}</code></td><td></td></tr>
</table>
@see #Theme_actionBarDivider
@see #Theme_actionBarItemBackground
@see #Theme_actionBarPopupTheme
@see #Theme_actionBarSize
@see #Theme_actionBarSplitStyle
@see #Theme_actionBarStyle
@see #Theme_actionBarTabBarStyle
@see #Theme_actionBarTabStyle
@see #Theme_actionBarTabTextStyle
@see #Theme_actionBarTheme
@see #Theme_actionBarWidgetTheme
@see #Theme_actionButtonStyle
@see #Theme_actionDropDownStyle
@see #Theme_actionMenuTextAppearance
@see #Theme_actionMenuTextColor
@see #Theme_actionModeBackground
@see #Theme_actionModeCloseButtonStyle
@see #Theme_actionModeCloseDrawable
@see #Theme_actionModeCopyDrawable
@see #Theme_actionModeCutDrawable
@see #Theme_actionModeFindDrawable
@see #Theme_actionModePasteDrawable
@see #Theme_actionModePopupWindowStyle
@see #Theme_actionModeSelectAllDrawable
@see #Theme_actionModeShareDrawable
@see #Theme_actionModeSplitBackground
@see #Theme_actionModeStyle
@see #Theme_actionModeWebSearchDrawable
@see #Theme_actionOverflowButtonStyle
@see #Theme_actionOverflowMenuStyle
@see #Theme_activityChooserViewStyle
@see #Theme_alertDialogButtonGroupStyle
@see #Theme_alertDialogCenterButtons
@see #Theme_alertDialogStyle
@see #Theme_alertDialogTheme
@see #Theme_android_windowAnimationStyle
@see #Theme_android_windowIsFloating
@see #Theme_autoCompleteTextViewStyle
@see #Theme_borderlessButtonStyle
@see #Theme_buttonBarButtonStyle
@see #Theme_buttonBarNegativeButtonStyle
@see #Theme_buttonBarNeutralButtonStyle
@see #Theme_buttonBarPositiveButtonStyle
@see #Theme_buttonBarStyle
@see #Theme_buttonStyle
@see #Theme_buttonStyleSmall
@see #Theme_checkboxStyle
@see #Theme_checkedTextViewStyle
@see #Theme_colorAccent
@see #Theme_colorButtonNormal
@see #Theme_colorControlActivated
@see #Theme_colorControlHighlight
@see #Theme_colorControlNormal
@see #Theme_colorPrimary
@see #Theme_colorPrimaryDark
@see #Theme_colorSwitchThumbNormal
@see #Theme_controlBackground
@see #Theme_dialogPreferredPadding
@see #Theme_dialogTheme
@see #Theme_dividerHorizontal
@see #Theme_dividerVertical
@see #Theme_dropDownListViewStyle
@see #Theme_dropdownListPreferredItemHeight
@see #Theme_editTextBackground
@see #Theme_editTextColor
@see #Theme_editTextStyle
@see #Theme_homeAsUpIndicator
@see #Theme_listChoiceBackgroundIndicator
@see #Theme_listDividerAlertDialog
@see #Theme_listPopupWindowStyle
@see #Theme_listPreferredItemHeight
@see #Theme_listPreferredItemHeightLarge
@see #Theme_listPreferredItemHeightSmall
@see #Theme_listPreferredItemPaddingLeft
@see #Theme_listPreferredItemPaddingRight
@see #Theme_panelBackground
@see #Theme_panelMenuListTheme
@see #Theme_panelMenuListWidth
@see #Theme_popupMenuStyle
@see #Theme_popupWindowStyle
@see #Theme_radioButtonStyle
@see #Theme_ratingBarStyle
@see #Theme_searchViewStyle
@see #Theme_selectableItemBackground
@see #Theme_selectableItemBackgroundBorderless
@see #Theme_spinnerDropDownItemStyle
@see #Theme_spinnerStyle
@see #Theme_switchStyle
@see #Theme_textAppearanceLargePopupMenu
@see #Theme_textAppearanceListItem
@see #Theme_textAppearanceListItemSmall
@see #Theme_textAppearanceSearchResultSubtitle
@see #Theme_textAppearanceSearchResultTitle
@see #Theme_textAppearanceSmallPopupMenu
@see #Theme_textColorAlertDialogListItem
@see #Theme_textColorSearchUrl
@see #Theme_toolbarNavigationButtonStyle
@see #Theme_toolbarStyle
@see #Theme_windowActionBar
@see #Theme_windowActionBarOverlay
@see #Theme_windowActionModeOverlay
@see #Theme_windowFixedHeightMajor
@see #Theme_windowFixedHeightMinor
@see #Theme_windowFixedWidthMajor
@see #Theme_windowFixedWidthMinor
@see #Theme_windowMinWidthMajor
@see #Theme_windowMinWidthMinor
@see #Theme_windowNoTitle
*/
public static final int[] Theme = {
0x01010057, 0x010100ae, 0x7f01004d, 0x7f01004e,
0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052,
0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056,
0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a,
0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e,
0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062,
0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066,
0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a,
0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e,
0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072,
0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076,
0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a,
0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e,
0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082,
0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086,
0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a,
0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e,
0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092,
0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096,
0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a,
0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e,
0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2,
0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6,
0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa,
0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae,
0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2,
0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6
};
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarDivider}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionBarDivider
*/
public static final int Theme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionBarItemBackground
*/
public static final int Theme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionBarPopupTheme
*/
public static final int Theme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarSize}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name com.example.takeimage:actionBarSize
*/
public static final int Theme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionBarSplitStyle
*/
public static final int Theme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionBarStyle
*/
public static final int Theme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionBarTabBarStyle
*/
public static final int Theme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionBarTabStyle
*/
public static final int Theme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionBarTabTextStyle
*/
public static final int Theme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionBarTheme
*/
public static final int Theme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionBarWidgetTheme
*/
public static final int Theme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionButtonStyle
*/
public static final int Theme_actionButtonStyle = 49;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionDropDownStyle
*/
public static final int Theme_actionDropDownStyle = 45;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionMenuTextAppearance
*/
public static final int Theme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.example.takeimage:actionMenuTextColor
*/
public static final int Theme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeBackground
*/
public static final int Theme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeCloseButtonStyle
*/
public static final int Theme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeCloseDrawable
*/
public static final int Theme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeCopyDrawable
*/
public static final int Theme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeCutDrawable
*/
public static final int Theme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeFindDrawable
*/
public static final int Theme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModePasteDrawable
*/
public static final int Theme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModePopupWindowStyle
*/
public static final int Theme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeSelectAllDrawable
*/
public static final int Theme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeShareDrawable
*/
public static final int Theme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeSplitBackground
*/
public static final int Theme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeStyle
*/
public static final int Theme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionModeWebSearchDrawable
*/
public static final int Theme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionOverflowButtonStyle
*/
public static final int Theme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:actionOverflowMenuStyle
*/
public static final int Theme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:activityChooserViewStyle
*/
public static final int Theme_activityChooserViewStyle = 57;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:alertDialogButtonGroupStyle
*/
public static final int Theme_alertDialogButtonGroupStyle = 91;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:alertDialogCenterButtons
*/
public static final int Theme_alertDialogCenterButtons = 92;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:alertDialogStyle
*/
public static final int Theme_alertDialogStyle = 90;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:alertDialogTheme
*/
public static final int Theme_alertDialogTheme = 93;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #Theme} array.
@attr name android:windowAnimationStyle
*/
public static final int Theme_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 #Theme} array.
@attr name android:windowIsFloating
*/
public static final int Theme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:autoCompleteTextViewStyle
*/
public static final int Theme_autoCompleteTextViewStyle = 98;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:borderlessButtonStyle
*/
public static final int Theme_borderlessButtonStyle = 54;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:buttonBarButtonStyle
*/
public static final int Theme_buttonBarButtonStyle = 51;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:buttonBarNegativeButtonStyle
*/
public static final int Theme_buttonBarNegativeButtonStyle = 96;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:buttonBarNeutralButtonStyle
*/
public static final int Theme_buttonBarNeutralButtonStyle = 97;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:buttonBarPositiveButtonStyle
*/
public static final int Theme_buttonBarPositiveButtonStyle = 95;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:buttonBarStyle
*/
public static final int Theme_buttonBarStyle = 50;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#buttonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:buttonStyle
*/
public static final int Theme_buttonStyle = 99;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:buttonStyleSmall
*/
public static final int Theme_buttonStyleSmall = 100;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#checkboxStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:checkboxStyle
*/
public static final int Theme_checkboxStyle = 101;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:checkedTextViewStyle
*/
public static final int Theme_checkedTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#colorAccent}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:colorAccent
*/
public static final int Theme_colorAccent = 83;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:colorButtonNormal
*/
public static final int Theme_colorButtonNormal = 87;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#colorControlActivated}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:colorControlActivated
*/
public static final int Theme_colorControlActivated = 85;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:colorControlHighlight
*/
public static final int Theme_colorControlHighlight = 86;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#colorControlNormal}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:colorControlNormal
*/
public static final int Theme_colorControlNormal = 84;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#colorPrimary}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:colorPrimary
*/
public static final int Theme_colorPrimary = 81;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:colorPrimaryDark
*/
public static final int Theme_colorPrimaryDark = 82;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:colorSwitchThumbNormal
*/
public static final int Theme_colorSwitchThumbNormal = 88;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#controlBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:controlBackground
*/
public static final int Theme_controlBackground = 89;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:dialogPreferredPadding
*/
public static final int Theme_dialogPreferredPadding = 43;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#dialogTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:dialogTheme
*/
public static final int Theme_dialogTheme = 42;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:dividerHorizontal
*/
public static final int Theme_dividerHorizontal = 56;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#dividerVertical}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:dividerVertical
*/
public static final int Theme_dividerVertical = 55;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:dropDownListViewStyle
*/
public static final int Theme_dropDownListViewStyle = 73;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:dropdownListPreferredItemHeight
*/
public static final int Theme_dropdownListPreferredItemHeight = 46;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#editTextBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:editTextBackground
*/
public static final int Theme_editTextBackground = 63;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#editTextColor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.example.takeimage:editTextColor
*/
public static final int Theme_editTextColor = 62;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#editTextStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:editTextStyle
*/
public static final int Theme_editTextStyle = 103;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:homeAsUpIndicator
*/
public static final int Theme_homeAsUpIndicator = 48;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:listChoiceBackgroundIndicator
*/
public static final int Theme_listChoiceBackgroundIndicator = 80;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:listDividerAlertDialog
*/
public static final int Theme_listDividerAlertDialog = 44;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:listPopupWindowStyle
*/
public static final int Theme_listPopupWindowStyle = 74;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:listPreferredItemHeight
*/
public static final int Theme_listPreferredItemHeight = 68;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:listPreferredItemHeightLarge
*/
public static final int Theme_listPreferredItemHeightLarge = 70;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:listPreferredItemHeightSmall
*/
public static final int Theme_listPreferredItemHeightSmall = 69;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:listPreferredItemPaddingLeft
*/
public static final int Theme_listPreferredItemPaddingLeft = 71;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:listPreferredItemPaddingRight
*/
public static final int Theme_listPreferredItemPaddingRight = 72;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#panelBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:panelBackground
*/
public static final int Theme_panelBackground = 77;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:panelMenuListTheme
*/
public static final int Theme_panelMenuListTheme = 79;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:panelMenuListWidth
*/
public static final int Theme_panelMenuListWidth = 78;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:popupMenuStyle
*/
public static final int Theme_popupMenuStyle = 60;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:popupWindowStyle
*/
public static final int Theme_popupWindowStyle = 61;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:radioButtonStyle
*/
public static final int Theme_radioButtonStyle = 104;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:ratingBarStyle
*/
public static final int Theme_ratingBarStyle = 105;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#searchViewStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:searchViewStyle
*/
public static final int Theme_searchViewStyle = 67;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:selectableItemBackground
*/
public static final int Theme_selectableItemBackground = 52;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:selectableItemBackgroundBorderless
*/
public static final int Theme_selectableItemBackgroundBorderless = 53;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:spinnerDropDownItemStyle
*/
public static final int Theme_spinnerDropDownItemStyle = 47;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#spinnerStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:spinnerStyle
*/
public static final int Theme_spinnerStyle = 106;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#switchStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:switchStyle
*/
public static final int Theme_switchStyle = 107;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:textAppearanceLargePopupMenu
*/
public static final int Theme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:textAppearanceListItem
*/
public static final int Theme_textAppearanceListItem = 75;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:textAppearanceListItemSmall
*/
public static final int Theme_textAppearanceListItemSmall = 76;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:textAppearanceSearchResultSubtitle
*/
public static final int Theme_textAppearanceSearchResultSubtitle = 65;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:textAppearanceSearchResultTitle
*/
public static final int Theme_textAppearanceSearchResultTitle = 64;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:textAppearanceSmallPopupMenu
*/
public static final int Theme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #Theme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.example.takeimage:textColorAlertDialogListItem
*/
public static final int Theme_textColorAlertDialogListItem = 94;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #Theme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.example.takeimage:textColorSearchUrl
*/
public static final int Theme_textColorSearchUrl = 66;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:toolbarNavigationButtonStyle
*/
public static final int Theme_toolbarNavigationButtonStyle = 59;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#toolbarStyle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:toolbarStyle
*/
public static final int Theme_toolbarStyle = 58;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#windowActionBar}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:windowActionBar
*/
public static final int Theme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:windowActionBarOverlay
*/
public static final int Theme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:windowActionModeOverlay
*/
public static final int Theme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:windowFixedHeightMajor
*/
public static final int Theme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:windowFixedHeightMinor
*/
public static final int Theme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:windowFixedWidthMajor
*/
public static final int Theme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:windowFixedWidthMinor
*/
public static final int Theme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:windowMinWidthMajor
*/
public static final int Theme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #Theme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:windowMinWidthMinor
*/
public static final int Theme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#windowNoTitle}
attribute's value can be found in the {@link #Theme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:windowNoTitle
*/
public static final int Theme_windowNoTitle = 3;
/** 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_collapseContentDescription com.example.takeimage:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.example.takeimage:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.example.takeimage:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.example.takeimage:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.example.takeimage:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.example.takeimage:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.example.takeimage:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.example.takeimage:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.example.takeimage:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.example.takeimage:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.example.takeimage:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.example.takeimage:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.example.takeimage:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.example.takeimage:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.example.takeimage:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.example.takeimage:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.example.takeimage:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.example.takeimage:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.example.takeimage:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.example.takeimage:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.example.takeimage:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.example.takeimage:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.example.takeimage:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@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_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, 0x7f010003, 0x7f010006,
0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018,
0x7f010019, 0x7f01001b, 0x7f0100b7, 0x7f0100b8,
0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc,
0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0,
0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4,
0x7f0100c5
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static final int Toolbar_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:minHeight
*/
public static final int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 19;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:collapseIcon
*/
public static final int Toolbar_collapseIcon = 18;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:logoDescription
*/
public static final int Toolbar_logoDescription = 22;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 17;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 21;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:navigationIcon
*/
public static final int Toolbar_navigationIcon = 20;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:popupTheme
*/
public static final int Toolbar_popupTheme = 9;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 11;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 24;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 16;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 14;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 13;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 15;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:titleMargins
*/
public static final int Toolbar_titleMargins = 12;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 10;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:titleTextColor
*/
public static final int Toolbar_titleTextColor = 23;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd com.example.takeimage:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.example.takeimage:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.example.takeimage: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, 0x7f0100c6, 0x7f0100c7,
0x7f0100c8
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static final int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static final int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.example.takeimage:theme
*/
public static final int View_theme = 4;
/** Attributes that can be used with a ViewBackgroundHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.example.takeimage:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.example.takeimage:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f0100c9, 0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static final int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.example.takeimage:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.example.takeimage.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>
</table>
@attr name com.example.takeimage:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static final int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
| [
"[email protected]"
]
| |
10b6af72ebb2b55481d95543128d06797a31a456 | 512c09680191bb58a31185b677d625953059e60c | /app/src/main/java/com/example/student/cs3270a9/CourseRecyclerViewAdapter.java | 55a006733a885f5325536a4c20f0bb2c6e3cac64 | []
| no_license | chardur/CS3270A9 | 850ac98eefd26db90e47ade96728438208c2ff77 | 2762aea7fd2be3ca3c7cbe41f70a2a0d137eb3cf | refs/heads/master | 2020-04-02T10:42:31.565518 | 2018-11-07T20:07:05 | 2018-11-07T20:07:05 | 154,351,059 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,947 | java | package com.example.student.cs3270a9;
import android.support.annotation.NonNull;
import android.support.v4.app.FragmentActivity;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import com.example.student.cs3270a9.db.Course;
import java.util.List;
public class CourseRecyclerViewAdapter extends RecyclerView.Adapter<CourseRecyclerViewAdapter.ViewHolder>{
private final List<Course> courses;
private final FragmentActivity activity;
private CourseRecyclerInterface mCallBack;
interface CourseRecyclerInterface{
void itemSelected(Course course);
void longItemSelected(Course course);
}
public CourseRecyclerViewAdapter(List<Course> courses, FragmentActivity activity) {
this.courses = courses;
this.activity = activity;
try {
mCallBack = (CourseRecyclerInterface) activity;
}catch (ClassCastException e){
throw new ClassCastException(activity.toString() + activity.getString(R.string.recyclerInterfaceError));
}
}
@NonNull
@Override
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int i) {
View view = LayoutInflater.from(parent.getContext())
.inflate(R.layout.recycler_item, parent, false);
return new ViewHolder(view);
}
@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
final Course course = courses.get(position);
if (course != null){
holder.course = course;
holder.tvLine1.setText(course.getName());
holder.tvLine2.setText(course.getId());
holder.view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mCallBack.itemSelected(course);
}
});
holder.view.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
mCallBack.longItemSelected(course);
return true;
}
});
}
}
@Override
public int getItemCount() {
return courses.size();
}
public void addItems(List<Course> courses) {
this.courses.clear();
this.courses.addAll(courses);
notifyDataSetChanged();
}
public class ViewHolder extends RecyclerView.ViewHolder{
public TextView tvLine1, tvLine2;
public Course course;
public View view;
public ViewHolder(@NonNull View itemView) {
super(itemView);
view = itemView;
tvLine1 = (TextView) itemView.findViewById(R.id.line1);
tvLine2 = (TextView) itemView.findViewById(R.id.line2);
}
}
}
| [
"[email protected]"
]
| |
6d6caebc9086aeb5aea0ed54c2b3bdb6fdf1db27 | 34a5ee54e16f1bcd57e51875d7a21555351540df | /day07/陈豪杰/MyMvp/app/src/main/java/com/example/mymvp/base/BasePresenter.java | b7be552eaa31234ecd8a40b14b745ae443fec120 | []
| no_license | tddch/group2 | a9bc71aa6346f8f99138460b5d84b649408c2f1b | 32299da0d15307c8a8b470c0ed9016a1598eb31a | refs/heads/main | 2023-02-14T19:44:36.240200 | 2021-01-02T13:22:02 | 2021-01-02T13:22:02 | 322,761,173 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,332 | java | package com.example.mymvp.base;
import com.example.mymvp.base.interfaces.IBasePresenter;
import com.example.mymvp.base.interfaces.IBaseView;
import java.lang.ref.WeakReference;
import io.reactivex.disposables.CompositeDisposable;
import io.reactivex.disposables.Disposable;
public class BasePresenter<V extends IBaseView<T>,T> implements IBasePresenter<T> {
private WeakReference<V> mView;
private CompositeDisposable mComposite = new CompositeDisposable();
// TODO: 2020/12/21 添加网络开关
protected void addDisposable(Disposable disposable){
if(mComposite!=null){
mComposite.add(disposable);
}
}
//弱引用修饰V层 方便GC回收
protected void attachView(V view){
mView = new WeakReference<V>(view);
}
// TODO: 2020/12/21 释放V层资源的同事断开网络开关
protected void detachView(){
if(mView!=null){
mView.clear();
mView = null;
}
}
// TODO: 2020/12/21 断开网络开关
private void detachDisposable(){
if(mComposite!=null&&mComposite.isDisposed()){
mComposite.dispose();
mComposite.clear();
mComposite = null;
}
}
@Override
public void start() {
}
@Override
public void start(T... t) {
}
}
| [
"[email protected]"
]
| |
dea967af8ffa4c0f4cdbdc1cfcf0aa464410455c | 3e82f2887bf6bb736b86b0a526951f03069eb7a5 | /springcludefeigndemo/src/main/java/com/example/feign/interceptor/CustomRequestInterceptor.java | 96fc7d896dda0661d1b79dacb1d3c5dff0144927 | []
| no_license | DylanDan/springcloud | 9a0d5df9252fcf4334dbad31bcb2ffe5ac93451d | 4a1f8a2ea745a36592545a1436e15ea8f8010a71 | refs/heads/master | 2021-02-08T14:10:06.134422 | 2020-03-10T00:12:53 | 2020-03-10T00:12:53 | 244,160,291 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 339 | java | package com.example.feign.interceptor;
import feign.RequestInterceptor;
import feign.RequestTemplate;
public class CustomRequestInterceptor implements RequestInterceptor {
@Override
public void apply(RequestTemplate template) {
System.err.println(template.url());
template.header("myHeader", "xx.com");
}
}
| [
"[email protected]"
]
| |
bca4c6b8f450c2fb1320230ab86e8870a5c53b82 | d2f1c7cc9642055fed01eab6fae90ad49802de3e | /back-end/src/main/java/io/ramonak/adminka/ui/views/muscleGroup/MuscleGroupView.java | f507807574e714ce2d4ae6624dbad7ca47b1e22c | [
"Unlicense",
"MIT"
]
| permissive | KaterinaLupacheva/tabata-app | 5c5d4c168fb6d6006dfe45e16c2b84659c62ac8a | c1a9db3157d17356f1ebc54348d187947e47762f | refs/heads/master | 2023-03-07T04:03:26.018831 | 2022-07-20T20:13:58 | 2022-07-20T20:13:58 | 234,334,098 | 5 | 1 | MIT | 2023-03-04T05:42:46 | 2020-01-16T14:08:16 | JavaScript | UTF-8 | Java | false | false | 2,671 | java | package io.ramonak.adminka.ui.views.muscleGroup;
import com.vaadin.flow.component.Key;
import com.vaadin.flow.component.button.Button;
import com.vaadin.flow.component.button.ButtonVariant;
import com.vaadin.flow.component.grid.Grid;
import com.vaadin.flow.component.orderedlayout.HorizontalLayout;
import com.vaadin.flow.component.orderedlayout.VerticalLayout;
import com.vaadin.flow.router.Route;
import io.ramonak.adminka.ui.utils.AppConst;
import io.ramonak.adminka.ui.views.MainView;
import io.ramonak.service.dto.MuscleGroupDTO;
import io.ramonak.service.services.MuscleGroupService;
@Route(value = AppConst.ROOT + "/" + AppConst.PAGE_MUSCLE_GROUP, layout = MainView.class)
class MuscleGroupView extends VerticalLayout {
private final MuscleGroupService muscleGroupService;
private final Grid<MuscleGroupDTO> grid;
private final MuscleGroupForm form;
public MuscleGroupView(MuscleGroupService muscleGroupService) {
setSizeFull();
this.muscleGroupService = muscleGroupService;
this.form = new MuscleGroupForm(muscleGroupService);
grid = new Grid<>(MuscleGroupDTO.class);
grid.setColumns("name");
updateList();
grid.asSingleSelect().addValueChangeListener(e -> form.setBean(e.getValue()));
HorizontalLayout mainContent = new HorizontalLayout(grid, form);
grid.setSizeFull();
mainContent.setSizeFull();
form.setVisible(false);
setupClickListenersToButtons();
Button addMuscleGroup = new Button("Add Muscle Group");
addMuscleGroup.addThemeVariants(ButtonVariant.MATERIAL_OUTLINED);
addMuscleGroup.addClickListener(e -> {
grid.asSingleSelect().clear();
form.setBean(new MuscleGroupDTO());
});
add(addMuscleGroup, mainContent);
}
private void setupClickListenersToButtons() {
form.getSaveButton().addClickListener(e -> save());
form.getSaveButton().addClickShortcut(Key.ENTER);
form.getDeleteButton().addClickListener(e -> delete());
form.getCancelButton().addClickListener(e -> cancel());
}
private void save() {
muscleGroupService.saveMuscleGroup(form.getBinder().getBean());
updateList();
form.setBean(null);
}
private void delete() {
muscleGroupService.deleteMuscleGroup(form.getBinder().getBean());
updateList();
form.setBean(null);
}
private void cancel() {
form.setBean(null);
}
private void updateList() {
grid.setItems(muscleGroupService.getAllMuscleGroups());
}
}
| [
"[email protected]"
]
| |
69508abe37d518ed2f9354341dc8f9e067199c80 | 86467396f701c7f0e1cf93bfa6ffaff4398a91a4 | /8. oops/5. Inheritance In Constructor/ConsInherit.java | f971576627a52872756e0de83b8a23459484f9ad | []
| no_license | sbhardwaj8717/Complete-Java-Core | 9f2523de1fa9d0a0dff9696cf3db01200b8cb502 | 221d8da6168a8fac26a0c1fe606f9b5f81de1ed8 | refs/heads/master | 2023-04-26T10:53:31.913141 | 2021-05-22T15:30:13 | 2021-05-22T15:30:13 | 297,621,748 | 0 | 2 | null | 2020-10-19T15:25:18 | 2020-09-22T11:01:48 | Java | UTF-8 | Java | false | false | 116 | java | public class ConsInherit {
public static void main(String[] args) {
Class1 cls = new Class1();
}
}
| [
"[email protected]"
]
| |
e884dc3cdc6e2411a1bfe7416d69a7e17d38f33b | 3c3b90f959042308f9ad2e9bcc9aed16a1310621 | /ExerciciosJUnit_Hyago/src/param/CalculoImpostoRenda.java | 503ea0d1cc67cd4079c2a3e55d437e7b8d3b82c1 | [
"MIT"
]
| permissive | hyagocarlos/TestedeSoftware | f6049f929a85de3a74e34f1f1966713ec1c5879c | 7d5fe2bf9ddd58e7151de4bd87a946c179035803 | refs/heads/main | 2023-04-09T17:55:39.700055 | 2021-03-25T18:39:26 | 2021-03-25T18:39:26 | 351,538,852 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,320 | java | package param;
public class CalculoImpostoRenda {
/**
* Este método calcula o imposto a ser pago baseado no valor de uma dada compra.
*
* Se 1201 <= valor <= 5000 deve pagar 10% de imposto
* Se 5001 <= valor <= 10000 deve pagar 15% de imposto
* Se valor > 10000 deve pagar 20% de imposto
* Se valor < 1201 deve pagar 0% de imposto
*
* @param valor
* @return
*/
public static void calculaImposto(double valor) {
//Declaração de Variáveis
double imposto;
double impostotot;
String porcento;
if (valor >= 1201 && valor <= 5000) { // classes de equivalência
imposto = 1.1; // 1201 >= valor < = 5000 válidos
porcento = "10%"; // 1201 < valor > 5000 entradas inválidas
impostotot = 0.1;
} else if(valor >= 5001 && valor <= 10000){
imposto = 1.15;
porcento = "15%";
impostotot = 0.15;
} else{
imposto = 1.2;
porcento = "20%";
impostotot = 0.2;
}
//Saída de dados
System.out.println("Valor em Dinheiro: R$" + (valor*impostotot));
}
public static void main(String[] args) {
calculaImposto(200.5);
}
}
| [
"[email protected]"
]
| |
340dac19fe5cd538f3f9d672fb01f5e2e43c149b | c578c66d9a224e7cd754a677fb04f5df300e21bc | /src/main/java/com/node/dto/request/NodeRootRequest.java | 023a2c84b361639c3e727cf76a4bb61d7c57f1cd | []
| no_license | Sergio997/node | a90bc73e55b6899ba1f7c76059e8e38274552ae4 | 44d8004e6547b9a7a401e47f7e9cd4e6e615ef41 | refs/heads/master | 2023-01-12T01:09:04.886261 | 2020-11-10T13:37:17 | 2020-11-10T13:37:17 | 311,668,462 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 92 | java | package com.node.dto.request;
public class NodeRootRequest extends AbstractNodeRequest {
}
| [
"[email protected]"
]
| |
c27c1269be76c2969278e1af5f003153c1919587 | 58973d2caa4a061fcd9ff3e1d838ff873123a694 | /src/main/db/DB.java | db19ad70baff7e61e3592bd40f081c0c9f3a5188 | []
| no_license | Maksym-Gorbunov/OpenCVApplication | 040ee4946597fb0ba1a53ea3a6450d6c2e46d4e4 | f6a8e72082c81241c13f7ef9b1332ff5c26de7d3 | refs/heads/master | 2020-06-16T17:22:53.560299 | 2019-08-07T20:36:36 | 2019-08-07T20:36:36 | 195,649,492 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,887 | java | package main.db;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import com.mongodb.*;
import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoDatabase;
import org.bson.Document;
import java.util.ArrayList;
import java.util.List;
import static java.util.Arrays.asList;
public class DB {
public DB() {
MongoClientURI uri = new MongoClientURI(
"mongodb+srv://ithsUser:[email protected]/test?retryWrites=true&w=majority");
MongoClient mongoClient = new MongoClient(uri);
MongoDatabase database = mongoClient.getDatabase("iths");
for (String collectionName : database.listCollectionNames()) {
System.out.println(collectionName);
}
}
// public static void populateContactBook() {
// /*
// mongodb+srv://ithsUser:<ithsPassword>@iths-ygc8w.mongodb.net/test?retryWrites=true&w=majority
// */
// }
//
//
//
// static MongoClient mongoClient = new MongoClient();
// //connect to test database
// static MongoDatabase database;
// static {
// // Make the logger a little more quiet
// Logger mongoLogger = Logger.getLogger( "org.mongodb.driver" );
// mongoLogger.setLevel(Level.SEVERE);
//
// // Create and get the database 'test001'
// System.out.println("===================================");
// System.out.println("Get the database 'test001'...");
// database = mongoClient.getDatabase("test001");
// }
//
// // This method lists all databases
// static void listDatabases() {
// System.out.println("===================================");
// System.out.println("names of all databases:");
// //show databases:
// mongoClient.getDatabaseNames().forEach(System.out::println);
// }
//
// // This method lists all collection names in the current database:
// static void listCollectionNames() {
// for(String collectionName : database.listCollectionNames()) {
// System.out.println(collectionName);
// }
// }
//
// // Create collection named 'customers'
// static void createCustomers() {
// MongoCollection<Document> collection = database.getCollection("customers");
// collection.insertOne(new Document());
// }
//
// static void dropCustomers() {
// MongoCollection<Document> collection = database.getCollection("customers");
// collection.drop();
// collection = database.getCollection("customers");
// }
//
// static void hr() {
// System.out.println("===================================");
// }
//
// static void createAndInsertCustomers() {
// MongoCollection<Document> collection = database.getCollection("customers");
// List<Document> document = asList(
// new Document ("name", "Eva")
// .append("email", "[email protected]")
// .append("customerId", 100),
//
// new Document("name", "Patrik")
// .append("email","[email protected]")
// .append("customerId", 101));
// collection.insertMany(document);
// }
//
// static void printCustomers() {
// MongoCollection<Document> collection = database.getCollection("customers");
// List<Document>result = collection.find().into(new ArrayList<>());
// result.stream().map(Document::toJson).forEach(System.out::println);
// /* OLD Style Java:
// for (Document doc : result) {
// System.out.println(doc.toJson());
// }
// */
// }
//
// static void findAndPrintEva() {
// MongoCollection<Document> collection = database.getCollection("customers");
// List<Document> result = collection.find(new Document("name", "Eva")).into(new ArrayList<>());
// System.out.println(result);
// }
//
// static void updateEva() {
// MongoCollection<Document> collection = database.getCollection("customers");
// BasicDBObject newDocument = new BasicDBObject();
// newDocument.append("$set", new BasicDBObject().append("email", "[email protected]"));
// BasicDBObject query = new BasicDBObject().append("name","Eva");
// collection.updateOne(query, newDocument);
// }
//
// static void updatePatrik() {
// MongoCollection<Document> collection = database.getCollection("customers");
// BasicDBObject updateQuery = new BasicDBObject();
// updateQuery.append("$inc", new BasicDBObject().append("customerId", 10));
// BasicDBObject searchQuery = new BasicDBObject().append("name","Patrik");
// collection.updateOne(searchQuery, updateQuery);
// }
/* Main method
*
*/
public static void main(String[] args) {
// listDatabases();
// hr(); // write a horizontal ruler
// System.out.println("All collections:");
// listCollectionNames();
// hr();
// System.out.println("Create new collection, 'custemers'.");
// createCustomers();
// System.out.println("All collections:");
// listCollectionNames();
// hr();
// System.out.println("Drop collection customers");
// dropCustomers();
// hr();
// System.out.println("All collections:");
// listCollectionNames();
// hr();
// System.out.println("Create customers, and insert some documents");
// hr();
// createAndInsertCustomers();
// hr();
// System.out.println("Print documents in customers");
// printCustomers();
// hr();
// System.out.println("Update the email of 'Eva' to '[email protected]'");
// updateEva();
// hr();
// System.out.println("Print documents in customers");
// printCustomers();
// hr();
// System.out.println("Update Patrik, increment customer id with 10");
// updatePatrik();
// hr();
// printCustomers();
// hr();
// listDatabases();
// hr();
// findAndPrintEva();
// hr();
DB db = new DB();
}
}
| [
"[email protected]"
]
| |
c6bbb140d65aec9908d3a272cc565d4bca4f5af9 | 73821e6e1fc1e9d0f59d77a7fcf7e4e4ed55fa95 | /src/main/java/com/tmall/util/Constant.java | 44758ddef3d9d412be7b048b8a62d63a104d62d6 | []
| no_license | Lijunlong/tmall | 78576a4fbe2046d471a461f49cf9800cd6a267a7 | a6c3c3132a2366af2b2f0f20b57f28630ff88329 | refs/heads/master | 2022-06-25T15:03:52.127089 | 2019-10-25T03:09:47 | 2019-10-25T03:09:47 | 200,202,688 | 1 | 0 | null | 2022-06-17T02:22:15 | 2019-08-02T09:02:58 | Java | UTF-8 | Java | false | false | 452 | java | package com.tmall.util;
public class Constant {
//########## 登录 ##########//
public final static int NORMAL = 1;//启用
public final static int DISABLED = 0;//禁用
public final static String SYS_NAME = "SYS";
public final static String DEFAULT_PASSWORD = "123456";//新建用户默认登录密码
public static final String RESET_PASS = "重置密码";
public static final String RESET_MAIL = "重置邮箱";
}
| [
"[email protected]"
]
| |
45a988c70dd62665cb0c2c773745330cee0e68d0 | 69ac41ba3aceda05a4bdfb84b0e3cb542c00522d | /pricingservice/src/main/java/com/microservices/pricingservice/controller/PageController.java | 389aa0c414c0cd03653fb0aca749e6937da48c26 | []
| no_license | Nanirudh/RetailVehicleApp | 80417ee271bab839c9d726ac9f486fea9dde0610 | 4eaafd30007f2b491553d03dca2b799bc4a69a4c | refs/heads/master | 2022-11-27T03:05:58.433629 | 2022-11-11T05:42:04 | 2022-11-11T05:42:04 | 208,468,945 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 377 | java | package com.microservices.pricingservice.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class PageController {
@RequestMapping("/price")
public ModelAndView home() {
return new ModelAndView("index");
}
}
| [
"[email protected]"
]
| |
7f170ebbcc7ac340b7d52c29af9f05d688e0a814 | 97e8a4cf2e8ea36369422d8e30b7c3bbc961e7cc | /src/main/java/Sightings.java | 11974a2c34e4450acb5f4768b5f4654ae7154d0a | [
"MIT"
]
| permissive | TonaDaphin/Wildlife-tracker | f623b56a72557d6355493f04ab698bfb2dc255dc | 1017e43f940b9b44dcde35c770df0f0e94a17327 | refs/heads/master | 2022-10-04T23:29:45.662211 | 2019-10-02T07:16:58 | 2019-10-02T07:16:58 | 210,219,683 | 0 | 0 | null | 2022-09-08T01:03:01 | 2019-09-22T21:57:21 | HTML | UTF-8 | Java | false | false | 2,572 | java | import java.sql.Time;
import java.util.List;
import java.sql.Timestamp;
import java.util.Objects;
import org.sql2o.*;
public class Sightings {
private String rangerName;
private int id;
private String animal;
private String location;
private Timestamp date;
private Timestamp month;
public Sightings(String location,String rangerName,String animal){
this.rangerName = rangerName;
this.id=id;
this.animal = animal;
this.animal=animal;
this.location=location;
}
public String getRangerName(){
return rangerName;
}
public int getId(){
return id;
}
public String getLocation() { return location;}
public Timestamp getDate() { return date; }
public String getAnimal() { return animal; }
public Timestamp getMonth() { return month; }
//save method save()
public void save() {
try(Connection con = DB.sql2o.open()) {
String sql = "INSERT INTO sightings (rangerName,location,animal) VALUES (:rangerName, :location,:animal)";
this.id = (int) con.createQuery(sql, true)
.addParameter("rangerName", this.rangerName)
.addParameter("location",location)
.addParameter("animal",animal)
.executeUpdate()
.getKey();
}
}
//find()
public static Sightings find(int id) {
try(Connection con = DB.sql2o.open()) {
String sql = "SELECT * FROM sightings where id=:id";
Sightings sighting = con.createQuery(sql)
.addParameter("id", id)
.executeAndFetchFirst(Sightings.class);
return sighting;
}
}
//all()
public static List<Sightings> all() {
String sql = "SELECT * FROM sightings";
try(Connection con = DB.sql2o.open()) {
return con.createQuery(sql).executeAndFetch(Sightings.class);
}
}
@Override
public boolean equals(Object otherSighting){
if (!(otherSighting instanceof Sightings)) {
return false;
} else {
Sightings newSighting = (Sightings) otherSighting;
return this.getId() == newSighting.id;
}
}
public void month() {
try(Connection con = DB.sql2o.open()) {
String sql = "UPDATE sightings SET month = now() WHERE id = :id";
con.createQuery(sql)
.addParameter("id", id)
.executeUpdate();
}
}
} | [
"[email protected]"
]
| |
1631d07a44083d06d430172a2455765df7ceb754 | 8e47241597cbbcf4c5d8ae652128d2c32b0bb97b | /test/miggy/cpu/instructions/bitshift/LSRTest.java | c862d36cc61e2ae46b6663ea897a7acaa8d562a7 | [
"BSD-3-Clause"
]
| permissive | sam-ellis/m68k | 91f28d9559fc9c636d90ef9caeeced3fbee4d03a | 50fa972a751e2e15b6152a8113f2ce2fdb8fb0a2 | refs/heads/master | 2023-03-04T09:05:24.080222 | 2023-01-31T09:12:56 | 2023-01-31T09:12:56 | 268,896,249 | 0 | 0 | null | 2020-06-02T19:59:52 | 2020-06-02T19:59:51 | null | UTF-8 | Java | false | false | 2,996 | java | package miggy.cpu.instructions.bitshift;
import m68k.cpu.Size;
import miggy.BasicSetup;
import miggy.SystemModel;
import miggy.SystemModel.CpuFlag;
// $Revision: 21 $
public class LSRTest extends BasicSetup {
public LSRTest(String test) {
super(test);
}
public void testByte() {
setInstruction(0xe228); //lsr.b d1,d0
SystemModel.CPU.setDataRegister(0, 0x87654321);
SystemModel.CPU.setDataRegister(1, 4);
SystemModel.CPU.setCCR((byte) 0);
int time = SystemModel.CPU.execute();
assertEquals("Check result", 0x87654302, SystemModel.CPU.getDataRegister(0));
assertFalse("Check Z", SystemModel.CPU.isSet(CpuFlag.Z));
assertFalse("Check V", SystemModel.CPU.isSet(CpuFlag.V));
assertFalse("Check C", SystemModel.CPU.isSet(CpuFlag.C));
assertFalse("Check N", SystemModel.CPU.isSet(CpuFlag.N));
assertFalse("Check X", SystemModel.CPU.isSet(CpuFlag.X));
}
public void testWord() {
setInstruction(0xe048); //lsr.w #8,d0
SystemModel.CPU.setDataRegister(0, 0x87654321);
SystemModel.CPU.setCCR((byte) 0);
int time = SystemModel.CPU.execute();
assertEquals("Check result", 0x87650043, SystemModel.CPU.getDataRegister(0));
assertFalse("Check Z", SystemModel.CPU.isSet(CpuFlag.Z));
assertFalse("Check V", SystemModel.CPU.isSet(CpuFlag.V));
assertFalse("Check C", SystemModel.CPU.isSet(CpuFlag.C));
assertFalse("Check N", SystemModel.CPU.isSet(CpuFlag.N));
assertFalse("Check X", SystemModel.CPU.isSet(CpuFlag.X));
}
public void testLong() {
setInstruction(0xe2a8); //asr.l d1,d0
SystemModel.CPU.setDataRegister(0, 0x87654321);
SystemModel.CPU.setDataRegister(1, 18);
SystemModel.CPU.setCCR((byte) 0);
int time = SystemModel.CPU.execute();
assertEquals("Check result", 0x21d9, SystemModel.CPU.getDataRegister(0));
assertFalse("Check Z", SystemModel.CPU.isSet(CpuFlag.Z));
assertFalse("Check V", SystemModel.CPU.isSet(CpuFlag.V));
assertFalse("Check C", SystemModel.CPU.isSet(CpuFlag.C));
assertFalse("Check N", SystemModel.CPU.isSet(CpuFlag.N));
assertFalse("Check X", SystemModel.CPU.isSet(CpuFlag.X));
}
public void testMem() {
setInstruction(0xe2d0); //lsr (a0)
SystemModel.CPU.setAddrRegister(0, 32);
SystemModel.MEM.poke(32, 0x87654321, Size.Long);
SystemModel.CPU.setCCR((byte) 0);
int time = SystemModel.CPU.execute();
assertEquals("Check result", 0x43b24321, SystemModel.MEM.peek(32, Size.Long));
assertFalse("Check Z", SystemModel.CPU.isSet(CpuFlag.Z));
assertFalse("Check V", SystemModel.CPU.isSet(CpuFlag.V));
assertTrue("Check C", SystemModel.CPU.isSet(CpuFlag.C));
assertFalse("Check N", SystemModel.CPU.isSet(CpuFlag.N));
assertTrue("Check X", SystemModel.CPU.isSet(CpuFlag.X));
}
} | [
"[email protected]"
]
| |
24db3ccd3601fc65dbb3e0f80129f29e3f66857e | dd6cb7ae50b32b1e3da26fb566a809a2f0381c2a | /app/src/main/java/com/matos/mygis/database/tables/FCPBJRXSALPRMLNTable.java | e3e93759aed9ae4dc8ae6c40fea53ccf80c0e6b1 | []
| no_license | waindo/pukaltimmobile2015 | 262c953f6351a6985c9022fe2ff8c415a66ea57d | d22624b64c9e3e32792b2e99c059047fd8ba932f | refs/heads/master | 2020-04-05T23:44:36.012401 | 2015-09-03T03:58:03 | 2015-09-03T03:58:03 | 41,479,835 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,448 | java | package com.matos.mygis.database.tables;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import com.matos.mygis.database.DB;
import com.matos.mygis.database.models.FCPBJRXSALPRMLN;
import java.util.LinkedList;
import java.util.List;
/**
* Created by sihendri on 08/07/2015.
*/
public class FCPBJRXSALPRMLNTable implements AppTable {
private static final String TAG = "FCPBJRXSALPRMLNTable";
private static final String TABLE_NAME = "FCPBJRXSALPRMLN";
private static final String TABLE_ID = "id";
private static final String OBJECTID = "OBJECTID";
private static final String kodeaset = "kodeaset";
private static final String Nama_Sistem_Pengendalian_Banjir = "Nama_Sistem_Pengendalian_Banjir";
private static final String Nama_Saluran = "Nama_Saluran";
private static final String CREATE_TABLE =
"CREATE TABLE " + TABLE_NAME + "("
+ TABLE_ID + "integer primary key autoincrement"
+ "," + OBJECTID + " integer null"
+ "," + kodeaset + " integer null"
+ "," + Nama_Sistem_Pengendalian_Banjir + " integer null"
+ "," + Nama_Saluran + " string null"
+ ")";
private Context mContext;
public FCPBJRXSALPRMLNTable(Context pContext) {
mContext = pContext;
}
@Override
public boolean createTable() {
boolean ret = false;
SQLiteDatabase db = null;
try {
db = DB.getInstance(mContext).getDB(true);
if (!isTableExists()) {
db.execSQL(CREATE_TABLE);
}
ret = true;
} catch (Exception e) {
Log.e(TAG, e.getMessage());
} finally {
if (db != null) {
db.close();
}
}
return ret;
}
@Override
public boolean dropTable() {
boolean ret = false;
SQLiteDatabase db = null;
try {
db = DB.getInstance(mContext).getDB(true);
if (isTableExists()) {
db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);
}
ret = true;
} catch (Exception e) {
Log.e(TAG, e.getMessage());
} finally {
if (db != null) {
db.close();
}
}
return ret;
}
@Override
public boolean insertData(Object data) {
boolean ret = false;
SQLiteDatabase db = null;
try {
db = DB.getInstance(mContext).getDB(true);
if (!isTableExists()) {
db.execSQL(CREATE_TABLE);
}
FCPBJRXSALPRMLN fcpbjrxsalprmln = (FCPBJRXSALPRMLN) data;
ContentValues val = new ContentValues();
val.put(OBJECTID, fcpbjrxsalprmln.getOBJECTID());
val.put(kodeaset, fcpbjrxsalprmln.getKodeaset());
val.put(Nama_Sistem_Pengendalian_Banjir, fcpbjrxsalprmln.getNama_Sistem_Pengendalian_Banjir());
val.put(Nama_Saluran, fcpbjrxsalprmln.getNama_Saluran());
db.insert(TABLE_NAME, null, val);
ret = true;
} catch (Exception e) {
Log.e(TAG, e.getMessage());
} finally {
if (db != null) {
db.close();
}
}
return ret;
}
@Override
public boolean updateData(Object data) {
boolean ret = false;
SQLiteDatabase db = null;
try {
db = DB.getInstance(mContext).getDB(true);
if (!isTableExists()) {
db.execSQL(CREATE_TABLE);
}
FCPBJRXSALPRMLN fcpbjrxsalprmln = (FCPBJRXSALPRMLN) data;
ContentValues val = new ContentValues();
val.put(OBJECTID, fcpbjrxsalprmln.getOBJECTID());
val.put(kodeaset, fcpbjrxsalprmln.getKodeaset());
val.put(Nama_Sistem_Pengendalian_Banjir, fcpbjrxsalprmln.getNama_Sistem_Pengendalian_Banjir());
val.put(Nama_Saluran, fcpbjrxsalprmln.getNama_Saluran());
String whereClause = TABLE_ID + "=?";
String whereArgs[] = new String[] { String.valueOf(fcpbjrxsalprmln.getId()) };
db.update(TABLE_NAME, val, whereClause, whereArgs);
ret = true;
} catch (Exception e) {
Log.e(TAG, e.getMessage());
} finally {
if (db != null) {
db.close();
}
}
return ret;
}
@Override
public boolean updateData(ContentValues val, String whereClause, String[] whereArgs) {
boolean ret = false;
SQLiteDatabase db = null;
try {
db = DB.getInstance(mContext).getDB(true);
if (!isTableExists()) {
db.execSQL(CREATE_TABLE);
}
db.update(TABLE_NAME, val, whereClause, whereArgs);
ret = true;
} catch (Exception e) {
Log.e(TAG, e.getMessage());
} finally {
if (db != null) {
db.close();
}
}
return ret;
}
@Override
public boolean deleteData(Object data) {
boolean ret = false;
SQLiteDatabase db = null;
try {
db = DB.getInstance(mContext).getDB(true);
if (!isTableExists()) {
db.execSQL(CREATE_TABLE);
}
FCPBJRXSALPRMLN fcpbjrxsalprmln = (FCPBJRXSALPRMLN) data;
String whereClause = TABLE_ID + "=?";
String whereArgs[] = new String[] { String.valueOf(fcpbjrxsalprmln.getId()) };
db.delete(TABLE_NAME, whereClause, whereArgs);
ret = true;
} catch (Exception e) {
Log.e(TAG, e.getMessage());
} finally {
if (db != null) {
db.close();
}
}
return ret;
}
@Override
public <T> List<T> getData(Class<T> returnTypeClass, String whereClause, String[] whereArgs) {
List<T> data = new LinkedList<>();
SQLiteDatabase db = null;
Cursor cur = null;
try {
db = DB.getInstance(mContext).getDB(false);
if (!isTableExists()) {
db.execSQL(CREATE_TABLE);
}
String sql = "SELECT * FROM " + TABLE_NAME + " WHERE " + whereClause;
cur = db.rawQuery(sql, whereArgs);
if (cur != null) {
FCPBJRXSALPRMLN fcpbjrxsalprmln = null;
if (cur.moveToFirst()) {
do {
fcpbjrxsalprmln = new FCPBJRXSALPRMLN();
fcpbjrxsalprmln.setId(cur.getInt(0));
fcpbjrxsalprmln.setOBJECTID(cur.getInt(1));
fcpbjrxsalprmln.setKodeaset(cur.getInt(2));
fcpbjrxsalprmln.setNama_Sistem_Pengendalian_Banjir(cur.getInt(3));
fcpbjrxsalprmln.setNama_Saluran(cur.getString(4));
data.add(returnTypeClass.cast(fcpbjrxsalprmln));
} while (cur.moveToNext());
}
cur.close();
}
} catch (Exception e) {
Log.e(TAG, e.getMessage());
} finally {
if (db != null) {
db.close();
}
}
return data;
}
@Override
public boolean isTableExists() {
boolean ret = false;
SQLiteDatabase db = null;
try {
db = DB.getInstance(mContext).getDB(false);
String args[] = { "table", TABLE_NAME };
Cursor cur = db.rawQuery("SELECT * FROM sqlite_master WHERE type=? AND name=?"
, args);
if (cur != null) {
if (cur.getCount() > 0) {
ret = true;
}
}
cur.close();
} catch (Exception e) {
Log.e(TAG, e.getMessage());
} finally {
if (db != null) {
db.close();
}
}
return ret;
}
}
| [
"[email protected]"
]
| |
193872e1d90bc612f8d049bb5af8d0be5e6491a8 | b6acb787a644ab293e5a4c7a711ac7cdfca5d0df | /pgkerneluaa/src/main/java/com/electron/mfs/pg/uaa/config/ApplicationProperties.java | 3a823d8b7a5ca61ac29cf93a7571a3e7b9320ded | []
| no_license | fsfish/electron-backend | 3440089550a5222cfa5fa4855302a2404fa34577 | dff5634d0f8e75c090eca3c66aad3c76883b1edd | refs/heads/master | 2021-05-22T00:27:37.984536 | 2020-03-30T18:16:03 | 2020-03-30T18:16:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 436 | java | package com.electron.mfs.pg.uaa.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* Properties specific to Pgkerneluaa.
* <p>
* Properties are configured in the {@code application.yml} file.
* See {@link io.github.jhipster.config.JHipsterProperties} for a good example.
*/
@ConfigurationProperties(prefix = "application", ignoreUnknownFields = false)
public class ApplicationProperties {
}
| [
"[email protected]"
]
| |
02516c2ad6d6589b004f6337ae79bb6e6f5130bf | cc2cab7303b5dc416a56698a6af8411beffeb32e | /src/com/github/avexiie/util/Manager.java | e758b8cf3afa803368d08b57f5515175c5d95a34 | []
| no_license | Avexiie/Helpboard | a71ab694f21ea53d7085043271f70133283eed80 | b7ef3186e8bf273485a5aed73d6596d94398c592 | refs/heads/master | 2022-11-30T21:55:17.783204 | 2020-08-15T10:55:38 | 2020-08-15T10:55:38 | 287,728,541 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 236 | java | package com.github.avexiie.util;
import org.bukkit.entity.Player;
/**
* Created by Avexiie on 15-08-2020.
*/
public class Manager {
public static void switchTemporarily(Player player, String board)
{
}
} | [
"[email protected]"
]
| |
d6444b64b7c2fb7752516ea4985540f6ed4302bc | 9c920be578074d7c7ce0c3c74763343eab56808e | /src/main/java/tmb/Ibus.java | 25b412f4d68b1916f65933628e3c531d2fab0cdc | []
| no_license | AleixOlleRequena/API-TMB | dd4ccf5e89a52d4c01f155a216acf2515064783b | ae54360e348578b1b69f70c3fcbda8f32e97de6c | refs/heads/master | 2023-08-17T04:09:07.021560 | 2021-09-14T16:06:07 | 2021-09-14T16:06:07 | 370,844,933 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,082 | java | package tmb;
import com.google.gson.annotations.SerializedName;
/**
* Classe creada per poder fer les crides a l'API de TMB sobre el temps d'espera en les parades de bus
*/
public class Ibus {
/**
* Id de la ruta
*/
private String routeId;
/**
* Línia de bus
*/
private String line;
/**
* Temps que queda per el següent bus escrit en text
*/
@SerializedName("text-ca")
private String text_ca;
/**
* Temps que queda per el següent bus en segons
*/
@SerializedName("t-in-s")
private int t_in_s;
/**
* Temps que queda per el següent bus en minuts
*/
@SerializedName("t-in-min")
private int t_in_m;
/**
* Cosntructor de la classe
*/
public Ibus() {
}
/**
* Retorna la línia del bus
* @return line
*/
public String getLine() {
return line;
}
/**
* Retorna el temps que queda per el següent bus escrit en text
* @return text_ca
*/
public String getText_ca() {
return text_ca;
}
}
| [
"[email protected]"
]
| |
149713e518e489641ae7dca1e40e871597d1b36e | ccd4aa469cddee5725474aecd9cdd771d4b15958 | /readsales.java | e76c0257bccfe8b28c3f4ff5d3de2be645d5f9ac | []
| no_license | khuongtran19/SalesReportProgram-java | 4cda89a0b78d4c97d314a9b8f4a4981286ad091b | 42d56e6d77c2907a515804980b650437fc3da1e7 | refs/heads/master | 2020-04-27T15:59:18.806406 | 2019-03-08T04:14:44 | 2019-03-08T04:14:44 | 174,467,665 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,167 | java | package Project2;
import java.io.*;
import java.util.*;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
public class readsales
{
static ArrayList<Product> products;
static ArrayList<Sales> sales;
public static void main(String[]args)
{
products = readProductData("Project2/Product Data.csv");
sales = readSalesData("Project2/Sales Data.csv");
System.out.println("Product ID"+" Units"+" Price for Units");
//PrintWriter out = new PrintWriter("Sales.txt");
for (Sales s : sales)
{
System.out.println(s);
}
}
private static ArrayList<Sales> readSalesData(String fileName)
{
ArrayList<Sales> sales = new ArrayList<>();
Path pathToFile = Paths.get(fileName);
try (BufferedReader br = Files.newBufferedReader(pathToFile,StandardCharsets.US_ASCII))
{
String line = br.readLine();
while (line != null)
{
line = br.readLine();
String[] data = null;
if(line != null){
data = line.split(",");
}
if(data != null && data.length > 0)
{
Sales product = createSales(data);
sales.add(product);
}
}
}
catch (IOException ioe)
{
ioe.printStackTrace();
}
return sales;
}
private static Product findProductByID(int id)
{
for(int i = 0; i < products.size(); i++)
{
if(products.get(i).getProductid() == id)
{
return products.get(i);
}
}
return null;
}
private static Sales createSales(String[] data2)
{
int productid= Integer.parseInt(data2[1]);
Product temp = findProductByID(productid);
double price = temp.getUnitprice();
//double customerid= Double.parseDouble(data2[0]);
int units= Integer.parseInt(data2[2]);
return new Sales(productid, price, units);
}
private static ArrayList<Product> readProductData(String fileName)
{
ArrayList<Product> products = new ArrayList<>();
Path pathToFile = Paths.get(fileName);
try (BufferedReader br = Files.newBufferedReader(pathToFile,StandardCharsets.US_ASCII))
{
String line = br.readLine();
while (line != null)
{
line = br.readLine();
String[] data = null;
if(line != null){
data = line.split(",");
}
if(data != null && data.length > 0){
Product product = createProduct(data);
products.add(product);
}
}
}
catch (IOException ioe)
{
ioe.printStackTrace();
}
return products;
}
private static Product createProduct(String[] data1)
{
int productid = Integer.parseInt(data1[0]);
double unitprice = Double.parseDouble(data1[2].substring(1, data1[2].length()));
String description = data1[1];
return new Product(productid, unitprice, description);
}
} | [
"[email protected]"
]
| |
58827ec097145cb1e389f953b180b1fc9cb11b23 | d13da4c870ef74b251d39e898050d2c94475d874 | /src/main/exception/InterruptOperationException.java | 7a7327ec2ad3cee08730e29390449e1721229337 | []
| no_license | Lars9/CashMachine | 080c319996dd0f1c080c7417e516b44d7998edcf | e873c65abcd37e19927af969de7f32ca6b86fcf6 | refs/heads/master | 2020-12-24T16:05:59.672671 | 2015-02-03T13:32:26 | 2015-02-03T13:32:26 | 30,245,314 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 142 | java | package main.exception;
/**
* Created by Александр on 07.10.14.
*/
public class InterruptOperationException extends Exception
{
}
| [
"[email protected]"
]
| |
ff3ea7c5bcbac81c56008e56021c97d5259ae06e | 97cda285663a8bbf751b39321b695d97b6f69474 | /Wicket/src/wicket/util/listener/IListener.java | 55d775e5b568bfa759b34f8148fb66bcf624b425 | []
| no_license | clustercompare/clustercompare-data | 838c4de68645340546dd5e50b375dcf877591b3e | 163d05bdc5f4a03da8155ffb1f922a9421733589 | refs/heads/master | 2020-12-25T23:10:16.331657 | 2015-12-11T10:37:43 | 2015-12-11T10:37:43 | 39,699,972 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,060 | java | /*
* $Id: IListener.java 1115 2005-02-22 17:48:25 +0000 (Tue, 22 Feb 2005)
* jonathanlocke $ $Revision: 5873 $ $Date: 2005-02-22 17:48:25 +0000 (Tue, 22
* Feb 2005) $
*
* ==============================================================================
* 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 wicket.util.listener;
/**
* Typesafe super-interface for listener subclasses which can be added to a
* ListenerSet or are intended to be dealt with in other generic ways.
*
* @author Jonathan Locke
*/
public interface IListener
{
}
| [
"[email protected]"
]
| |
8e839c5ecef920eaff3c930df7aee8edf4c8821d | 4e71212628d71e1cd2ab79d8636271ab9cc8a6a3 | /app/src/main/java/com/example/ywb/live/fragment/HomeFragment.java | da4c19c67d01a963450494342850ccf28d066477 | []
| no_license | yangwenbo11/Live | 91b8fa0a8db6701e2b80ce1ef5042af5de8b6d94 | 350b88b8bc21a20c107e3a418e046fe52e45708e | refs/heads/master | 2021-01-21T17:23:21.846144 | 2017-03-19T11:22:37 | 2017-03-19T11:22:37 | 85,274,507 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,190 | java | package com.example.ywb.live.fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.support.design.widget.TabLayout;
import com.example.ywb.live.R;
import java.util.ArrayList;
import java.util.List;
import butterknife.BindView;
import butterknife.ButterKnife;
/**
* Created by xiaoyuan on 17/3/8.
*/
public class HomeFragment extends BaseFragment {
@BindView(R.id.tabLayout)
TabLayout tabLayout;
@BindView(R.id.vp)
ViewPager vp;
private List<Fragment> mFragments = new ArrayList<>();
private FragmentPagerAdapter mAdapter;
public static HomeFragment newInstance() {
HomeFragment fragment = new HomeFragment();
return fragment;
}
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.frg_home, null);
ButterKnife.bind(this,view);
return view;
}
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
FavoriteFragment favoriteFragment = FavoriteFragment.newInstance();
HotFragment hotFragment = HotFragment.newInstance();
mFragments.add(favoriteFragment);
mFragments.add(hotFragment);
mAdapter = new FragmentPagerAdapter(getActivity().getSupportFragmentManager()) {
@Override
public int getCount() {
return mFragments.size();
}
@Override
public Fragment getItem(int arg0) {
return mFragments.get(arg0);
}
};
vp.setAdapter(mAdapter);
initTabLine();
}
private void initTabLine() {
tabLayout.setupWithViewPager(vp);
tabLayout.getTabAt(0).setText("精选");
tabLayout.getTabAt(1).setText("发现");
}
}
| [
"[email protected]"
]
| |
76f3b172581c862436194528b0c539fb254fa8d8 | 8af1164bac943cef64e41bae312223c3c0e38114 | /results-java/Graylog2--graylog2-server/eac328dc6ccb9286b1b60280e2eab6d12cc2a904/before/ServerBindings.java | 58ffe4be707150fc0425e84172d5a8ef7cc187bd | []
| no_license | fracz/refactor-extractor | 3ae45c97cc63f26d5cb8b92003b12f74cc9973a9 | dd5e82bfcc376e74a99e18c2bf54c95676914272 | refs/heads/master | 2021-01-19T06:50:08.211003 | 2018-11-30T13:00:57 | 2018-11-30T13:00:57 | 87,353,478 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,718 | java | /**
* This file is part of Graylog2.
*
* Graylog2 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.
*
* Graylog2 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 Graylog2. If not, see <http://www.gnu.org/licenses/>.
*/
package org.graylog2.bindings;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.inject.AbstractModule;
import com.google.inject.Scopes;
import com.google.inject.TypeLiteral;
import com.google.inject.assistedinject.FactoryModuleBuilder;
import com.google.inject.multibindings.Multibinder;
import com.google.inject.name.Names;
import com.ning.http.client.AsyncHttpClient;
import org.apache.shiro.mgt.DefaultSecurityManager;
import org.elasticsearch.node.Node;
import org.graylog2.Configuration;
import org.graylog2.alerts.AlertSender;
import org.graylog2.alerts.FormattedEmailAlertSender;
import org.graylog2.alerts.types.FieldValueAlertCondition;
import org.graylog2.alerts.types.MessageCountAlertCondition;
import org.graylog2.bindings.providers.*;
import org.graylog2.buffers.processors.OutputBufferProcessor;
import org.graylog2.buffers.processors.ServerProcessBufferProcessor;
import org.graylog2.bundles.BundleService;
import org.graylog2.database.MongoConnection;
import org.graylog2.filters.FilterService;
import org.graylog2.filters.FilterServiceImpl;
import org.graylog2.indexer.healing.FixDeflectorByDeleteJob;
import org.graylog2.indexer.healing.FixDeflectorByMoveJob;
import org.graylog2.indexer.indices.jobs.OptimizeIndexJob;
import org.graylog2.indexer.ranges.CreateNewSingleIndexRangeJob;
import org.graylog2.indexer.ranges.RebuildIndexRangesJob;
import org.graylog2.inputs.PersistedInputsImpl;
import org.graylog2.inputs.converters.InputStateListener;
import org.graylog2.jersey.container.netty.SecurityContextFactory;
import org.graylog2.plugin.BaseConfiguration;
import org.graylog2.plugin.PluginMetaData;
import org.graylog2.plugin.RulesEngine;
import org.graylog2.plugin.ServerStatus;
import org.graylog2.plugin.indexer.rotation.RotationStrategy;
import org.graylog2.rest.NotFoundExceptionMapper;
import org.graylog2.rest.RestAccessLogFilter;
import org.graylog2.rest.ValidationExceptionMapper;
import org.graylog2.security.ShiroSecurityBinding;
import org.graylog2.security.ShiroSecurityContextFactory;
import org.graylog2.security.ldap.LdapConnector;
import org.graylog2.security.ldap.LdapSettingsImpl;
import org.graylog2.security.realm.LdapUserAuthenticator;
import org.graylog2.shared.bindings.providers.AsyncHttpClientProvider;
import org.graylog2.shared.inputs.InputRegistry;
import org.graylog2.shared.inputs.PersistedInputs;
import org.graylog2.shared.metrics.jersey2.MetricsDynamicBinding;
import org.graylog2.shared.system.activities.ActivityWriter;
import org.graylog2.streams.StreamRouter;
import org.graylog2.streams.StreamRouterEngine;
import org.graylog2.system.activities.SystemMessageActivityWriter;
import org.graylog2.system.jobs.SystemJobFactory;
import org.graylog2.system.jobs.SystemJobManager;
import org.graylog2.system.shutdown.GracefulShutdown;
import org.joda.time.Duration;
import javax.ws.rs.container.ContainerResponseFilter;
import javax.ws.rs.container.DynamicFeature;
import javax.ws.rs.ext.ExceptionMapper;
public class ServerBindings extends AbstractModule {
private final Configuration configuration;
public ServerBindings(Configuration configuration) {
this.configuration = configuration;
}
@Override
protected void configure() {
bindInterfaces();
bindSingletons();
bindProviders();
bindFactoryModules();
bindDynamicFeatures();
bindContainerResponseFilters();
bindExceptionMappers();
bindPluginMetaData();
bindEventBusListeners();
}
private void bindProviders() {
bind(ObjectMapper.class).toProvider(ServerObjectMapperProvider.class);
bind(RotationStrategy.class).toProvider(RotationStrategyProvider.class);
}
private void bindFactoryModules() {
install(new FactoryModuleBuilder().build(OutputBufferProcessor.Factory.class));
install(new FactoryModuleBuilder().build(ServerProcessBufferProcessor.Factory.class));
install(new FactoryModuleBuilder().build(RebuildIndexRangesJob.Factory.class));
install(new FactoryModuleBuilder().build(OptimizeIndexJob.Factory.class));
install(new FactoryModuleBuilder().build(CreateNewSingleIndexRangeJob.Factory.class));
install(new FactoryModuleBuilder().build(FixDeflectorByDeleteJob.Factory.class));
install(new FactoryModuleBuilder().build(FixDeflectorByMoveJob.Factory.class));
install(new FactoryModuleBuilder().build(LdapSettingsImpl.Factory.class));
install(new FactoryModuleBuilder().build(FieldValueAlertCondition.Factory.class));
install(new FactoryModuleBuilder().build(MessageCountAlertCondition.Factory.class));
}
private void bindSingletons() {
bind(Configuration.class).toInstance(configuration);
bind(BaseConfiguration.class).toInstance(configuration);
bind(MongoConnection.class).toProvider(MongoConnectionProvider.class);
Multibinder<ServerStatus.Capability> capabilityBinder =
Multibinder.newSetBinder(binder(), ServerStatus.Capability.class);
capabilityBinder.addBinding().toInstance(ServerStatus.Capability.SERVER);
if (configuration.isMaster())
capabilityBinder.addBinding().toInstance(ServerStatus.Capability.MASTER);
bind(ServerStatus.class).in(Scopes.SINGLETON);
bind(Node.class).toProvider(EsNodeProvider.class).in(Scopes.SINGLETON);
bind(SystemJobManager.class).toProvider(SystemJobManagerProvider.class);
bind(RulesEngine.class).toProvider(RulesEngineProvider.class);
bind(LdapConnector.class).toProvider(LdapConnectorProvider.class);
bind(LdapUserAuthenticator.class).toProvider(LdapUserAuthenticatorProvider.class);
bind(DefaultSecurityManager.class).toProvider(DefaultSecurityManagerProvider.class);
bind(SystemJobFactory.class).toProvider(SystemJobFactoryProvider.class);
bind(AsyncHttpClient.class).toProvider(AsyncHttpClientProvider.class);
bind(GracefulShutdown.class).in(Scopes.SINGLETON);
bind(BundleService.class).in(Scopes.SINGLETON);
bind(BundleImporterProvider.class).in(Scopes.SINGLETON);
bind(BundleExporterProvider.class).in(Scopes.SINGLETON);
bind(String.class).annotatedWith(Names.named("journalDirectory")).toInstance(configuration.getMessageJournalDir());
bind(Integer.class).annotatedWith(Names.named("journalSegmentSize")).toInstance(configuration.getMessageJournalSegmentSize());
bind(Long.class).annotatedWith(Names.named("journalMaxRetentionSize")).toInstance(configuration.getMessageJournalMaxSize());
bind(Duration.class).annotatedWith(Names.named("journalMaxRetentionAge")).toInstance(configuration.getMessageJournalMaxAge());
bind(String[].class).annotatedWith(Names.named("RestControllerPackages")).toInstance(new String[]{
"org.graylog2.rest.resources",
"org.graylog2.shared.rest.resources"
});
}
private void bindInterfaces() {
bind(SecurityContextFactory.class).to(ShiroSecurityContextFactory.class);
bind(AlertSender.class).to(FormattedEmailAlertSender.class);
bind(StreamRouter.class);
install(new FactoryModuleBuilder().implement(StreamRouterEngine.class, StreamRouterEngine.class).build(StreamRouterEngine.Factory.class));
bind(FilterService.class).to(FilterServiceImpl.class).in(Scopes.SINGLETON);
bind(ActivityWriter.class).to(SystemMessageActivityWriter.class);
bind(PersistedInputs.class).to(PersistedInputsImpl.class);
}
private void bindDynamicFeatures() {
TypeLiteral<Class<? extends DynamicFeature>> type = new TypeLiteral<Class<? extends DynamicFeature>>(){};
Multibinder<Class<? extends DynamicFeature>> setBinder = Multibinder.newSetBinder(binder(), type);
setBinder.addBinding().toInstance(ShiroSecurityBinding.class);
setBinder.addBinding().toInstance(MetricsDynamicBinding.class);
}
private void bindContainerResponseFilters() {
TypeLiteral<Class<? extends ContainerResponseFilter>> type = new TypeLiteral<Class<? extends ContainerResponseFilter>>(){};
Multibinder<Class<? extends ContainerResponseFilter>> setBinder = Multibinder.newSetBinder(binder(), type);
setBinder.addBinding().toInstance(RestAccessLogFilter.class);
}
private void bindExceptionMappers() {
TypeLiteral<Class<? extends ExceptionMapper>> type = new TypeLiteral<Class<? extends ExceptionMapper>>(){};
Multibinder<Class<? extends ExceptionMapper>> setBinder = Multibinder.newSetBinder(binder(), type);
setBinder.addBinding().toInstance(NotFoundExceptionMapper.class);
setBinder.addBinding().toInstance(ValidationExceptionMapper.class);
}
private void bindPluginMetaData() {
Multibinder<PluginMetaData> setBinder = Multibinder.newSetBinder(binder(), PluginMetaData.class);
}
private void bindEventBusListeners() {
bind(InputStateListener.class).asEagerSingleton();
}
} | [
"[email protected]"
]
| |
3880c82f95d5eaed3b3ee9236560b49723202469 | cf64ff59a0292500d65d69fcfb0b42d7e4dba9d8 | /samples/imapi2/interface/src/imapi2fs/IIsoImageManager.java | 99a7ad5816b3f75d867840d5ce9f9441125ae2a0 | [
"BSD-2-Clause"
]
| permissive | nosdod/CDWriterJava | 0bb3db2e68278c445b78afc665731e058dc42ea4 | 7146689889d8d50d7162b21ea0b98fc5c2364306 | refs/heads/main | 2023-09-06T01:32:33.614647 | 2021-11-23T15:14:42 | 2021-11-23T15:14:42 | 431,142,538 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,230 | java | package imapi2fs ;
import com4j.*;
/**
* ISO Image Manager: Helper object for ISO image file manipulation
*/
@IID("{6CA38BE5-FBBB-4800-95A1-A438865EB0D4}")
public interface IIsoImageManager extends Com4jObject {
// Methods:
/**
* <p>
* Path to the ISO image file
* </p>
* <p>
* Getter method for the COM property "path"
* </p>
* @return Returns a value of type java.lang.String
*/
@VTID(7)
java.lang.String getPath();
/**
* <p>
* Stream from the ISO image
* </p>
* <p>
* Getter method for the COM property "Stream"
* </p>
* @return Returns a value of type imapi2fs.IStream
*/
@VTID(8)
imapi2common.IStream getStream();
/**
* <p>
* Set path to the ISO image file, overwrites stream
* </p>
* @param val Mandatory java.lang.String parameter.
*/
@VTID(9)
void setPath(
java.lang.String val);
/**
* <p>
* Set stream from the ISO image, overwrites path
* </p>
* @param data Mandatory imapi2fs.IStream parameter.
*/
@VTID(10)
void setStream(
imapi2common.IStream data);
/**
* <p>
* Validate if the ISO image file is a valid file
* </p>
*/
@VTID(11)
void validate();
// Properties:
}
| [
"[email protected]"
]
| |
22ff053ae1bcd6fb03cff8275a86819348812c87 | 0e533585924ec05270ea95b85630b3371cfc5936 | /src/jogotabueiro/Tabuleiro.java | 55199dfde491fd083aced01b7c48c2c1606beb58 | []
| no_license | LuizcasMedeiros/-xadrez-sistema-java | b6be7afb5b781f6e1509050c477e86ec416f9778 | 9fa3516453ae397f592c2e24773553e048a718b2 | refs/heads/master | 2022-12-24T22:53:56.488371 | 2020-09-22T00:17:35 | 2020-09-22T00:17:35 | 297,478,746 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 685 | java | package jogotabueiro;
public class Tabuleiro {
private int linhas;
private int colunas;
private Peca[][] pecas;
public Tabuleiro(int linhas, int colunas) {
this.linhas = linhas;
this.colunas = colunas;
pecas = new Peca[linhas][colunas];
}
public int getLinhas() {
return linhas;
}
public void setLinhas(int linhas) {
this.linhas = linhas;
}
public int getColunas() {
return colunas;
}
public void setColunas(int colunas) {
this.colunas = colunas;
}
public Peca peca(int linhas, int colunas) {
return pecas[linhas][colunas];
}
public Peca peca(Posicao posicao) {
return pecas[posicao.getLinha()][posicao.getColuna()];
}
}
| [
"[email protected]"
]
| |
681a858e62f19413ea4b5366534755e1369d0cf5 | c6d93fa9b3103753f249fa1f7c19d571e14dbdd3 | /src/com/czp/Technological/SwitchTest.java | e767b458812995fa43e9672e7f046bce9968278c | []
| no_license | TianGong42/how2jTest | c80767af3dbb460a81ab32f4dc17f789eb2dab8b | cb62bd33b8cfeda79c0abd3ef941959d5c2232ac | refs/heads/master | 2020-08-04T09:43:54.234374 | 2019-10-27T15:19:52 | 2019-10-27T15:19:52 | 212,094,418 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 1,103 | java | package com.czp.Technological;
public class SwitchTest {
public static void main(String[] args) {
//如果使用if else
int day = 5;
if(day == 1) {
System.out.println("星期一");
}else if(day == 2) {
System.out.println("星期二");
}else if(day == 3) {
System.out.println("星期三");
}else if(day == 4) {
System.out.println("星期四");
}else if(day == 5) {
System.out.println("星期五");
}else if(day == 6) {
System.out.println("星期六");
}else if(day == 7) {
System.out.println("星期天");
}else {
System.out.println("这个是什么鬼?");
}
//如果使用switch
switch(day) {
case 1:
System.out.println("星期一");break;
case 2:System.out.println("星期二");break;
case 3:System.out.println("星期三");break;
case 4:System.out.println("星期四");break;
case 5:System.out.println("星期五");break;
case 6:System.out.println("星期六");break;
case 7:System.out.println("星期日");break;
default:
System.out.println("这个是什么鬼?");
}
}
}
| [
"[email protected]"
]
| |
e5572beda6a55b430d8cbe7a6c82d52d9c7c77c2 | ca00b8f68c7167d344d7126ecb0f86944f42dee8 | /app/src/main/java/id/ac/umn/uts_14910/DBContract.java | 7c2fa78fb53f357661282b15427006d51c4813c1 | []
| no_license | kevinkellyyyy/kellsbooks | 1deaaff21a2fa07f8227dbcdbfc1486f4b5eade6 | afc6e0b945fdbc693d70a61cebb0161e675c1eb9 | refs/heads/master | 2022-11-16T02:10:23.006586 | 2020-07-08T07:35:59 | 2020-07-08T07:35:59 | 278,021,859 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 607 | java | package id.ac.umn.uts_14910;
import android.provider.BaseColumns;
public class DBContract {
private DBContract(){}
public class FavEntry implements BaseColumns{
public static final String TABLE_NAME = "favorites";
public static final String COLUMN_ASIN = "ASIN";
public static final String COLUMN_GROUP1 = "GROUP1";
public static final String COLUMN_FORMAT = "FORMAT";
public static final String COLUMN_TITLE = "TITLE";
public static final String COLUMN_AUTHOR = "AUTHOR";
public static final String COLUMN_PUBLISHER = "PUBLISHER";
}
}
| [
"[email protected]"
]
| |
f8c9e66ddc22f5612da72982ef8cd5e298032f62 | 6c6202a5159abd43d1bd4a53bfc51a694841e80b | /common/src/main/java/eu/slipo/workbench/common/model/tool/ToolConfigurationSupport.java | 46f763898f5492deb3a07552b41b325794c34453 | []
| no_license | gkostoulas/workbench | 283f251bebc542e3f555366269bf331722ff4aed | 20fea5cee4714f875c582ac4656ab6ae43c092e8 | refs/heads/master | 2021-08-26T04:42:38.603036 | 2017-11-21T16:28:25 | 2017-11-21T16:28:25 | 108,533,197 | 0 | 0 | null | 2017-10-27T10:33:33 | 2017-10-27T10:33:33 | null | UTF-8 | Java | false | false | 1,356 | java | package eu.slipo.workbench.common.model.tool;
import java.util.Map;
import java.util.Properties;
import org.apache.commons.beanutils.BeanUtils;
/**
* An abstract class providing support for common copy/serialize/deserialize functionality.
*/
@SuppressWarnings("serial")
public abstract class ToolConfigurationSupport implements ToolConfiguration
{
/**
* Clone this bean in a field-wise manner. All fields are shallow copies using reflective
* getter/setter methods.
*
* @throws ReflectiveOperationException if a method/constructor (called reflectively) fails
*/
public ToolConfigurationSupport cloneAsBean()
throws ReflectiveOperationException
{
return (ToolConfigurationSupport) BeanUtils.cloneBean(this);
}
/**
* Clone this bean in a field-wise manner, and cast to a target type. All fields are shallow copies
* using reflective getter/setter methods.
*
* @param resultType The type to cast the cloned object
* @throws ReflectiveOperationException if a method/constructor (called reflectively) fails, or if
* the desired cast fails.
*/
public <B extends ToolConfigurationSupport> B cloneAsBean(Class<B> resultType)
throws ReflectiveOperationException
{
return resultType.cast(BeanUtils.cloneBean(this));
}
}
| [
"[email protected]"
]
| |
a36fc8d640023bd857e3f97f3e12274a205924de | 32c4a431400424ba8af00e5a5dc884f9fa9a46aa | /sample/src/main/java/com/jiechen/example/adapter/rv/MsgSendItemDelegate.java | 2242ab8292d4d2c9f8471d0655bccc81d658d057 | []
| no_license | LingChenJie/BaseAdapter-master | 4e7b8aed391fd7653f7dda32d89ce1afa1e749c7 | 6f483dc5cac41ce214981a5eb547c718df55c57a | refs/heads/master | 2021-01-19T01:45:54.233553 | 2017-04-05T01:30:28 | 2017-04-05T01:30:28 | 87,252,180 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,075 | java | package com.jiechen.example.adapter.rv;
import android.widget.ImageView;
import android.widget.TextView;
import com.jiechen.base.recyclerview.base.ItemViewDelegate;
import com.jiechen.base.recyclerview.base.ViewHolder;
import com.jiechen.example.R;
import com.jiechen.example.bean.ChatMessage;
/**
* Created by JieChen on 2017/3/29.
*/
public class MsgSendItemDelegate implements ItemViewDelegate<ChatMessage> {
@Override
public int getItemViewLayoutId() {
return R.layout.main_chat_send_msg;
}
@Override
public boolean isForViewType(ChatMessage item, int position) {
return !item.isComMeg();
}
@Override
public void convert(ViewHolder holder, ChatMessage item, int position) {
TextView tvName = holder.getView(R.id.chat_send_name);
TextView tvContent = holder.getView(R.id.chat_send_content);
ImageView ivIcon = holder.getView(R.id.chat_send_icon);
tvName.setText(item.getName());
tvContent.setText(item.getContent());
ivIcon.setImageResource(item.getIcon());
}
}
| [
"[email protected]"
]
| |
664228253086c700395b93aaf2d82035af5646e3 | 03fad19941b9e854b33babaa741c4a2069adfcf5 | /src/main/java/myapp/App.java | eb654220e73bbd77fb47f6f0a8580b2715b28d45 | []
| no_license | ManikantaR/SimpleMavenDockerApp | fc1417a6934523d7eb5dde45b89cbc99e0c53764 | 7a6f4eab5fed9fb605dcd3881151020e197b3967 | refs/heads/master | 2023-06-01T03:42:41.453624 | 2021-06-20T05:06:56 | 2021-06-20T05:06:56 | 378,562,663 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 486 | java | package myapp;
import org.apache.commons.codec.digest.DigestUtils;
public class App {
public static void main(String[] args) {
if (args.length < 1) {
System.err.println("Please provide an input!");
System.exit(0);
}
System.out.println("Original string: " + args[0]);
System.out.println(sha256hex(args[0]));
}
public static String sha256hex(String input) {
return DigestUtils.sha256Hex(input);
}
}
| [
"[email protected]"
]
| |
c51c2403c56fb5d43a55fb9466319574d0594b6c | 94d283670973e4ad4a8065888cf07e67a32f935f | /MATEDA/src/pe/edu/pucp/inf/mateproyecto/dao/DAOSupplier.java | e2569867d8ca6da88cdb59563ee308f2759acd6a | []
| no_license | Andres20141684/LP2-TA-Java | c6f12a907336999da46730dcec16fdb4a432ef08 | 262e6b34dc9bb1c56abe0cd1e0e13d2ffad812af | refs/heads/master | 2020-06-08T18:15:36.763672 | 2019-06-23T03:41:48 | 2019-06-23T03:41:48 | 193,280,567 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 593 | 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 pe.edu.pucp.inf.mateproyecto.dao;
import java.util.ArrayList;
import pe.edu.pucp.inf.mateproyecto.model.bean.Supplier;
/**
*
* @author Usuario
*/
public interface DAOSupplier {
int insert(Supplier supplier);
int update(Supplier supplier);
int insertArtist(int idArtist, int idSupplier);
ArrayList<Supplier> queryAll();
Supplier querySupplier(String infCustomer);
}
| [
"[email protected]"
]
| |
1e3781128f1504a3ac25d33ad458704d17e12ebc | 970d08c945cd230494aa23e896c42908f8607828 | /LK-Medias/LK-Medias-ejb/src/java/session/GenreFacadeLocal.java | be3df419b2713c011348215c68bb1954de14d712 | []
| no_license | jessux/ejb-crud-java | 1805f4220e2531e54e4a75eb328598bfb8d5bb2d | 68f711224f3c58ecf550ae3a49c635a1e4986cdc | refs/heads/master | 2020-12-24T18:54:42.141554 | 2016-04-26T08:24:17 | 2016-04-26T08:24:17 | 56,622,241 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 557 | 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 session;
import database.Genre;
import java.util.List;
import javax.ejb.Local;
/**
*
* @author root
*/
@Local
public interface GenreFacadeLocal {
void create(Genre genre);
void edit(Genre genre);
void remove(Genre genre);
Genre find(Object id);
List<Genre> findAll();
List<Genre> findRange(int[] range);
int count();
}
| [
"[email protected]"
]
| |
66446fff0348c3c3517246d4f73dd05e46037a4a | 0725f5f0f101dc2db6c8bfc82cb9196ff4ab11f4 | /src/test/java/com/hxb/oldBook/OldbookApplicationTests.java | ba9bd9b9a7bf49ce5d8386d325ddeb8a7aad10a3 | []
| no_license | hxb6/oldBook | 7d76e6d8078926c944f8bc492ae4fafd81aa1bb0 | b906745fe78aeefc7dee15553cdb8afa351ef67e | refs/heads/master | 2020-03-08T01:42:19.822668 | 2018-06-02T01:28:35 | 2018-06-02T01:28:35 | 127,838,111 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 333 | java | package com.hxb.oldBook;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class OldbookApplicationTests {
@Test
public void contextLoads() {
}
}
| [
"[email protected]"
]
| |
79d06b0a9d3d3bd4af5580d9940f38f0c451d0a0 | fd2966533dbb508fa8711bf7526b0198b469982a | /gama/src/br/com/gama/implementacao/TesteAluno.java | dcbad47cb64034f4bf8527bb55333c7f478b22bf | []
| no_license | MarciaPSantos/wsremoto | c478b39e16c23094cc503cc8024b810104596df9 | a6ffd4a7d2b2db7db7edb70c66297ce2865b3c24 | refs/heads/main | 2023-03-24T01:42:30.124573 | 2021-03-23T21:06:14 | 2021-03-23T21:06:14 | 349,073,750 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 1,859 | java | package br.com.gama.implementacao;
import javax.swing.JOptionPane;
import br.com.gama.modelo.Aluno;
import br.com.gama.modelo.Endereco;
public class TesteAluno {
public static void main(String[] args) {
Endereco endereco = new Endereco();
endereco.setLogradouro("AVENIDA ITAQUERA");
endereco.setNumero("358A-FUNDOS");
endereco.setComplemento("Viela 321");
endereco.setBairro("ITAQUERA");
endereco.setCidade("SÃO PAULO");
endereco.setUf("SP");
endereco.setCep("12345-123");
//aluno = nome diagrama (nome da classe)
Aluno aluno = new Aluno();
aluno.setEndereco(endereco); //atributo que faz referencia à uma classe
aluno.setEmail(JOptionPane.showInputDialog("Email: ").toLowerCase());
aluno.setFone(JOptionPane.showInputDialog("Fone: "));
aluno.setNome(JOptionPane.showInputDialog("Nome: "));
aluno.setMatricula(Integer.parseInt(JOptionPane.showInputDialog("Matricula :")));
System.out.println("Email: " + aluno.getNome());
System.out.println("Fone: " + aluno.getFone());
System.out.println("Nome: " + aluno.getNome());
System.out.println("Matricula: " + aluno.getMatricula());
System.out.println("Endereco: " + aluno.getEndereco());
//OU ================================================================
Aluno aluno2 = new Aluno();
aluno2.setAll(
endereco, //chamada da nova classe
JOptionPane.showInputDialog("Nome2: ").toUpperCase(),
Integer.parseInt(JOptionPane.showInputDialog("Matricula2: ")),
JOptionPane.showInputDialog("EMail2: ").toLowerCase(),
JOptionPane.showInputDialog("Telefone2 :")
);
System.out.println(aluno2.toString());
//mostrar um atributo dentro do objeto Endereco
System.out.println("Bairro: " + aluno.getEndereco().getBairro());
System.out.println("Cidade: " + aluno.getEndereco().getBairro());
}
}
| [
"[email protected]"
]
| |
88e3922a520e564fda043d9a9aa1ae090b73091c | 3efa417c5668b2e7d1c377c41d976ed31fd26fdc | /src/br/com/mind5/masterData/materialGroupOwner/info/MatoupowMerger.java | f64d0ace3bd1389b96a5b1c6da570b0d040583e7 | []
| no_license | grazianiborcai/Agenda_WS | 4b2656716cc49a413636933665d6ad8b821394ef | e8815a951f76d498eb3379394a54d2aa1655f779 | refs/heads/master | 2023-05-24T19:39:22.215816 | 2023-05-15T15:15:15 | 2023-05-15T15:15:15 | 109,902,084 | 0 | 0 | null | 2022-06-29T19:44:56 | 2017-11-07T23:14:21 | Java | UTF-8 | Java | false | false | 3,021 | java | package br.com.mind5.masterData.materialGroupOwner.info;
import java.util.List;
import br.com.mind5.business.ownerList.info.OwnelisInfo;
import br.com.mind5.info.InfoMerger;
import br.com.mind5.info.InfoMergerBuilder;
import br.com.mind5.masterData.materialGroup.info.MatoupInfo;
import br.com.mind5.security.username.info.UsernameInfo;
public final class MatoupowMerger {
public static List<MatoupowInfo> mergeWithMatoup(List<MatoupowInfo> baseInfos, List<MatoupInfo> selectedInfos) {
InfoMergerBuilder<MatoupowInfo, MatoupInfo> builder = new InfoMergerBuilder<>();
builder.addBaseInfos(baseInfos);
builder.addSelectedInfos(selectedInfos);
builder.addVisitor(new MatoupowMergerVisiMatoup());
InfoMerger<MatoupowInfo, MatoupInfo> merger = builder.build();
return merger.merge();
}
public static List<MatoupowInfo> mergeWithUsername(List<MatoupowInfo> baseInfos, List<UsernameInfo> selectedInfos) {
InfoMergerBuilder<MatoupowInfo, UsernameInfo> builder = new InfoMergerBuilder<>();
builder.addBaseInfos(baseInfos);
builder.addSelectedInfos(selectedInfos);
builder.addVisitor(new MatoupowMergerVisiUsername());
InfoMerger<MatoupowInfo, UsernameInfo> merger = builder.build();
return merger.merge();
}
public static List<MatoupowInfo> mergeWithMatoupSearch(List<MatoupowInfo> baseInfos, List<MatoupInfo> selectedInfos) {
InfoMergerBuilder<MatoupowInfo, MatoupInfo> builder = new InfoMergerBuilder<>();
builder.addBaseInfos(baseInfos);
builder.addSelectedInfos(selectedInfos);
builder.addVisitor(new MatoupowMergerVisiMatoupSearch());
InfoMerger<MatoupowInfo, MatoupInfo> merger = builder.build();
return merger.merge();
}
public static List<MatoupowInfo> mergeWithOwnelis(List<MatoupowInfo> baseInfos, List<OwnelisInfo> selectedInfos) {
InfoMergerBuilder<MatoupowInfo, OwnelisInfo> builder = new InfoMergerBuilder<>();
builder.addBaseInfos(baseInfos);
builder.addSelectedInfos(selectedInfos);
builder.addVisitor(new MatoupowMergerVisiOwnelis());
InfoMerger<MatoupowInfo, OwnelisInfo> merger = builder.build();
return merger.merge();
}
public static List<MatoupowInfo> mergeToSelect(List<MatoupowInfo> baseInfos, List<MatoupowInfo> selectedInfos) {
InfoMergerBuilder<MatoupowInfo, MatoupowInfo> builder = new InfoMergerBuilder<>();
builder.addBaseInfos(baseInfos);
builder.addSelectedInfos(selectedInfos);
builder.addVisitor(new MatoupowMergerVisiToSelect());
InfoMerger<MatoupowInfo, MatoupowInfo> merger = builder.build();
return merger.merge();
}
public static List<MatoupowInfo> mergeToUpdate(List<MatoupowInfo> baseInfos, List<MatoupowInfo> selectedInfos) {
InfoMergerBuilder<MatoupowInfo, MatoupowInfo> builder = new InfoMergerBuilder<>();
builder.addBaseInfos(baseInfos);
builder.addSelectedInfos(selectedInfos);
builder.addVisitor(new MatoupowMergerVisiToUpdate());
InfoMerger<MatoupowInfo, MatoupowInfo> merger = builder.build();
return merger.merge();
}
}
| [
"[email protected]"
]
| |
3d4166334c888b85b6af3f7d8e5696b4103562b5 | 9f4666748e02f02130161529e4f7e39439fadd94 | /Lecture-2/src/com/codingblocks/Patterns_diamond.java | 145ee1cec79baa4fbd523149a018b6f68d5c45bd | []
| no_license | dalalsunil1986/crux | cb816402351030882cb1aa3c25348e8af3157369 | 7f8166e722eb8a9377f153dea56e3c7aa90f6d75 | refs/heads/master | 2023-04-01T10:07:35.251357 | 2021-04-04T07:35:43 | 2021-04-04T07:35:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 753 | java | package com.codingblocks;
import java.util.Scanner;
public class Patterns_diamond {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int n = input.nextInt();
for(int i=0; i<=n/2; i++){
for(int s=0; s<n/2-i;s++){
System.out.print(" ");
}
for(int j=1; j<=i*2+1; j++){
System.out.print("*");
}
System.out.println();
}
for(int i=n/2-1; i>=0; i--){
for(int s=0; s<n/2-i;s++){
System.out.print(" ");
}
for(int j=0; j<i*2+1; j++){
System.out.print("*");
}
System.out.println();
}
}
}
| [
"[email protected]"
]
| |
40372f6cb368e3aa81bb3e6690dada668cc53406 | 91c5abc8361349e82d948e7698889f39583a87b6 | /src/main/java/com/firedata/prodavnica/repository/package-info.java | 3220c414c7688e113d9088cd28550a64e0b22969 | []
| no_license | Marko-Mijovic/prodavnica-aplikacija | 04d0c449dc836f3825fcad9ac9459d37a2071ed8 | e2eb240036cbb337f1fcc28a913f919d0a79c79e | refs/heads/master | 2021-07-17T16:11:07.568271 | 2019-06-11T21:24:04 | 2019-06-11T21:24:04 | 191,450,449 | 0 | 0 | null | 2020-07-17T07:23:07 | 2019-06-11T21:13:27 | Java | UTF-8 | Java | false | false | 85 | java | /**
* Spring Data JPA repositories.
*/
package com.firedata.prodavnica.repository;
| [
"[email protected]"
]
| |
5a6e16413139deaeb180a2303b1b907d7fb45ff9 | 0119956d9576c17f8b5b6ad1c9bd5c7a92f6d7ce | /src/test/java/cure4j/series/MovieTest_miracle_universe.java | 40fca60b72e82b7f6e2ea9150abd6369097bcce4 | []
| no_license | fukaiyas/Cure4j | 6da3ce00e607cfd6a4e42db52f0075261632a856 | 303f51d172c07d2521424f56feca926b1237bb42 | refs/heads/master | 2023-08-23T11:24:46.723937 | 2023-08-14T13:27:50 | 2023-08-14T13:27:50 | 161,884,252 | 0 | 0 | null | 2023-09-09T23:21:19 | 2018-12-15T08:11:16 | Java | UTF-8 | Java | false | false | 601 | java | package cure4j.series;
import org.junit.jupiter.api.Test;
import java.time.LocalDate;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class MovieTest_miracle_universe {
Movie miracleUniverse = Movie.miracleUniverse;
@Test
void 各種プロパティ(){
assertEquals("映画プリキュアミラクルユニバース", miracleUniverse.title);
assertEquals(LocalDate.of(2019, 3, 16), miracleUniverse.startedDate);
assertEquals(0, miracleUniverse.extraGirls.size());
}
@Test
void エイリアス(){
//定義なし
}
}
| [
"[email protected]"
]
| |
7a0419734bf544bf32fdf35db8226d86e670cabb | 97a63dd78575b969051e1daa6e09dded5f096b7a | /app/exceptions/ResourceException.java | 36c793a29ca6880e3ecfb853be19bbb1666e5be5 | [
"Apache-2.0"
]
| permissive | alphaadidas/RestfulPlayJava | 94cd1a1aaf029dfa93c7197fd567c3d738013e87 | f3ae6ef6167de0a68d01507fcb042d63b4c48cc8 | refs/heads/master | 2021-01-18T15:22:20.526634 | 2014-12-03T23:55:23 | 2014-12-03T23:55:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 129 | java | package exceptions;
/**
* @author: gmatsu
*/
public class ResourceException extends Exception {
private int statusCode;
}
| [
"[email protected]"
]
| |
7e4924a746fcfe14d6b1a00564511c103616374c | aca84426225bb65286bb4158704cf069f72ab28d | /src/daigl/Livre.java | 1563d33d501e1b51b27f5354fd97fa1186511e2b | []
| no_license | erazordoraemon/test-repo | f1e483ff82266c5d8775f6f3f0eabc5d10cb9be3 | 2436d74695f727003990bea8cef80ffe601a1867 | refs/heads/master | 2016-09-06T04:12:39.022095 | 2012-10-25T08:43:39 | 2012-10-25T08:43:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 746 | java | package daigl;
public class Livre {
private String titre;
private double prix;
private int nbExemplaires;
public Livre(String titre, double prix) {
this(titre, prix, 1);
}
public Livre(String titre, double prix, int nb) {
this.titre = titre;
this.prix = prix;
this.nbExemplaires = nb;
}
public double eval() {
return (double)nbExemplaires * prix;
}
public int getNbExemplaires() {
return nbExemplaires;
}
public double getPrix() {
return prix;
}
public String getTitre() {
return titre;
}
public void setNbExemplaires(int nbExemplaires) {
this.nbExemplaires = nbExemplaires;
}
public void setPrix(double prix) {
this.prix = prix;
}
public void setTitre(String titre) {
this.titre = titre;
}
} | [
"[email protected]"
]
| |
ee06b36f22a2461b42d55bafbfc5ac4cf35dee27 | 46ab9e77ba81421da965f20fa22898b9375a6b1f | /metrix-connector-api/src/test/java/metrix/connector/api/Product.java | 244b6de1b2ce41de46e618188e678802ba134e83 | []
| no_license | sandbox9/metrix | e1f7340476af7bdd33f7dab9e526afc90385c5e2 | c0d5690a0b616784f09e49ab1dad9134341f4dc7 | refs/heads/master | 2021-01-10T22:11:28.243740 | 2015-02-26T01:36:04 | 2015-02-26T01:36:04 | 30,007,983 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 417 | java | package metrix.connector.api;
import java.io.Serializable;
/**
* Created by chanwook on 2015. 2. 4..
*/
public class Product implements Serializable {
private int productId;
public Product(int productId) {
this.productId = productId;
}
public int getProductId() {
return productId;
}
public void setProductId(int productId) {
this.productId = productId;
}
}
| [
"[email protected]"
]
| |
ddb41b2af8b4b698b2fe64b8c2f49bdaf669ec9a | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/19/19_f6b6fbffc8a7db52d170d491212cc9cb340f2470/extractor/19_f6b6fbffc8a7db52d170d491212cc9cb340f2470_extractor_s.java | dbd018d658be37915e5ab44ee002ae12130d1f1a | []
| 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 | 8,511 | java | import java.util.*;
import java.security.*;
import java.io.*;
import javax.swing.text.rtf.RTFEditorKit;
import javax.swing.text.*;
public class extractor{
private Vector<String> dirStack;
private int type;
private String license = "";
private String path = "";
private List<String> codes = Arrays.asList(".dll",".msi", ".exe", ".cab", ".rtf", ".txt", ".rar", ".7z", ".zip");
public extractor(String mPath){
dirStack = new Vector<String>();
path = mPath;
}
public int start(){
return traverse(path);
}
private int traverse(String mPath){
int error = 0;
File f = new File(mPath);
if(f.isDirectory()){
for (File c : f.listFiles()){
error = traverse(c.getPath());
}
}else{
error = extract(mPath);
}
return error;
}
public String getLicense(){
return license;
}
private int getType(String mPath){
int returnCode = -1;
String type = "";
try{
type=kommand("./trid -d:TrIDDefs.TRD -r:10 \""+mPath+"\"");
for(String n : type.split("\n")){
if(n.matches("% (.*)")){
type = n.toLowerCase();
break;
}
}
}catch(Exception e){
misc.log("Error: getType(); "+e.toString());
}
if(mPath.substring(mPath.lastIndexOf(".")).equalsIgnoreCase(".msi") || mPath.substring(mPath.lastIndexOf(".")).equalsIgnoreCase(".mst"))
returnCode = 2;
else if(type.contains("inno")){
returnCode = 1;
}else if(type.contains("msi") || type.contains("wise") || type.contains("vise")){
returnCode = 2;
}else if(type.contains("nsis")){
returnCode = 3;
}
return returnCode;
}
private int extract(String mPath){
if(!codes.contains(mPath.substring(mPath.length()-4)))
return 23;
if(mPath.contains("license") || mPath.contains("eula")){
if(mPath.contains(".txt")){
license = readFile(mPath);
return 0;
}else if(mPath.contains(".rtf")){
license = deRTF(readFile(mPath));
return 0;
}
}
if(mktmp(mPath)){
String tmpDir = dirStack.lastElement();
mPath = escape(mPath);
int error = 0;
int type = getType(path);
switch(type){
case 1:
if(extractNSIS(mPath, tmpDir))
traverse(tmpDir);
else
error = 23;
break;
case 2:
error = extractMSI(mPath, tmpDir);
break;
case 3:
if(extractInno(mPath, tmpDir))
traverse(tmpDir);
else
error = 23;
break;
default:
break;
}
return error;
}else{
misc.log("Error: extract(); ");
//throw new SecurityException("Failed to create temp directory for: "+path);
return 21;
}
}
private String kommand(String cmd) throws InterruptedException{
try{
Process p=Runtime.getRuntime().exec(cmd);
p.waitFor();
BufferedReader reader=new BufferedReader(new InputStreamReader(p.getInputStream()));
String line=reader.readLine();
while(line!=null)
{
System.out.println(line);
line=reader.readLine();
}
return line;
}
catch(IOException e1) {
misc.log("Error: kommand(); "+e1.toString());
throw new InterruptedException("Failed to run command: "+e1);
}
}
public boolean clean(){
boolean code=false;
for(int i=0; i< dirStack.size();i++){
try{
delete(new File(dirStack.get(i)));
}catch(Exception e){misc.log("Error: clean(); "+e.toString());}
}
return code;
}
private String readFile(String mPath){
String line="", str="";
try{
BufferedReader in = new BufferedReader(new FileReader(mPath));
while ((str = in.readLine()) != null) {
line +=str;
}
in.close();
}catch(Exception e){misc.log("Error: readFile(); "+e.toString());}
return line;
}
private int extractMSI(String mPath, String tmpDir){
int errorCode = 1;
String line ="";
try{
kommand("7z x -y -o"+tmpDir+" "+mPath);
}catch(Exception e){
misc.log("Error: extractMSI(); "+e.toString());
}
if(new File(tmpDir+"/!_StringData").exists()){
line = readFile(tmpDir+"/!_StringData");
Vector<String> s = match(line);
for(String str : s){
if(str.contains("\rtf"))
line += deRTF(str);
}
}
if(line.length()>2){
license = line;
errorCode = 0;
}
return errorCode;
}
private boolean extractInno(String mPath, String tmpDir){
return false;
}
private boolean extractNSIS(String mPath, String tmpDir){
boolean errorCode = false;
try{
kommand("7z -p1 x -y -o"+tmpDir+" \""+path+"\"");
errorCode = true;
}catch(Exception e){
misc.log("Error: extractNSIS(); "+e.toString());
}
return errorCode;
}
private boolean mktmp(String mPath){
try{
byte[] bytesOfMessage = mPath.getBytes("UTF-8");
MessageDigest md = MessageDigest.getInstance("MD5");
String thedigest = md.digest(bytesOfMessage).toString();
String tmpDir = "/tmp/"+thedigest;
File tmp = new File(tmpDir);
if(tmp.mkdir()){
dirStack.add(tmpDir);
return true;
}
}catch(Exception e){
misc.log("Error: mktmp(); "+e.toString());
return false;
}
return true;
}
//http://stackoverflow.com/a/779529
private void delete(File f) throws IOException {
if (f.isDirectory()) {
for (File c : f.listFiles())
delete(c);
}
if (!f.delete())
throw new FileNotFoundException("Failed to delete file: " + f);
}
private String deRTF(String mPath){
String mText = "";
try{
RTFEditorKit rtfParser = new RTFEditorKit();
Document document = rtfParser.createDefaultDocument();
rtfParser.read(new StringReader(mPath), document, 0);
mText = document.getText(0, document.getLength());
}catch(Exception e){
misc.log("Error: deRTF; "+e.toString());
System.exit(1);
}
return mText;
}
private Vector<String> match(String text){
Vector<String> data = new Vector<String>();
int start = -1;
int count = 0;
for(int i=0; i<text.length(); i++){
if(text.charAt(i) == '{'){
start = (start != -1)?i:start;
count++;
}else if(text.charAt(i) == '}'){
count--;
}
if((start > -1) && (count == 0)){
data.add(text.substring(start+1, i-1));
start = -1;
}
}
return data;
}
private String escape(String path){
if(path.contains("$")){
path = path.replaceAll("$", "\\$");
}else if(path.contains("!")){
path = path.replaceAll("!", "\\!");
}
return path;
}
}
| [
"[email protected]"
]
| |
97d6f8093b8c87ec4d40ae6f18f015ce97715c00 | 74f1b94b7bc2b9af268cc7e8cd9e92747aabb013 | /SpringHibernate/src/main/java/com/ws/spring/service/UserService.java | c9ad378fe4ca696203129cb606b0d67f9ccd3fe7 | []
| no_license | SnackMen/SpringInAction | 8ee3ff37768d008812c430a23b1f2e8793ef0455 | 310e6ef38f2fa0e1d437e4365678cc0dc92d1e92 | refs/heads/master | 2021-01-10T22:52:07.922680 | 2016-10-21T17:01:52 | 2016-10-21T17:01:52 | 70,344,196 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 408 | java | package com.ws.spring.service;
import com.ws.spring.model.User;
import java.util.List;
/**
* Created by laowang on 16-10-20.
*/
public interface UserService {
User findById(int id);
User findBySSO(String sso);
void saveUser(User user);
void updateUser(User user);
void deleteUserBySSO(String sso);
List<User> findAllUsers();
boolean isUserSSOUnique(Integer id,String sso);
}
| [
"[email protected]"
]
| |
0203b792b91ea5426b682fac15f667f74726d600 | 4700a6b2937ef736e2f1d909c12551c2101048d1 | /szserver/defcon4/src/main/java/com/saferzone/defcon4/susbma/usbmanage/service/SusbmaUsbManageService.java | 0698c882371aca3eec0c19a687b6ab5c2f4f8eed | []
| no_license | chkim716/secureusb | a0e0406c8169e61527c59ba34b15b7283f9aaa2d | 6edfe4dd1618d2049359c4246733af7c56d7b225 | refs/heads/master | 2023-01-14T11:37:07.670948 | 2020-11-13T01:09:33 | 2020-11-13T01:09:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,774 | java | /**
*
*/
package com.saferzone.defcon4.susbma.usbmanage.service;
import java.util.List;
import java.util.UUID;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.saferzone.defcon4.common.cmdclient.CmdClientTargetVO;
import com.saferzone.defcon4.common.commonui.vo.CommonUiSearchVO;
import com.saferzone.defcon4.common.commonui.vo.CommonUiUsbMasterVO;
import com.saferzone.defcon4.susbma.usbmanage.dao.ISusbmaUsbManageDAO;
import com.saferzone.defcon4.susbma.usbmanage.vo.SearchSusbMasterVO;
import com.saferzone.defcon4.susbma.usbmanage.vo.SusbChangeHistoryVO;
import com.saferzone.defcon4.susbma.usbmanage.vo.SusbDeleteHistoryVO;
import com.saferzone.defcon4.susbma.usbmanage.vo.SusbUsbMasterVO;
import com.saferzone.defcon4.susbma.usbmanage.vo.SusbUseHistoryVO;
import com.saferzone.defcon4.susbma.usbmanage.vo.SusbmaClassVO;
import com.saferzone.defcon4.susbma.usbmanage.vo.SusbmaMediaVO;
import com.saferzone.defcon4.susbma.usbmanage.vo.SusbmaReasonVO;
import com.saferzone.defcon4.susbma.usbmanage.vo.SusbmaStateVO;
/**
*
* 클래스 용도
*
* @author worker
* @since 2011. 6. 1.
* @version 1.0
*/
@Service("SusbmaUsbManageService")
public class SusbmaUsbManageService {
@Autowired
private ISusbmaUsbManageDAO dao;
/**
* <p>사용자에게 조회가 허용된 부서들 중, 화면에서 선택된 부서내에서
* Defcon에 등록된 USB 마스터정보 목록을 취득한다.</p>
* @param accountId 사용자ID
* @param orgId 화면에서 선택된 부서ID
* @return USB 마스터 목록
* @throws Exception
*/
public List<SusbUsbMasterVO> selectSUsbMasterList(SearchSusbMasterVO vo, int isCountQuery) throws Exception{
List<SusbUsbMasterVO> result = dao.selectSusbmaUsbMasterList(vo, isCountQuery);
return result;
}
/**
* <p>사용자에게 조회가 허용된 부서들 중, 화면에서 선택된 부서내에서
* Defcon에 등록된 USB 마스터정보 목록을 취득한다.</p>
* @param accountId 사용자ID
* @param orgId 화면에서 선택된 부서ID
* @return USB 마스터 목록
* @throws Exception
*/
public Integer selectSUsbMasterCount(SearchSusbMasterVO vo, int isCountQuery) throws Exception{
Integer result = dao.selectSUsbMasterCount(vo, isCountQuery);
return result;
}
/**
* <p>
* USB의 사용시점의 Agent정보 및 PC정보를 이력으로 저장한다.<br/>
* Agent와 통신하는 서버에 의해 호출된다.<br/>
* </p>
* @param assetId
* @param histVO
* @param histNicList
* @throws Exception
*/
// public void tranInsertSUsbUseHistory(String assetId,SusbUseHistoryVO histVO, List<SusbUseHistoryNicVO> histNicList) throws Exception{
// Integer useHistoryId = dao.insertSusbmaUsbHistory(assetId, histVO);
// if(useHistoryId.intValue() > 0){
// for(SusbUseHistoryNicVO nicVO : histNicList){
// nicVO.setUseHistoryId(useHistoryId);
// dao.insertSusbmaUsbHistoryNic(nicVO);
// }
// }
// }
/**
* 등급목록을 리턴한다
* @param localeCode
* @return
* @throws Exception
*/
public List<SusbmaClassVO> selectSusbmaClassList(Integer localeCode) throws Exception{
List<SusbmaClassVO> result = dao.selectSusbmaClassList(localeCode);
return result;
}
/**
*
* @param localeCode
* @return
* @throws Exception
*/
public List<SusbmaStateVO> selectSusbmaStateList(Integer localeCode) throws Exception{
List<SusbmaStateVO> result = dao.selectSusbmaStateList(localeCode);
return result;
}
/**
* 상태목록을 리턴한다
* @param localeCode
* @return
* @throws Exception
*/
public List<SusbmaMediaVO> selectSusbmaMediaList(Integer localeCode) throws Exception{
List<SusbmaMediaVO> result = dao.selectSusbmaMediaList(localeCode);
return result;
}
/**
* 변경사유목록을 리턴한다
* @param localeCode
* @return
* @throws Exception
*/
public List<SusbmaReasonVO> selectSusbmaReasonList(Integer localeCode) throws Exception{
List<SusbmaReasonVO> result = dao.selectSusbmaReasonList(localeCode);
return result;
}
/**
* usbMaster 를 등록한다
* @param vo
* @throws Exception
*/
public void insertUsubmaMaster(SusbUsbMasterVO vo) throws Exception{
// CD만 자동 생성
if(vo.getMediaType() == 3){
vo.setSno(UUID.randomUUID().toString().replace("-", "").toUpperCase());
}
dao.insertUsubmaMaster(vo);
}
/**
* usbMaster 를 수정한다
* @param vo
* @throws Exception
*/
public void updateSusbMaster(SusbChangeHistoryVO vo) throws Exception {
dao.updateSusbMaster(vo);
}
/**
* usbMaster - MngEmpId만 일괄변경
* @param vo
*/
public void updateMngEmpId(SusbUsbMasterVO vo) throws Exception {
dao.updateMngEmpId(vo);
}
/**
* usbMaster를 삭제한다
* @param sno
* @throws Exception
*/
public void tranDeleteSusbmaMaster(List<SusbUsbMasterVO> list) throws Exception{
for(SusbUsbMasterVO vo : list){
dao.deleteSusbmaMaster(vo.getSno());
}
}
/**
* 사용이력목록을 리턴한다
* @param sno
* @return
* @throws Exception
*/
public List<SusbUseHistoryVO> selectSusbmaUseList(String sno) throws Exception{
List<SusbUseHistoryVO> result = dao.selectSusbmaUseList(sno);
return result;
}
/**
* 변경이력목록을 리턴한다
* @param sno
* @param localeCode
* @return
* @throws Exception
*/
public List<SusbChangeHistoryVO> selectSusbmaChangeList(String sno, Integer localeCode) throws Exception{
List<SusbChangeHistoryVO> result = dao.selectSusbmaChangeList(sno, localeCode);
return result;
}
/**
* USB를 반납합니다.
* @param SusbUsbMasterVO
* @return
* @throws Exception
*/
public void returnSusbmaMaster(SusbUsbMasterVO vo) throws Exception{
dao.returnSusbmaMaster(vo);
}
public int getGroupType(String accountId) throws Exception{
return dao.getGroupType(accountId);
}
public List<SusbDeleteHistoryVO> selectSusbmaDeleteList(String sno, int localeCode) throws Exception {
return dao.selectSusbmaDeleteList(sno, localeCode);
}
public List<SusbUsbMasterVO> selectMassRegisterForm(SearchSusbMasterVO paramVo) throws Exception {
return dao.selectMassRegisterForm(paramVo);
}
public void insertMassRegister(SusbUsbMasterVO vo) throws Exception {
dao.insertMassRegister(vo);
}
public SusbUsbMasterVO insertMassRegisterFormCheck(SusbUsbMasterVO vo) throws Exception {
return dao.insertMassRegisterFormCheck(vo);
}
public List<SusbDeleteHistoryVO> selectSusbmaStatusList(String sno, int localeCode, String startDate, String endDate) throws Exception {
return dao.selectSusbmaStatusList(sno, localeCode, startDate, endDate);
}
public List<SusbDeleteHistoryVO> selectSusbmafileDeleteList(String sno, int localeCode, String startDate, String endDate) throws Exception {
return dao.selectSusbmafileDeleteList(sno, localeCode, startDate, endDate);
}
public List<SusbUsbMasterVO> selectSusbmaUpdateList(String sno) throws Exception{
return dao.selectSusbmaUpdateList(sno);
}
public int selectIsDeptType(String sno) throws Exception{
return dao.selectIsDeptType(sno);
}
public List<SusbUsbMasterVO> selectSusbmaOrgList(String sno) throws Exception{
List<SusbUsbMasterVO> result = dao.selectSusbmaOrgList(sno);
return result;
}
public List<CommonUiUsbMasterVO> selectUsbList(CommonUiSearchVO vo) throws Exception{
return dao.selectUsbList(vo);
}
public String initPasswordResult(String sno) throws Exception{
return dao.initPasswordResult(sno);
}
public void updatePasswordInit(String sno) throws Exception{
dao.updatePasswordInit(sno);
}
public List<CmdClientTargetVO> selectUsbTargetList(String sno) throws Exception{
return dao.selectUsbTargetList(sno);
}
}
| [
"[email protected]"
]
| |
3788dc1b61553f33f530512c88a252eaaa45808f | 8803e73957b609e8f4b38026b549611260d5adb0 | /src/main/java/com/gmail/imshhui/easy/TwoSum.java | b125b12eec438cbd9bdb04b218c056826098c01d | [
"MIT"
]
| permissive | xbest/leetcode | a35ff5bd8552f2e4c6562b02abdb6ee697f61b1f | 36bb5455de9ec0e3e3c3f6f81e548fbeca4e23e0 | refs/heads/master | 2023-05-25T23:00:02.097397 | 2023-05-10T12:37:47 | 2023-05-10T12:37:47 | 141,574,785 | 0 | 0 | MIT | 2020-10-13T06:42:12 | 2018-07-19T12:14:55 | Java | UTF-8 | Java | false | false | 1,962 | java | package com.gmail.imshhui.easy;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
* Given an array of integers, return indices of the two numbers such that they add up to a specific target.
* <p>
* You may assume that each input would have exactly one solution, and you may not use the same element twice.
* <p>
* Example:
* <p>
* Given nums = [2, 7, 11, 15], target = 9,
* <p>
* Because nums[0] + nums[1] = 2 + 7 = 9,
* return [0, 1].
*/
public class TwoSum {
public int[] twoSum(int[] nums, int target) {
for (int i = 0; i < nums.length; i++) {
for (int j = i + 1; j < nums.length; j++) {
if (nums[i] + nums[j] == target) {
return new int[]{i, j};
}
}
}
throw new IllegalArgumentException("No two sum solution");
}
public int[] twoSumTwopassHashmap(int[] nums, int target) {
Map<Integer, Integer> numsMap = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
numsMap.put(nums[i], i);
}
for (int i = 0; i < nums.length; i++) {
Integer index = numsMap.get(target - nums[i]);
if (Objects.nonNull(index) && index != i) {
return new int[]{i, index};
}
}
throw new IllegalArgumentException("No two sum solution");
}
public int[] twoSumOnepassHashmap(int[] nums, int target) {
Map<Integer, Integer> numsMap = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
// if the <code>numsMap.put(nums[i], i)</code> here and two num is the same value, then exception
Integer index = numsMap.get(target - nums[i]);
if (Objects.nonNull(index) && index != i) {
return new int[]{index, i};
}
numsMap.put(nums[i], i);
}
throw new IllegalArgumentException("No two sum solution");
}
}
| [
"[email protected]"
]
| |
fb6c3c6fb857deb9f46db037ca363186309aad29 | 135b0dac62c3766420595f4dbb95da9e878ff4b8 | /chapter1/src/chapter1/HW1.java | 735660d208bebb48fa2d7eeb272a2e6e956fd9fc | []
| no_license | Tulu-Kim/JAVA-Training | e89873b47a6ec6d9fd2bb2ce9b646cfa1a73094f | 5382fe7558c2788f736af00482727d52b5aa87b5 | refs/heads/master | 2023-07-28T08:03:07.771971 | 2021-09-16T10:27:19 | 2021-09-16T10:27:19 | 402,721,077 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 698 | java | package chapter1;
//숫자4개를 입력받아서 그 합을 구하는 프로그램//
import java.util.Scanner;
public class HW1 {
public static void main(String[] ar) {
int a,b,c,d;
int result;
Scanner s =new Scanner(System.in);
System.out.println("첫번째 수를 입력하시오");
a=s.nextInt();
System.out.println("두번째 수를 입력하시오");
b=s.nextInt();//다음으로 입력되는 값을 정수형으로 리턴함.
System.out.println("세번째 수를 입력하시오");
c=s.nextInt();
System.out.println("네번째 수를 입력하시오");
d=s.nextInt();
result=a+b+c+d;
System.out.println(a+"+"+b+"+"+c+"+"+d+"="+result);
}
}
| [
"aaa@DESKTOP-G20913L"
]
| aaa@DESKTOP-G20913L |
fa7e2fc93b449894258eef37e7faa9e44144e296 | 371654bfa40fde89f6e97092dd2b462e0fab6d13 | /visualization-system/src/main/java/china/jdl/visualizationsystem/vo/Bar2VO.java | a62a1f31082218612415d2d70f64db77321e38f9 | []
| no_license | xianghelanneijiangshuijiao/bs | 947aaa68110875e982e907fde2afc2d52d7ecf33 | 15fdb277bc2f0d72156ef789188acb5dcb47965d | refs/heads/master | 2023-04-30T12:05:12.430783 | 2021-05-13T07:38:51 | 2021-05-13T07:38:51 | 366,973,751 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 181 | java | package china.jdl.visualizationsystem.vo;
import lombok.Data;
import java.util.List;
@Data
public class Bar2VO {
private List<Integer> age;
private List<Integer> count;
}
| [
"[email protected]"
]
| |
0c7192f6bf8eec741b0c4c6efd32a3d2ca639e43 | 8145261ab0a5b5d59cf8e74985880a092195e858 | /shijingsh-ai-math/src/main/java/com/shijingsh/ai/math/algorithm/correlation/similarity/TanimotoSimilarity.java | cbacca7edf3e7389aa2aa3d3b4ce75dfbf20e2b6 | [
"Apache-2.0"
]
| permissive | shijingsh/shijingsh-ai2 | 2a02da7aa17d2e6feb69f12a9b873f4554b2d074 | 1d51bea3472d86a71a934de2f866c09ab2b4fa06 | refs/heads/master | 2023-04-01T00:31:59.004605 | 2021-04-02T02:58:53 | 2021-04-02T02:58:53 | 282,335,073 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,761 | java | package com.shijingsh.ai.math.algorithm.correlation.similarity;
import java.util.List;
import com.shijingsh.ai.math.algorithm.correlation.AbstractCorrelation;
import com.shijingsh.ai.math.algorithm.correlation.MathSimilarity;
import com.shijingsh.ai.math.structure.vector.MathVector;
import com.shijingsh.core.utility.Float2FloatKeyValue;
import com.shijingsh.ai.math.algorithm.correlation.AbstractCorrelation;
import com.shijingsh.ai.math.algorithm.correlation.MathSimilarity;
import com.shijingsh.ai.math.structure.vector.MathVector;
/**
* Tanimoto相似度
*
* @author Birdy
*
*/
public class TanimotoSimilarity extends AbstractCorrelation implements MathSimilarity {
private float getCoefficient(List<Float2FloatKeyValue> scores) {
float power = 0F, leftPower = 0F, rightPower = 0F;
for (Float2FloatKeyValue term : scores) {
float leftScore = term.getKey();
float rightScore = term.getValue();
power += leftScore * rightScore;
leftPower += leftScore * leftScore;
rightPower += rightScore * rightScore;
}
return power / (leftPower + rightPower - power);
}
@Override
public float getCoefficient(MathVector leftVector, MathVector rightVector) {
List<Float2FloatKeyValue> scores = getIntersectionScores(leftVector, rightVector);
int intersection = scores.size();
if (intersection == 0) {
return 0F;
}
int union = leftVector.getElementSize() + rightVector.getElementSize() - intersection;
float coefficient = getCoefficient(scores);
coefficient *= intersection;
coefficient /= union;
return coefficient;
}
}
| [
"[email protected]"
]
| |
846f13902ce68d15aed874d84a67cec08573562c | f8130317e2f1ed308480ae3d51e9514d048de6d9 | /libraries/test_session_current/src/main/java/androidx/media3/session/MediaSessionProviderService.java | b2f552261a5f11a03dd06730a518947d57635156 | [
"Apache-2.0"
]
| permissive | LiteKite/media | 5bb3c5de8c6f598f1d06ef2506e29398a732b55b | e6242690ffbd661fcf1fdc5e063d11dda3dfbd61 | refs/heads/main | 2023-08-27T05:57:00.831460 | 2021-10-27T16:44:44 | 2021-10-27T16:52:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 38,714 | java | /*
* Copyright 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.media3.session;
import static androidx.media3.test.session.common.CommonConstants.ACTION_MEDIA3_SESSION;
import static androidx.media3.test.session.common.CommonConstants.KEY_AUDIO_ATTRIBUTES;
import static androidx.media3.test.session.common.CommonConstants.KEY_BUFFERED_PERCENTAGE;
import static androidx.media3.test.session.common.CommonConstants.KEY_BUFFERED_POSITION;
import static androidx.media3.test.session.common.CommonConstants.KEY_CONTENT_BUFFERED_POSITION;
import static androidx.media3.test.session.common.CommonConstants.KEY_CONTENT_DURATION;
import static androidx.media3.test.session.common.CommonConstants.KEY_CONTENT_POSITION;
import static androidx.media3.test.session.common.CommonConstants.KEY_CURRENT_AD_GROUP_INDEX;
import static androidx.media3.test.session.common.CommonConstants.KEY_CURRENT_AD_INDEX_IN_AD_GROUP;
import static androidx.media3.test.session.common.CommonConstants.KEY_CURRENT_CUES;
import static androidx.media3.test.session.common.CommonConstants.KEY_CURRENT_LIVE_OFFSET;
import static androidx.media3.test.session.common.CommonConstants.KEY_CURRENT_PERIOD_INDEX;
import static androidx.media3.test.session.common.CommonConstants.KEY_CURRENT_POSITION;
import static androidx.media3.test.session.common.CommonConstants.KEY_CURRENT_WINDOW_INDEX;
import static androidx.media3.test.session.common.CommonConstants.KEY_DEVICE_INFO;
import static androidx.media3.test.session.common.CommonConstants.KEY_DEVICE_MUTED;
import static androidx.media3.test.session.common.CommonConstants.KEY_DEVICE_VOLUME;
import static androidx.media3.test.session.common.CommonConstants.KEY_DURATION;
import static androidx.media3.test.session.common.CommonConstants.KEY_IS_LOADING;
import static androidx.media3.test.session.common.CommonConstants.KEY_IS_PLAYING;
import static androidx.media3.test.session.common.CommonConstants.KEY_IS_PLAYING_AD;
import static androidx.media3.test.session.common.CommonConstants.KEY_MAX_SEEK_TO_PREVIOUS_POSITION_MS;
import static androidx.media3.test.session.common.CommonConstants.KEY_MEDIA_METADATA;
import static androidx.media3.test.session.common.CommonConstants.KEY_PLAYBACK_PARAMETERS;
import static androidx.media3.test.session.common.CommonConstants.KEY_PLAYBACK_STATE;
import static androidx.media3.test.session.common.CommonConstants.KEY_PLAYBACK_SUPPRESSION_REASON;
import static androidx.media3.test.session.common.CommonConstants.KEY_PLAYER_ERROR;
import static androidx.media3.test.session.common.CommonConstants.KEY_PLAYLIST_METADATA;
import static androidx.media3.test.session.common.CommonConstants.KEY_PLAY_WHEN_READY;
import static androidx.media3.test.session.common.CommonConstants.KEY_REPEAT_MODE;
import static androidx.media3.test.session.common.CommonConstants.KEY_SEEK_BACK_INCREMENT_MS;
import static androidx.media3.test.session.common.CommonConstants.KEY_SEEK_FORWARD_INCREMENT_MS;
import static androidx.media3.test.session.common.CommonConstants.KEY_SHUFFLE_MODE_ENABLED;
import static androidx.media3.test.session.common.CommonConstants.KEY_TIMELINE;
import static androidx.media3.test.session.common.CommonConstants.KEY_TOTAL_BUFFERED_DURATION;
import static androidx.media3.test.session.common.CommonConstants.KEY_TRACK_SELECTION_PARAMETERS;
import static androidx.media3.test.session.common.CommonConstants.KEY_VIDEO_SIZE;
import static androidx.media3.test.session.common.CommonConstants.KEY_VOLUME;
import static androidx.media3.test.session.common.MediaSessionConstants.KEY_AVAILABLE_SESSION_COMMANDS;
import static androidx.media3.test.session.common.MediaSessionConstants.TEST_CONTROLLER_LISTENER_SESSION_REJECTS;
import static androidx.media3.test.session.common.MediaSessionConstants.TEST_GET_SESSION_ACTIVITY;
import static androidx.media3.test.session.common.MediaSessionConstants.TEST_IS_SESSION_COMMAND_AVAILABLE;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Intent;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import androidx.annotation.Nullable;
import androidx.media3.common.AudioAttributes;
import androidx.media3.common.C;
import androidx.media3.common.DeviceInfo;
import androidx.media3.common.MediaItem;
import androidx.media3.common.MediaMetadata;
import androidx.media3.common.PlaybackException;
import androidx.media3.common.PlaybackParameters;
import androidx.media3.common.Player;
import androidx.media3.common.Player.DiscontinuityReason;
import androidx.media3.common.Player.PositionInfo;
import androidx.media3.common.Timeline;
import androidx.media3.common.TrackSelectionParameters;
import androidx.media3.common.VideoSize;
import androidx.media3.common.text.Cue;
import androidx.media3.common.util.BundleableUtil;
import androidx.media3.common.util.Log;
import androidx.media3.common.util.UnstableApi;
import androidx.media3.common.util.Util;
import androidx.media3.session.MediaSession.ControllerInfo;
import androidx.media3.test.session.common.IRemoteMediaSession;
import androidx.media3.test.session.common.MockActivity;
import androidx.media3.test.session.common.TestHandler;
import androidx.media3.test.session.common.TestHandler.TestRunnable;
import androidx.media3.test.session.common.TestUtils;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable;
/**
* A Service that creates {@link MediaSession} and calls its methods according to the client app's
* requests.
*/
@UnstableApi
public class MediaSessionProviderService extends Service {
private static final String TAG = "MediaSessionProviderService";
private Map<String, MediaSession> sessionMap = new HashMap<>();
private RemoteMediaSessionStub sessionBinder;
private TestHandler handler;
@Override
public void onCreate() {
super.onCreate();
sessionBinder = new RemoteMediaSessionStub();
handler = new TestHandler(getMainLooper());
}
@Override
public IBinder onBind(Intent intent) {
if (ACTION_MEDIA3_SESSION.equals(intent.getAction())) {
return sessionBinder;
}
return null;
}
@Override
public void onDestroy() {
for (MediaSession session : sessionMap.values()) {
session.release();
}
}
private class RemoteMediaSessionStub extends IRemoteMediaSession.Stub {
private void runOnHandler(TestRunnable runnable) throws RemoteException {
try {
handler.postAndSync(runnable);
} catch (Exception e) {
Log.e(TAG, "Exception thrown while waiting for handler", e);
throw new RemoteException("Unexpected exception");
}
}
private <V> V runOnHandler(Callable<V> callable) throws RemoteException {
try {
return handler.postAndSync(callable);
} catch (Exception e) {
Log.e(TAG, "Exception thrown while waiting for handler", e);
throw new RemoteException("Unexpected exception");
}
}
@Override
public void create(String sessionId, Bundle tokenExtras) throws RemoteException {
MediaSession.Builder builder =
new MediaSession.Builder(
MediaSessionProviderService.this,
new MockPlayer.Builder().setApplicationLooper(handler.getLooper()).build())
.setId(sessionId);
if (tokenExtras != null) {
builder.setExtras(tokenExtras);
}
switch (sessionId) {
case TEST_GET_SESSION_ACTIVITY:
{
Intent sessionActivity =
new Intent(MediaSessionProviderService.this, MockActivity.class);
PendingIntent pendingIntent =
PendingIntent.getActivity(
MediaSessionProviderService.this,
/* requestCode= */ 0,
sessionActivity,
Util.SDK_INT >= 23 ? PendingIntent.FLAG_IMMUTABLE : 0);
builder.setSessionActivity(pendingIntent);
break;
}
case TEST_CONTROLLER_LISTENER_SESSION_REJECTS:
{
builder.setSessionCallback(
new MediaSession.SessionCallback() {
@Override
public MediaSession.ConnectionResult onConnect(
MediaSession session, ControllerInfo controller) {
return MediaSession.ConnectionResult.reject();
}
});
break;
}
case TEST_IS_SESSION_COMMAND_AVAILABLE:
{
SessionCommands availableSessionCommands =
SessionCommands.CREATOR.fromBundle(
tokenExtras.getBundle(KEY_AVAILABLE_SESSION_COMMANDS));
builder.setSessionCallback(
new MediaSession.SessionCallback() {
@Override
public MediaSession.ConnectionResult onConnect(
MediaSession session, ControllerInfo controller) {
return MediaSession.ConnectionResult.accept(
availableSessionCommands, Player.Commands.EMPTY);
}
});
break;
}
default: // fall out
}
runOnHandler(
() -> {
MediaSession session = builder.build();
session.setSessionPositionUpdateDelayMs(0L);
sessionMap.put(sessionId, session);
});
}
////////////////////////////////////////////////////////////////////////////////
// MediaSession methods
////////////////////////////////////////////////////////////////////////////////
@Override
public Bundle getToken(String sessionId) throws RemoteException {
return runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
return session.getToken().toBundle();
});
}
@Override
public Bundle getCompatToken(String sessionId) throws RemoteException {
return runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
return session.getSessionCompat().getSessionToken().toBundle();
});
}
@Override
public void setSessionPositionUpdateDelayMs(String sessionId, long updateDelayMs)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
session.setSessionPositionUpdateDelayMs(updateDelayMs);
});
}
@Override
public void setPlayer(String sessionId, Bundle config) throws RemoteException {
runOnHandler(
() -> {
config.setClassLoader(MediaSession.class.getClassLoader());
MediaSession session = sessionMap.get(sessionId);
session.setPlayer(createMockPlayer(config));
});
}
private Player createMockPlayer(Bundle config) {
MockPlayer player = new MockPlayer.Builder().build();
player.playerError =
BundleableUtil.fromNullableBundle(
PlaybackException.CREATOR, config.getBundle(KEY_PLAYER_ERROR), player.playerError);
player.currentPosition = config.getLong(KEY_CURRENT_POSITION, player.currentPosition);
player.bufferedPosition = config.getLong(KEY_BUFFERED_POSITION, player.bufferedPosition);
player.bufferedPercentage = config.getInt(KEY_BUFFERED_PERCENTAGE, player.bufferedPercentage);
player.duration = config.getLong(KEY_DURATION, player.duration);
player.totalBufferedDuration =
config.getLong(KEY_TOTAL_BUFFERED_DURATION, player.totalBufferedDuration);
player.currentLiveOffset = config.getLong(KEY_CURRENT_LIVE_OFFSET, player.currentLiveOffset);
player.contentDuration = config.getLong(KEY_CONTENT_DURATION, player.contentDuration);
player.contentPosition = config.getLong(KEY_CONTENT_POSITION, player.contentPosition);
player.contentBufferedPosition =
config.getLong(KEY_CONTENT_BUFFERED_POSITION, player.contentBufferedPosition);
player.isPlayingAd = config.getBoolean(KEY_IS_PLAYING_AD, player.isPlayingAd);
player.currentAdGroupIndex =
config.getInt(KEY_CURRENT_AD_GROUP_INDEX, player.currentAdGroupIndex);
player.currentAdIndexInAdGroup =
config.getInt(KEY_CURRENT_AD_INDEX_IN_AD_GROUP, player.currentAdIndexInAdGroup);
player.playbackParameters =
BundleableUtil.fromNullableBundle(
PlaybackParameters.CREATOR,
config.getBundle(KEY_PLAYBACK_PARAMETERS),
player.playbackParameters);
player.timeline =
BundleableUtil.fromNullableBundle(
Timeline.CREATOR, config.getBundle(KEY_TIMELINE), player.timeline);
player.currentMediaItemIndex =
config.getInt(KEY_CURRENT_WINDOW_INDEX, player.currentMediaItemIndex);
player.currentPeriodIndex =
config.getInt(KEY_CURRENT_PERIOD_INDEX, player.currentPeriodIndex);
player.playlistMetadata =
BundleableUtil.fromNullableBundle(
MediaMetadata.CREATOR,
config.getBundle(KEY_PLAYLIST_METADATA),
player.playlistMetadata);
player.videoSize =
BundleableUtil.fromNullableBundle(
VideoSize.CREATOR, config.getBundle(KEY_VIDEO_SIZE), player.videoSize);
player.volume = config.getFloat(KEY_VOLUME, player.volume);
player.audioAttributes =
BundleableUtil.fromNullableBundle(
AudioAttributes.CREATOR,
config.getBundle(KEY_AUDIO_ATTRIBUTES),
player.audioAttributes);
@Nullable List<Bundle> cuesBundleList = config.getParcelableArrayList(KEY_CURRENT_CUES);
if (cuesBundleList != null) {
player.cues = BundleableUtil.fromBundleList(Cue.CREATOR, cuesBundleList);
}
player.deviceInfo =
BundleableUtil.fromNullableBundle(
DeviceInfo.CREATOR, config.getBundle(KEY_DEVICE_INFO), player.deviceInfo);
player.deviceVolume = config.getInt(KEY_DEVICE_VOLUME, player.deviceVolume);
player.deviceMuted = config.getBoolean(KEY_DEVICE_MUTED, player.deviceMuted);
player.playWhenReady = config.getBoolean(KEY_PLAY_WHEN_READY, player.playWhenReady);
player.playbackSuppressionReason =
config.getInt(KEY_PLAYBACK_SUPPRESSION_REASON, player.playbackSuppressionReason);
player.playbackState = config.getInt(KEY_PLAYBACK_STATE, player.playbackState);
player.isPlaying = config.getBoolean(KEY_IS_PLAYING, player.isPlaying);
player.isLoading = config.getBoolean(KEY_IS_LOADING, player.isLoading);
player.repeatMode = config.getInt(KEY_REPEAT_MODE, player.repeatMode);
player.shuffleModeEnabled =
config.getBoolean(KEY_SHUFFLE_MODE_ENABLED, player.shuffleModeEnabled);
player.seekBackIncrementMs =
config.getLong(KEY_SEEK_BACK_INCREMENT_MS, player.seekBackIncrementMs);
player.seekForwardIncrementMs =
config.getLong(KEY_SEEK_FORWARD_INCREMENT_MS, player.seekForwardIncrementMs);
player.mediaMetadata =
BundleableUtil.fromNullableBundle(
MediaMetadata.CREATOR, config.getBundle(KEY_MEDIA_METADATA), player.mediaMetadata);
player.maxSeekToPreviousPositionMs =
config.getLong(KEY_MAX_SEEK_TO_PREVIOUS_POSITION_MS, player.maxSeekToPreviousPositionMs);
player.trackSelectionParameters =
BundleableUtil.fromNullableBundle(
TrackSelectionParameters.CREATOR,
config.getBundle(KEY_TRACK_SELECTION_PARAMETERS),
player.trackSelectionParameters);
return player;
}
@Override
public void broadcastCustomCommand(String sessionId, Bundle command, Bundle args)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
session.broadcastCustomCommand(SessionCommand.CREATOR.fromBundle(command), args);
});
}
@Override
@SuppressWarnings("FutureReturnValueIgnored")
public void sendCustomCommand(String sessionId, Bundle controller, Bundle command, Bundle args)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
ControllerInfo info = MediaTestUtils.getTestControllerInfo(session);
session.sendCustomCommand(info, SessionCommand.CREATOR.fromBundle(command), args);
});
}
@Override
public void release(String sessionId) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
session.release();
});
}
@Override
public void setAvailableCommands(
String sessionId, Bundle controller, Bundle sessionCommands, Bundle playerCommands)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
ControllerInfo info = MediaTestUtils.getTestControllerInfo(session);
session.setAvailableCommands(
info,
SessionCommands.CREATOR.fromBundle(sessionCommands),
Player.Commands.CREATOR.fromBundle(playerCommands));
});
}
@Override
@SuppressWarnings("FutureReturnValueIgnored")
public void setCustomLayout(String sessionId, Bundle controller, List<Bundle> layout)
throws RemoteException {
if (layout == null) {
return;
}
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
ControllerInfo info = MediaTestUtils.getTestControllerInfo(session);
List<CommandButton> buttons = new ArrayList<>();
for (Bundle bundle : layout) {
buttons.add(CommandButton.CREATOR.fromBundle(bundle));
}
session.setCustomLayout(info, buttons);
});
}
////////////////////////////////////////////////////////////////////////////////
// MockPlayer methods
////////////////////////////////////////////////////////////////////////////////
@Override
public void notifyPlayerError(String sessionId, @Nullable Bundle playerErrorBundle)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
@Nullable
PlaybackException playerError =
BundleableUtil.fromNullableBundle(
PlaybackException.CREATOR, playerErrorBundle, player.playerError);
player.notifyPlayerError(playerError);
});
}
@Override
public void setPlayWhenReady(String sessionId, boolean playWhenReady, int reason)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.playWhenReady = playWhenReady;
player.playbackSuppressionReason = reason;
});
}
@Override
public void setPlaybackState(String sessionId, int state) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.playbackState = state;
});
}
@Override
public void setCurrentPosition(String sessionId, long pos) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.currentPosition = pos;
});
}
@Override
public void setBufferedPosition(String sessionId, long pos) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.bufferedPosition = pos;
});
}
@Override
public void setDuration(String sessionId, long duration) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.duration = duration;
});
}
@Override
public void setBufferedPercentage(String sessionId, int bufferedPercentage)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.bufferedPercentage = bufferedPercentage;
});
}
@Override
public void setTotalBufferedDuration(String sessionId, long totalBufferedDuration)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.totalBufferedDuration = totalBufferedDuration;
});
}
@Override
public void setCurrentLiveOffset(String sessionId, long currentLiveOffset)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.currentLiveOffset = currentLiveOffset;
});
}
@Override
public void setContentDuration(String sessionId, long contentDuration) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.contentDuration = contentDuration;
});
}
@Override
public void setContentPosition(String sessionId, long contentPosition) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.contentPosition = contentPosition;
});
}
@Override
public void setContentBufferedPosition(String sessionId, long contentBufferedPosition)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.contentBufferedPosition = contentBufferedPosition;
});
}
@Override
public void setPlaybackParameters(String sessionId, Bundle playbackParametersBundle)
throws RemoteException {
PlaybackParameters playbackParameters =
PlaybackParameters.CREATOR.fromBundle(playbackParametersBundle);
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.setPlaybackParameters(playbackParameters);
});
}
@Override
public void setIsPlayingAd(String sessionId, boolean isPlayingAd) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.isPlayingAd = isPlayingAd;
});
}
@Override
public void setCurrentAdGroupIndex(String sessionId, int currentAdGroupIndex)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.currentAdGroupIndex = currentAdGroupIndex;
});
}
@Override
public void setCurrentAdIndexInAdGroup(String sessionId, int currentAdIndexInAdGroup)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.currentAdIndexInAdGroup = currentAdIndexInAdGroup;
});
}
@Override
public void notifyPlayWhenReadyChanged(
String sessionId, boolean playWhenReady, @Player.PlaybackSuppressionReason int reason)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyPlayWhenReadyChanged(playWhenReady, reason);
});
}
@Override
public void notifyPlaybackStateChanged(String sessionId, @Player.State int state)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyPlaybackStateChanged(state);
});
}
@Override
public void notifyIsPlayingChanged(String sessionId, boolean isPlaying) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyIsPlayingChanged(isPlaying);
});
}
@Override
public void notifyIsLoadingChanged(String sessionId, boolean isLoading) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyIsLoadingChanged(isLoading);
});
}
@Override
public void notifyPositionDiscontinuity(
String sessionId,
Bundle oldPositionBundle,
Bundle newPositionBundle,
@DiscontinuityReason int reason)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyPositionDiscontinuity(
PositionInfo.CREATOR.fromBundle(oldPositionBundle),
PositionInfo.CREATOR.fromBundle(newPositionBundle),
reason);
});
}
@Override
public void notifyPlaybackParametersChanged(String sessionId, Bundle playbackParametersBundle)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyPlaybackParametersChanged(
PlaybackParameters.CREATOR.fromBundle(playbackParametersBundle));
});
}
@Override
public void notifyMediaItemTransition(
String sessionId, int index, @Player.MediaItemTransitionReason int reason)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
Timeline.Window window = new Timeline.Window();
@Nullable
MediaItem mediaItem =
index == C.INDEX_UNSET ? null : player.timeline.getWindow(index, window).mediaItem;
player.notifyMediaItemTransition(mediaItem, reason);
});
}
@Override
public void notifyAudioAttributesChanged(String sessionId, Bundle audioAttributesBundle)
throws RemoteException {
AudioAttributes audioAttributes = AudioAttributes.CREATOR.fromBundle(audioAttributesBundle);
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.audioAttributes = audioAttributes;
player.notifyAudioAttributesChanged(audioAttributes);
});
}
////////////////////////////////////////////////////////////////////////////////
// MockPlaylistAgent methods
////////////////////////////////////////////////////////////////////////////////
@Override
public void setTimeline(String sessionId, Bundle timelineBundle) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.timeline = Timeline.CREATOR.fromBundle(timelineBundle);
});
}
@Override
public void createAndSetFakeTimeline(String sessionId, int windowCount) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
List<MediaItem> mediaItems = new ArrayList<>();
for (int windowIndex = 0; windowIndex < windowCount; windowIndex++) {
mediaItems.add(
MediaTestUtils.createMediaItem(TestUtils.getMediaIdInFakeTimeline(windowIndex)));
}
player.timeline = new PlaylistTimeline(mediaItems);
});
}
@Override
public void setPlaylistMetadata(String sessionId, Bundle playlistMetadataBundle)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.playlistMetadata = MediaMetadata.CREATOR.fromBundle(playlistMetadataBundle);
});
}
@Override
public void setShuffleModeEnabled(String sessionId, boolean shuffleModeEnabled)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.shuffleModeEnabled = shuffleModeEnabled;
});
}
@Override
public void setRepeatMode(String sessionId, int repeatMode) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.repeatMode = repeatMode;
});
}
@Override
public void setCurrentWindowIndex(String sessionId, int index) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.currentMediaItemIndex = index;
});
}
@Override
public void setTrackSelectionParameters(String sessionId, Bundle parameters)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.trackSelectionParameters =
TrackSelectionParameters.CREATOR.fromBundle(parameters);
});
}
@Override
public void notifyAvailableCommandsChanged(String sessionId, Bundle commandsBundle)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyAvailableCommandsChanged(
BundleableUtil.fromNullableBundle(
Player.Commands.CREATOR, commandsBundle, Player.Commands.EMPTY));
});
}
@Override
public void notifyTimelineChanged(String sessionId, @Player.TimelineChangeReason int reason)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyTimelineChanged(reason);
});
}
@Override
public void notifyPlaylistMetadataChanged(String sessionId) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyPlaylistMetadataChanged();
});
}
@Override
public void notifyShuffleModeEnabledChanged(String sessionId) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyShuffleModeEnabledChanged();
});
}
@Override
public void notifyRepeatModeChanged(String sessionId) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyRepeatModeChanged();
});
}
@Override
public void notifySeekBackIncrementChanged(String sessionId, long seekBackIncrementMs)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.seekBackIncrementMs = seekBackIncrementMs;
player.notifySeekBackIncrementChanged();
});
}
@Override
public void notifySeekForwardIncrementChanged(String sessionId, long seekForwardIncrementMs)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.seekForwardIncrementMs = seekForwardIncrementMs;
player.notifySeekForwardIncrementChanged();
});
}
@Override
public void notifyVideoSizeChanged(String sessionId, Bundle videoSize) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
VideoSize videoSizeObj = VideoSize.CREATOR.fromBundle(videoSize);
player.notifyVideoSizeChanged(videoSizeObj);
});
}
@Override
public boolean surfaceExists(String sessionId) throws RemoteException {
return runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
return player.surfaceExists();
});
}
@Override
public void notifyDeviceVolumeChanged(String sessionId, int volume, boolean muted)
throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.deviceVolume = volume;
player.deviceMuted = muted;
player.notifyDeviceVolumeChanged();
});
}
@Override
public void notifyCuesChanged(String sessionId, List<Bundle> cueBundleList)
throws RemoteException {
List<Cue> cues = BundleableUtil.fromBundleList(Cue.CREATOR, cueBundleList);
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.cues = cues;
player.notifyCuesChanged();
});
}
@Override
public void notifyDeviceInfoChanged(String sessionId, Bundle deviceInfoBundle)
throws RemoteException {
DeviceInfo deviceInfo = DeviceInfo.CREATOR.fromBundle(deviceInfoBundle);
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.deviceInfo = deviceInfo;
player.notifyDeviceInfoChanged();
});
}
@Override
public void notifyMediaMetadataChanged(String sessionId, Bundle mediaMetadataBundle)
throws RemoteException {
MediaMetadata mediaMetadata = MediaMetadata.CREATOR.fromBundle(mediaMetadataBundle);
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.mediaMetadata = mediaMetadata;
player.notifyMediaMetadataChanged();
});
}
@Override
public void notifyRenderedFirstFrame(String sessionId) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.notifyRenderedFirstFrame();
});
}
@Override
public void notifyMaxSeekToPreviousPositionChanged(
String sessionId, long maxSeekToPreviousPositionMs) throws RemoteException {
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.maxSeekToPreviousPositionMs = maxSeekToPreviousPositionMs;
player.notifyMaxSeekToPreviousPositionChanged();
});
}
@Override
public void notifyTrackSelectionParametersChanged(String sessionId, Bundle parametersBundle)
throws RemoteException {
TrackSelectionParameters parameters =
TrackSelectionParameters.CREATOR.fromBundle(parametersBundle);
runOnHandler(
() -> {
MediaSession session = sessionMap.get(sessionId);
MockPlayer player = (MockPlayer) session.getPlayer();
player.trackSelectionParameters = parameters;
player.notifyTrackSelectionParametersChanged();
});
}
}
}
| [
"[email protected]"
]
| |
4cb25f0f31f1f7ca350f0442340617114e91faa5 | 21eaf75965dd6a3b36a2a34e670db83b16b53444 | /lancet-weaver/src/main/java/me/ele/lancet/weaver/internal/util/TextUtils.java | f1fda18cdd5f035d7e40927c48465fe5dda03e07 | [
"Apache-2.0"
]
| permissive | TellH/lancet | 2c3c308fc7983e435f59b2c5f6f0d1c1b008a271 | 883ee14d7bfdef63a1484107447481a06cbb42e3 | refs/heads/master | 2018-11-07T12:16:02.450982 | 2018-08-28T04:46:03 | 2018-08-28T04:46:03 | 121,001,069 | 1 | 1 | null | 2018-02-10T09:10:24 | 2018-02-10T09:10:24 | null | UTF-8 | Java | false | false | 288 | java | package me.ele.lancet.weaver.internal.util;
/**
* Created by leo.zhong on 2018/5/7.
*/
public class TextUtils {
public static boolean isEmpty(CharSequence s) {
if (s == null) {
return true;
} else {
return s.length() == 0;
}
}
}
| [
"[email protected]"
]
| |
a6ccb23f368e81bb52173261c91b231a8292c0b4 | 9173e0f203d63c57a0d06498f3ea8c9c97051404 | /CRMLite/src/com/cs/crm/crmlite/Reminder.java | e1b428ab3c0b6ba9423fed731b7b0134b5938505 | []
| no_license | abhyudayc/crmlite | c8d68de61204112c250060214e272f5adabbf8ca | 926b2ca30f425ef070ac2dc850558f0282934421 | refs/heads/master | 2020-06-27T00:23:37.586489 | 2019-07-31T06:59:51 | 2019-07-31T06:59:51 | 199,797,780 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,930 | java | package com.cs.crm.crmlite;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.json.JSONArray;
import org.json.JSONObject;
@WebServlet("/reminder")
public class Reminder extends HttpServlet {
String date, time, msg, showTo;
DatabaseManager databaseManager;
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
databaseManager = (DatabaseManager) request.getSession().getAttribute("DATABASE_OBJECT");
try {
if(request.getParameter("getSet").equals("get")) {
String query = "SELECT * FROM crmlite_db.crmlite_db_rem_mst where cdb_rem_show_to = '" + request.getParameter("userId") + "' order by cdb_rem_date desc, cdb_rem_time desc;";
ArrayList<String[]> reminders = databaseManager.executeSelectQuery(query);
System.out.println(query);
JSONObject jsonObject = new JSONObject();
JSONArray jsonArray = new JSONArray();
for(int i = 0; i < reminders.size(); i++) {
jsonArray.put(Arrays.asList(reminders.get(i)));
}
jsonObject.put("reminders", jsonArray);
response.getWriter().write(jsonObject.toString());
} else if(request.getParameter("getSet").equals("set")) {
String query = "INSERT INTO crmlite_db.crmlite_db_rem_mst"
+ " (cdb_rem_date, cdb_rem_time, cdb_rem_msg, cdb_rem_show_to)"
+ " values ('"
+ request.getParameter("date") + "', '"
+ request.getParameter("time") + "', '"
+ request.getParameter("desc") + "', '"
+ request.getParameter("userId") + "');";
databaseManager.executeNonSelectDMLQuery(query);
}
} catch(Exception e) {}
}
}
| [
"[email protected]"
]
| |
d0b61c93355d6777b8982c03a2f04e62ad9de13d | b0f9e4bd69f0568ea5e7013a38a0a9d077152106 | /src/main/java/com/crud/tasks/service/MailCreatorService.java | 7c73c5b763879cb64b62f2b2261d6ae022fe95e2 | []
| no_license | JanHulanicki/KodillaM32 | 290602943181f40dcc83967ad8e1bf60247de7e3 | 755ffceb426731ef71aa50cb913b4a1628b9b499 | refs/heads/master | 2022-04-17T22:45:15.796251 | 2020-04-17T16:32:58 | 2020-04-17T16:32:58 | 255,876,625 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,033 | java | package com.crud.tasks.service;
import com.crud.tasks.config.AdminConfig;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Service;
import org.thymeleaf.TemplateEngine;
import org.thymeleaf.context.Context;
import java.util.ArrayList;
import java.util.List;
@Service
public class MailCreatorService {
@Autowired
private AdminConfig adminConfig;
@Autowired
@Qualifier("templateEngine")
private TemplateEngine templateEngine;
public String buildTrelloCardEmail(String message) {
List<String> functionality = new ArrayList<>();
functionality.add("You can manage your tasks");
functionality.add("provides connection with trello Account");
functionality.add("Application allows sending tasks to trello");
Context context = new Context();
context.setVariable("message", message);
context.setVariable("tasks_url", "http://localhost:8888/crud");
context.setVariable("button", "Visit webside");
context.setVariable("admin_name", adminConfig.getAdminName());
context.setVariable("company_name", adminConfig.getCompanyName());
context.setVariable("company_email", adminConfig.getCompanyEmail());
context.setVariable("company_phone", adminConfig.getCompanyPhone());
context.setVariable("company_goal", adminConfig.getCompanyGoal());
context.setVariable("show_button", false);
context.setVariable("is_friend", false);
context.setVariable("admin_config", adminConfig);
context.setVariable("applocation_functionality", functionality);
return templateEngine.process("mail/created-trello-card-mail", context);
}
public String trelloTasksAmountDailyEmail(String message) {
List<String> functionality = new ArrayList<>();
functionality.add("You can manage your tasks");
functionality.add("provides connection with trello Account");
functionality.add("Application allows sending tasks to trello");
Context context = new Context();
context.setVariable("message", message);
context.setVariable("tasks_url", "http://localhost:8889/crud");
context.setVariable("button", "Visit webside");
context.setVariable("admin_name", adminConfig.getAdminName());
context.setVariable("company_name", adminConfig.getCompanyName());
context.setVariable("company_email", adminConfig.getCompanyEmail());
context.setVariable("company_phone", adminConfig.getCompanyPhone());
context.setVariable("company_goal", adminConfig.getCompanyGoal());
context.setVariable("show_button", false);
context.setVariable("is_friend", false);
context.setVariable("admin_config", adminConfig);
context.setVariable("applocation_functionality", functionality);
return templateEngine.process("mail/trello-tasks-amount-in-db-daily-mail", context);
}
}
| [
"[email protected]"
]
| |
ee5d0c8a28a593b04418722c3e4911ee9bb910db | f447eae25c6f7342b5213b9d032743b931993d20 | /src/com/arpablue/physical/ULM2D.java | eceb102ae51ca3975f5fa51030a82a971123b2f5 | [
"MIT"
]
| permissive | augusto-flores-arpablue-com/arpablue_java | e524bffab740bd6257236a975f526edf8e1faf6e | e3729ed48bfd0da7e73d3cb6d6dfca14c1192d96 | refs/heads/master | 2021-07-18T10:27:21.006715 | 2020-08-20T12:37:09 | 2020-08-20T12:37:09 | 169,479,172 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,103 | java | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.arpablue.physical;
import com.arpablue.arpalib.graphics.FPoint;
/**
*
* @author Administrator
*/
public class ULM2D extends UM{
public void apply() {
setULM(getLocation(), getSpeed(), getDegree(), getSeconds());
}
/**
* Apply the Uniform Linear Motion to the position.
* @param location
* @param speed
* @param degree
*/
public static void setULM(FPoint location, Speed speed, Degree degree,double seconds){
location.x = (float) (location.x + speed.getVx(degree)*seconds);
location.y = (float) (location.y + speed.getVy(degree)*seconds);
}
/**
* Apply the Uniform Linear Motion to the position.
* @param location
* @param speed
* @param degree
*/
public static void setULMMili(FPoint location, Speed speed, Degree degree,double miliseconds){
miliseconds *= 1000.0;
location.x = (float) (location.x + speed.getVx(degree)*miliseconds);
location.y = (float) (location.y + speed.getVy(degree)*miliseconds);
}
/**
* Apply the Uniform Linear Motion to the position.
* @param location
* @param speed
* @param degree
*/
public static void setULMNano(FPoint location, Speed speed, Degree degree,double nanoseconds){
nanoseconds = nanoseconds/1000000000.0;
double inc = speed.getVx(degree)*nanoseconds;
location.x = (float) (location.x + inc);
inc = speed.getVy(degree)*nanoseconds;
location.y = (float) (location.y + inc);
}
/**
* Apply the Uniform Linear Motion to the position.
* @param location
* @param speed
* @param degree
*/
public static void setULM(FPoint location, Speed speed, Degree degree,Second seconds){
double inc = speed.getVx(degree)*seconds.getSeconds();
location.x = (float) (location.x + inc);
inc = speed.getVy(degree)*seconds.getSeconds();
location.y = (float) (location.y + inc);
}
}
| [
"[email protected]"
]
| |
2c6e2c1d84f54150a4888efe95c45857e4930ae4 | 216796424235642919bb172962ac2c7b0979ffc0 | /code/part7/solution/multipletellers/module-info.java | afb53499ac292356763e9654bec9c989d08a4293 | []
| no_license | dhwajad/uberconf2018j9 | dffced2dcc831a4a06d9667fa65e35610f6df491 | 0fee4581862e8a0ac216d70a3c87ba6fbb558736 | refs/heads/master | 2020-03-24T18:05:47.798205 | 2018-07-30T13:55:54 | 2018-07-30T13:55:54 | 142,882,527 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 272 | java | module com.agiledeveloper.multipletellers {
requires com.agiledeveloper.fortuneteller;
provides com.agiledeveloper.fortuneteller.FortuneTeller with
com.agiledeveloper.multipletellers.ReleaseTeller,
com.agiledeveloper.multipletellers.ProcessTeller;
} | [
"[email protected]"
]
| |
5a42470ff9a440e99b9452ad1733745478e3e208 | 622e11d9545ed14941cc7e1008fcb9179f1ad6af | /cryptoUser/src/main/java/com/donat/crypto/user/dto/WalletDto.java | b0c1e70cd6a3787261fc23421342194a5a00d658 | []
| no_license | udvarid/CryptoMicro | a484c7c2003f58959d79f6babd8e06aee6d3ca44 | 332725b9c3f70b0398e3a7b9e3eafba370976913 | refs/heads/main | 2023-08-15T13:10:43.350002 | 2021-10-01T06:38:06 | 2021-10-01T06:38:06 | 327,532,474 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 281 | java | package com.donat.crypto.user.dto;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class WalletDto {
private String ccy;
private Double amount;
}
| [
"[email protected]"
]
| |
4f3a77bd978efff1f0b7dbf89bd0b677518ff7fb | c38c327cb52694891d0895c8770aedf1b58579df | /src/GraphViewPackage/SmartGraphVertex.java | a4e91b98e1f06577493c50d4da25f4967cbc469b | []
| no_license | marcopereira5/webscrapper | fe5bac0f7abaee8c31aba99d5d850a22934100b5 | deb1edcf13b8e61b425a7332c8d7cc7709b9434b | refs/heads/master | 2023-03-12T01:51:26.084632 | 2021-03-02T14:08:41 | 2021-03-02T14:08:41 | 343,794,167 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,203 | java | /*
* The MIT License
*
* Copyright 2019 brunomnsilva.
*
* 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 GraphViewPackage;
import Graph.Vertex;
/**
* Abstracts the internal representation and behavior of a visualized graph vertex.
*
* @param <V> Type stored in the underlying vertex
*
* @see SmartGraphPanel
*
* @author brunomnsilva
*/
public interface SmartGraphVertex<V> extends SmartStylableNode {
/**
* Returns the underlying (stored reference) graph vertex.
*
* @return vertex reference
*
* @see Graph
*/
public Vertex<V> getUnderlyingVertex();
/**
* Sets the position of this vertex in panel coordinates.
*
* Apart from its usage in the {@link SmartGraphPanel}, this method
* should only be called when implementing {@link SmartPlacementStrategy}.
*
* @param x x-coordinate for the vertex
* @param y y-coordinate for the vertex
*/
public void setPosition(double x, double y);
/**
* Returns the circle radius used to represent this vertex.
*
* @return circle radius
*/
public double getRadius();
}
| [
"[email protected]"
]
| |
6a8e64b34f726ace2ca6cfe5a7a3aa9302933b91 | a1826c2ed9c12cfc395fb1a14c1a2e1f097155cb | /hbase-20190101/src/main/java/com/aliyun/hbase20190101/models/RestartInstanceResponseBody.java | 099c0b090036d6d3467d85caee0c18223d3d446c | [
"Apache-2.0"
]
| permissive | aliyun/alibabacloud-java-sdk | 83a6036a33c7278bca6f1bafccb0180940d58b0b | 008923f156adf2e4f4785a0419f60640273854ec | refs/heads/master | 2023-09-01T04:10:33.640756 | 2023-09-01T02:40:45 | 2023-09-01T02:40:45 | 288,968,318 | 40 | 45 | null | 2023-06-13T02:47:13 | 2020-08-20T09:51:08 | Java | UTF-8 | Java | false | false | 679 | java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.hbase20190101.models;
import com.aliyun.tea.*;
public class RestartInstanceResponseBody extends TeaModel {
@NameInMap("RequestId")
public String requestId;
public static RestartInstanceResponseBody build(java.util.Map<String, ?> map) throws Exception {
RestartInstanceResponseBody self = new RestartInstanceResponseBody();
return TeaModel.build(map, self);
}
public RestartInstanceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
| [
"[email protected]"
]
| |
8709e8d993d685f9e5322c5b337aebafd001c03f | 6b721d41b4e5917c98f6bc1873252f75cbdd789f | /org.elundstrom.e4.rcp.testbed/src/org/elundstrom/e4/rcp/testbed/internal/model/CustomModelAssembler.java | 6d34bc00f4669449d6da744d3e487ccb623fc952 | []
| no_license | Lulle74/e4ProofOfConcept | 9deca3f9ba831aa6f1d76e7f2ab76084790d65aa | bd60c3bff8ebb041b64b45e5131c1b8e3e1e99d2 | refs/heads/master | 2020-12-03T03:39:04.464191 | 2017-07-14T08:38:23 | 2017-07-14T08:38:23 | 95,756,661 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 15,914 | java | package org.elundstrom.e4.rcp.testbed.internal.model;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.inject.Inject;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IContributor;
import org.eclipse.core.runtime.IExtension;
import org.eclipse.core.runtime.IExtensionPoint;
import org.eclipse.core.runtime.IExtensionRegistry;
import org.eclipse.e4.core.contexts.ContextInjectionFactory;
import org.eclipse.e4.core.contexts.EclipseContextFactory;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.e4.core.di.annotations.Execute;
import org.eclipse.e4.core.services.contributions.IContributionFactory;
import org.eclipse.e4.core.services.log.Logger;
import org.eclipse.e4.ui.internal.workbench.E4XMIResource;
import org.eclipse.e4.ui.internal.workbench.ExtensionsSort;
import org.eclipse.e4.ui.internal.workbench.URIHelper;
import org.eclipse.e4.ui.model.application.MApplication;
import org.eclipse.e4.ui.model.application.MApplicationElement;
import org.eclipse.e4.ui.model.fragment.MModelFragment;
import org.eclipse.e4.ui.model.fragment.MModelFragments;
import org.eclipse.e4.ui.model.fragment.impl.FragmentPackageImpl;
import org.eclipse.e4.ui.model.internal.ModelUtils;
import org.eclipse.emf.common.util.Diagnostic;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.common.util.TreeIterator;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.emf.ecore.util.Diagnostician;
import org.eclipse.emf.ecore.util.EContentsEList;
import org.eclipse.emf.ecore.util.EcoreUtil;
/**
* This is basically a "rip-off" of the org.eclipse.e4.ui.internal.workbench.ModelAssembler. The thing is that we need to "clone" the pristine and thus "default"
* state of the Application+its fragments. So, I need to specify which MApplication to use in the "processModel" call. If injecting, we will have the running MApplication instead.
*
*/
@SuppressWarnings( "restriction" )
public class CustomModelAssembler
{
@Inject
private Logger logger;
private MApplication application;
@Inject
private IEclipseContext context;
@Inject
private IExtensionRegistry registry;
final private static String extensionPointID = "org.eclipse.e4.workbench.model"; //$NON-NLS-1$
// private static final String ALWAYS = "always"; //$NON-NLS-1$
private static final String INITIAL = "initial"; //$NON-NLS-1$
private static final String NOTEXISTS = "notexists"; //$NON-NLS-1$
/**
* Processes the application model. This will run pre-processors, process
* the fragments, resolve imports and run post-processors, in this order.
* <br>
* The <strong>org.eclipse.e4.workbench.model</strong> extension point will
* be used to retrieve the contributed fragments (with imports) and
* processors.<br>
* Extension points will be sorted based on the dependencies of their
* contributors.
*
* @param initial
* <code>true</code> if running from a non-persisted state
*/
public void processModel( boolean initial, MApplication appClone )
{
this.application = appClone;
IExtensionPoint extPoint = registry.getExtensionPoint( extensionPointID );
IExtension[] extensions = new ExtensionsSort().sort( extPoint.getExtensions() );
// run processors which are marked to run before fragments
runProcessors( extensions, initial, false );
// process fragments (and resolve imports)
processFragments( extensions, initial );
// run processors which are marked to run after fragments
runProcessors( extensions, initial, true );
}
/**
* Adds the {@link MApplicationElement model elements} contributed by the
* {@link IExtension extensions} to the {@link MApplication application
* model}.
*
* @param extensions
* the list of {@link IExtension} extension elements
* @param initial
* <code>true</code> if running from a non-persisted state
*
*/
private void processFragments( IExtension[] extensions, boolean initial )
{
for ( IExtension extension : extensions ) {
IConfigurationElement[] ces = extension.getConfigurationElements();
for ( IConfigurationElement ce : ces ) {
if ( "fragment".equals( ce.getName() ) && (initial || !INITIAL.equals( ce.getAttribute( "apply" ) )) ) { //$NON-NLS-1$ //$NON-NLS-2$
boolean checkExist = !initial && NOTEXISTS.equals( ce.getAttribute( "apply" ) ); //$NON-NLS-1$
processFragmentConfigurationElement( ce, checkExist );
}
}
}
}
/**
* Adds the {@link MApplicationElement model elements} contributed by the
* {@link IConfigurationElement} to the application model and resolves any
* fragment imports along the way.
*
* @param ce
* an extension point configuration element containing a
* {@link MModelFragments fragment container}
* @param checkExist
* specifies whether we should check that the application model
* doesn't already contain the elements contributed by the
* fragment before merging them
*/
private void processFragmentConfigurationElement( IConfigurationElement ce, boolean checkExist )
{
/**
* The application elements that were added by the given
* IConfigurationElement to the application model
*/
List<MApplicationElement> addedElements = new ArrayList<>();
MModelFragments fragmentsContainer = getFragmentsContainer( ce );
if ( fragmentsContainer == null ) {
return;
}
String contributorURI = URIHelper.constructPlatformURI( ce.getContributor() );
boolean evalImports = false;
for ( MModelFragment fragment : fragmentsContainer.getFragments() ) {
Diagnostic validationResult = Diagnostician.INSTANCE.validate( (EObject)fragment );
int severity = validationResult.getSeverity();
if ( severity == Diagnostic.ERROR ) {
logger.error( "Fragment from \"" + "uri.toString()" + "\" of \"" //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ ce.getContributor().getName() + "\" could not be validated and was not merged \"{0}\"", //$NON-NLS-1$
fragment.toString() );
continue;
}
List<MApplicationElement> merged = processModelFragment( fragment, contributorURI, checkExist );
if ( merged.size() > 0 ) {
evalImports = true;
addedElements.addAll( merged );
}
else {
logger.debug( "Nothing to merge for fragment \"{0}\" of \"{1}\"", ce.getAttribute( "uri" ), //$NON-NLS-1$ //$NON-NLS-2$
ce.getContributor().getName() );
}
}
if ( evalImports && fragmentsContainer.getImports().size() > 0 ) {
resolveImports( fragmentsContainer.getImports(), addedElements );
}
}
private MModelFragments getFragmentsContainer( IConfigurationElement ce )
{
E4XMIResource applicationResource = (E4XMIResource)((EObject)application).eResource();
ResourceSet resourceSet = applicationResource.getResourceSet();
IContributor contributor = ce.getContributor();
String attrURI = ce.getAttribute( "uri" ); //$NON-NLS-1$
String bundleName = contributor.getName();
if ( attrURI == null ) {
logger.warn( "Unable to find location for the model extension \"{0}\"", bundleName ); //$NON-NLS-1$
return null;
}
URI uri;
try {
// check if the attrURI is already a platform URI
if ( URIHelper.isPlatformURI( attrURI ) ) {
uri = URI.createURI( attrURI );
}
else {
String path = bundleName + '/' + attrURI;
uri = URI.createPlatformPluginURI( path, false );
}
}
catch ( RuntimeException e ) {
logger.warn( e, "Invalid location \"" + attrURI + "\" of model extension \"" + bundleName + "\"" ); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
return null;
}
Resource resource;
try {
resource = resourceSet.getResource( uri, true );
}
catch ( RuntimeException e ) {
logger.warn( e, "Unable to read model extension from \"" + uri.toString() + "\" of \"" + bundleName //$NON-NLS-1$//$NON-NLS-2$
+ "\"" ); //$NON-NLS-1$
return null;
}
EList<?> contents = resource.getContents();
if ( contents.isEmpty() ) {
return null;
}
Object extensionRoot = contents.get( 0 );
if ( !(extensionRoot instanceof MModelFragments) ) {
logger.warn( "Unable to create model extension \"{0}\"", bundleName ); //$NON-NLS-1$
return null;
}
return (MModelFragments)extensionRoot;
}
/**
* Contributes the given {@link MModelFragment} to the application model.
*
* @param fragment
* the fragment to add to the application model
* @param contributorURI
* the URI of the element that contributes this fragment
* @param checkExist
* specifies whether we should check that the application model
* doesn't already contain the elements contributed by the
* fragment before merging them
* @return a list of the {@link MApplicationElement} elements that were
* merged into the application model by the fragment
*/
public List<MApplicationElement> processModelFragment( MModelFragment fragment, String contributorURI,
boolean checkExist )
{
E4XMIResource applicationResource = (E4XMIResource)((EObject)application).eResource();
List<MApplicationElement> elements = fragment.getElements();
if ( elements.size() == 0 ) {
return new ArrayList<>();
}
for ( MApplicationElement el : elements ) {
EObject o = (EObject)el;
E4XMIResource r = (E4XMIResource)o.eResource();
if ( checkExist && applicationResource.getIDToEObjectMap().containsKey( r.getID( o ) ) ) {
continue;
}
applicationResource.setID( o, r.getID( o ) );
if ( contributorURI != null )
el.setContributorURI( contributorURI );
// Remember IDs of subitems
TreeIterator<EObject> treeIt = EcoreUtil.getAllContents( o, true );
while ( treeIt.hasNext() ) {
EObject eObj = treeIt.next();
r = (E4XMIResource)eObj.eResource();
if ( contributorURI != null && (eObj instanceof MApplicationElement) )
((MApplicationElement)eObj).setContributorURI( contributorURI );
applicationResource.setID( eObj, r.getInternalId( eObj ) );
}
}
return fragment.merge( application );
}
/**
* Executes the processors as declared in provided {@link IExtension
* extensions} array.
*
* @param extensions
* the array of {@link IExtension} extensions containing the
* processors
* @param initial
* <code>true</code> if the application is running from a
* non-persisted state
* @param afterFragments
* <code>true</code> if the processors that should be run before
* model fragments are merged are to be executed,
* <code>false</code> otherwise
*/
public void runProcessors( IExtension[] extensions, boolean initial, boolean afterFragments )
{
for ( IExtension extension : extensions ) {
IConfigurationElement[] ces = extension.getConfigurationElements();
for ( IConfigurationElement ce : ces ) {
boolean parseBoolean = Boolean.parseBoolean( ce.getAttribute( "beforefragment" ) ); //$NON-NLS-1$
if ( "processor".equals( ce.getName() ) && afterFragments != parseBoolean ) { //$NON-NLS-1$
if ( initial || !INITIAL.equals( ce.getAttribute( "apply" ) ) ) { //$NON-NLS-1$
runProcessor( ce );
}
}
}
}
}
private void runProcessor( IConfigurationElement ce )
{
IEclipseContext localContext = EclipseContextFactory.create();
IContributionFactory factory = context.get( IContributionFactory.class );
for ( IConfigurationElement ceEl : ce.getChildren( "element" ) ) { //$NON-NLS-1$
String id = ceEl.getAttribute( "id" ); //$NON-NLS-1$
if ( id == null ) {
logger.warn( "No element id given" ); //$NON-NLS-1$
continue;
}
String key = ceEl.getAttribute( "contextKey" ); //$NON-NLS-1$
if ( key == null ) {
key = id;
}
MApplicationElement el = ModelUtils.findElementById( application, id );
if ( el == null ) {
logger.warn( "Could not find element with id '" + id + "'" ); //$NON-NLS-1$ //$NON-NLS-2$
}
localContext.set( key, el );
}
try {
Object o = factory.create( "bundleclass://" + ce.getContributor().getName() + "/" //$NON-NLS-1$//$NON-NLS-2$
+ ce.getAttribute( "class" ), //$NON-NLS-1$
context, localContext );
if ( o == null ) {
logger.warn( "Unable to create processor " + ce.getAttribute( "class" ) + " from " //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ ce.getContributor().getName() );
}
else {
ContextInjectionFactory.invoke( o, Execute.class, context, localContext );
}
}
catch ( Exception e ) {
logger.warn( e, "Could not run processor" ); //$NON-NLS-1$
}
}
/**
* Resolves the given list of imports used by the specified
* <code>addedElements</code> in the application model.
*
* @param imports
* the list of elements that were imported by fragments and
* should be resolved in the application model
* @param addedElements
* the list of elements contributed by the fragments to the
* application model
*/
public void resolveImports( List<MApplicationElement> imports, List<MApplicationElement> addedElements )
{
if ( imports.isEmpty() )
return;
// now that we have all components loaded, resolve imports
Map<MApplicationElement, MApplicationElement> importMaps = new HashMap<>();
for ( MApplicationElement importedElement : imports ) {
MApplicationElement realElement = ModelUtils.findElementById( application, importedElement.getElementId() );
if ( realElement == null ) {
logger.warn( "Could not resolve an import element for '" + realElement + "'" ); //$NON-NLS-1$ //$NON-NLS-2$
}
importMaps.put( importedElement, realElement );
}
TreeIterator<EObject> it = EcoreUtil.getAllContents( addedElements );
List<Runnable> commands = new ArrayList<>();
// TODO Probably use EcoreUtil.UsageCrossReferencer
while ( it.hasNext() ) {
EObject o = it.next();
EContentsEList.FeatureIterator<EObject> featureIterator = (EContentsEList.FeatureIterator<EObject>)o.eCrossReferences().iterator();
while ( featureIterator.hasNext() ) {
EObject importObject = featureIterator.next();
if ( importObject.eContainmentFeature() == FragmentPackageImpl.Literals.MODEL_FRAGMENTS__IMPORTS ) {
EStructuralFeature feature = featureIterator.feature();
MApplicationElement el = importMaps.get( importObject );
if ( el == null ) {
logger.warn( "Could not resolve import for " + el ); //$NON-NLS-1$
}
final EObject interalTarget = o;
final EStructuralFeature internalFeature = feature;
final MApplicationElement internalElment = el;
final EObject internalImportObject = importObject;
commands.add( new Runnable() {
@Override
public void run()
{
if ( internalFeature.isMany() ) {
logger.error( "Replacing" ); //$NON-NLS-1$
@SuppressWarnings( "unchecked" )
List<Object> l = (List<Object>)interalTarget.eGet( internalFeature );
int index = l.indexOf( internalImportObject );
if ( index >= 0 ) {
l.set( index, internalElment );
}
}
else {
interalTarget.eSet( internalFeature, internalElment );
}
}
} );
}
}
}
for ( Runnable cmd : commands ) {
cmd.run();
}
}
}
| [
"[email protected]"
]
| |
04412e158f5942aa53014a8f89d0c4e9c389fc5d | 75dd5d723dd23c9ae4cd26aa62841eef0c668747 | /Data Structure/LINKED LIST/QueueLinkedList.java | 21f5a6cd296caf860fd7191054a315b89fe70ce6 | []
| no_license | LuannaLeonel/Algoritmos | 5cfd6368e19173497af5c203d1bb330bb9cb65bd | d39cdf3dd7fe5e48ef39af7ae72104c60d036a8e | refs/heads/master | 2023-02-08T08:40:04.328714 | 2020-12-30T00:02:04 | 2020-12-30T00:02:04 | 295,567,655 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,891 | java | import java.util.Scanner;
class QueueLinkedList {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
Fila fila = new Fila();
boolean value = true;
String[] entrada;
String operacao = "";
while (value) {
entrada = scan.nextLine().split(" ");
operacao = entrada[0];
switch(operacao){
case "end":
value = false;
break;
case "add":
int e = Integer.parseInt(entrada[1]);
fila.enqueue(e);
break;
case"remove":
fila.dequeue();
break;
case "element":
fila.element();
break;
case "print":
System.out.println(fila.print());
break;
case "search":
int elemento = Integer.parseInt(entrada[1]);
System.out.println(fila.search(elemento));
break;
}
}
scan.close();
}
}
class Fila{
LinkedList list;
public Fila() {
list = new LinkedList();
}
public boolean isEmpty() {
return (this.list.isEmpty());
}
public int search(int element){
return list.search(element);
}
public void enqueue(int element){
this.list.insertLast(element);
}
public void element(){
if(!isEmpty()){
System.out.println(this.list.getLast());
} else {
System.out.println("empty");
}
}
public void dequeue(){
if(!isEmpty()){
list.removeFirst();
} else {
System.out.println("empty");
}
}
public String print(){
if (this.isEmpty()){
return "empty";
}
return list.toString();
}
}
class LinkedList {
Node head;
int size;
LinkedList(){
head = null;
size = 0;
}
public boolean isEmpty(){
return this.head == null;
}
public void insertLast(int e){
if (this.isEmpty()){
head = new Node(e);
} else {
recursiveLast(this.head, e);
size++;
}
}
public int getLast() {
return recursiveTail(this.head);
}
private int recursiveTail(Node current){
if(current.next == null){
return current.getValue();
} else {
return recursiveTail(current.next);
}
}
private void recursiveLast(Node current,int e){
if(current.next == null){
Node newNode = new Node(e);
current.next = newNode;
newNode.previous = current;
} else recursiveLast(current.next,e);
}
public void removeFirst(){
if(!this.isEmpty()){
if(this.head.next == null) {
this.head = null;
} else {
this.head = (this.head.next);
this.head.previous = null;
}
}
}
public int search(int element){
return recursiveSearch(this.head, element);
}
private int recursiveSearch(Node current, int e){
if (!this.contains(current, e)){
return -1;
}
if(current.getValue() == e){
return 0;
} else {
return 1 + recursiveSearch(current.next, e);
}
}
private boolean contains(Node current,int e){
if (current == null) return false;
if(current.getValue() == e){
return true;
} else {
return contains(current.next, e);
}
}
public String toString(){
return toStringRecursivo(this.head).trim();
}
private String toStringRecursivo(Node current){
String res = "";
if (!this.isEmpty() && current != null){
if (current.next == null){
res += String.valueOf(current.getValue());
} else {
res += String.valueOf(current.getValue()) + " ";
res += toStringRecursivo(current.next);
}
}
return res;
}
}
class Node{
Node next;
Node previous;
private Integer value;
public Node(Integer v){
this.next = null;
this.previous = null;
this.value = v;
}
public Integer getValue() {
return value;
}
public void setValue(Integer value) {
this.value = value;
}
public void setPrevious(Node previous) {
this.previous = previous;
}
public void setNext(Node next) {
this.next = next;
}
} | [
"[email protected]"
]
| |
8defb8bfd74708e009a68f2a853bb5d1cf8c84a6 | 95f7f1c808bfd38ae2e567b3b93058f3271a93f1 | /src/org/telosys/tools/eclipse/plugin/config/view/DownloadTaskWithProgress.java | e28277172e40f04f88b7df477f09d0d280ea4290 | []
| no_license | telosys-eclipse-plugin/telosys-tools-plugin | 1d117fadbf41ad8193f8adeaf468155027a4ec1a | e8f90dc26aa5855cf483b396788adf9e9d5adbad | refs/heads/master | 2020-04-06T06:57:21.921417 | 2017-12-12T15:16:55 | 2017-12-12T15:16:55 | 41,675,192 | 9 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,562 | java | package org.telosys.tools.eclipse.plugin.config.view;
import java.io.File;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.swt.widgets.Text;
import org.telosys.tools.commons.bundles.BundleStatus;
import org.telosys.tools.commons.bundles.BundlesManager;
import org.telosys.tools.commons.cfg.TelosysToolsCfg;
import org.telosys.tools.eclipse.plugin.commons.EclipseWksUtil;
import org.telosys.tools.eclipse.plugin.commons.TelosysPluginException;
/**
* Eclipse runnable task with a progress bar
*
* @author L. Guerin
*
*/
public class DownloadTaskWithProgress implements IRunnableWithProgress
{
// private final IProject project ;
private final String user ;
private final String[] repoNames ;
// private final String sDownloadFolder ;
// private final String sBundlesFolder ;
// private final String sGitHubUrlPattern ;
private final Text loggerTextArea ;
private final boolean bInstall ;
private final TelosysToolsCfg telosysToolsCfg ;
private int _result = 0 ;
//--------------------------------------------------------------------------------------------------
public DownloadTaskWithProgress(// IProject project,
TelosysToolsCfg telosysToolsCfg,
String user,
String[] repoNames,
// String sDownloadFolder,
// String sGitHubUrlPattern,
boolean bInstall,
// String sBundlesFolder,
Text loggerTextArea
) throws TelosysPluginException
{
super();
this.telosysToolsCfg = telosysToolsCfg ;
// this.project = project ;
this.user = user ;
this.repoNames = repoNames ;
// this.sDownloadFolder = sDownloadFolder ;
// this.sGitHubUrlPattern = sGitHubUrlPattern ;
this.bInstall = bInstall ;
// this.sBundlesFolder = sBundlesFolder ;
this.loggerTextArea = loggerTextArea ;
}
//--------------------------------------------------------------------------------------------------
/* (non-Javadoc)
* @see org.eclipse.jface.operation.IRunnableWithProgress#run(org.eclipse.core.runtime.IProgressMonitor)
*/
public void run(IProgressMonitor progressMonitor) throws InvocationTargetException, InterruptedException
{
int count = 0 ;
if ( repoNames.length > 0 ) {
BundlesManager bm = new BundlesManager( this.telosysToolsCfg );
// count = total number of work units into which the main task is been subdivided
int totalWorkTasks = repoNames.length ;
progressMonitor.beginTask("Download in progress", totalWorkTasks + 1);
progressMonitor.worked(1);
loggerTextArea.setText("");
for ( String githubRepoName : repoNames ) {
count++;
progressMonitor.subTask("Download #" + count + " '" + githubRepoName + "'");
BundleStatus status ;
if ( bInstall ) {
loggerTextArea.append("-> #" + count + " Download & Install '" + githubRepoName + "' ... \n");
status = bm.downloadAndInstallBundle(this.user, githubRepoName);
}
else {
loggerTextArea.append("-> #" + count + " Download '" + githubRepoName + "' ... \n");
status = bm.downloadBundle(this.user, githubRepoName);
}
if ( status.isDone() ) {
loggerTextArea.append("OK, done. \n");
}
else {
loggerTextArea.append(status.getMessage() + "\n");
if ( status.getException() != null ) {
loggerTextArea.append("Exception : " + status.getException() + "\n" );
}
}
EclipseWksUtil.refresh( new File(bm.getDownloadsFolderFullPath()) );
if ( bInstall ) {
// EclipseWksUtil.refresh( new File(bm.getBundlesFolderFullPath()) );
EclipseWksUtil.refresh( new File(telosysToolsCfg.getTemplatesFolderAbsolutePath()) ); // v 3.0.0
}
progressMonitor.worked(1); // One unit done (not cumulative)
loggerTextArea.append("\n");
}
}
//--- Notifies that the work is done; that is, either the main task is completed or the user canceled it.
progressMonitor.done();
if (progressMonitor.isCanceled()) // Returns whether cancellation of current operation has been requested
{
throw new InterruptedException("The download was cancelled");
}
_result = count ;
}
//--------------------------------------------------------------------------------------------------
/**
* Returns the operation result : number of files generated
* @return
*/
public int getResult()
{
return _result ;
}
}
| [
"[email protected]"
]
| |
94f5873d618d91b6bff697f0330b2b356331412f | c31140a66db40fd1cd0df4ebeccbf187c11aee66 | /java8/src/java8/Jungol1669.java | 8b62fc07b8f0eefde52eb7ece36a05c5c8eee4ab | []
| no_license | puzzledPublic/firstRepository | 4a00e51f3748e389277c6409d19e011e33bb4cdc | 8eb4ccf6f2fa45bd10e5ecbf7f3461c07db44c4e | refs/heads/master | 2021-05-24T04:50:34.973158 | 2020-08-30T13:18:54 | 2020-08-30T13:18:54 | 43,477,374 | 1 | 0 | null | 2016-06-13T07:15:59 | 2015-10-01T03:54:41 | Java | UTF-8 | Java | false | false | 3,288 | java | package java8;
import java.util.Scanner;
/*소시지 공장
영훈이가 소시지 공장에 견학을 갔다. 그 소시지공장에서는 하나의 기계가 길이와 너비가 다양한 소시지를 만들어 내고 있었다.
유심히 살펴보니 그 기계는 현재 만들고 있는 소시지의 길이와 너비가 바로 전에 만들었던 소시지의 길이, 너비보다 크거나 같아야만 기계가 쉬지 않고 작동하고 있었다.
만약 현재 만들고 있는 소시지의 길이 또는 너비가 바로 전에 만든 것보다 작다면, 기계가 준비 작업을 하는데 1분이 소요된다는 것을 알았다.
영훈이는 주문 받은 소시지의 길이와 너비를 보고 어떤 소시지부터 만들어 나가는 것이 기계의 준비 작업에 소요되는 시간을 줄일 수 있을지 고민하고 있다.
주문받은 소시지들을 만드는데 기계가 준비 작업에 소요한 최소의 시간을 구하는 프로그램을 작성하시오.
단, 첫 소시지를 만들 때는 기계의 준비작업 시간이 1분 소요된다.
첫 줄에는 주문받은 소시지의 개수 N(1≤N≤5,000)이다.
둘째 줄에는 소시지의 길이 SL과 소시지의 너비 SW가 N개의 쌍으로 나열된다.
*/
public class Jungol1669 {
public static void main(String[] args){
int sausageAmount;
Scanner input = new Scanner(System.in);
//소시지 개수 입력
sausageAmount = input.nextInt();
int sausageLength[] = new int[sausageAmount];
int sausageWidth[] = new int[sausageAmount];
boolean visited[] = new boolean[sausageAmount];
//소시지 길이, 너비 입력
for(int i = 0 ; i < sausageAmount ; i++){
sausageLength[i] = input.nextInt();
sausageWidth[i] = input.nextInt();
}
//길이로 정렬
sort(sausageLength, sausageWidth);
//준비시간
int count = 0;
//전에 선택한 소시지 너비(이것보다 커야 준비시간을 줄일 수 있다)
int prevWidth;
//소시지 탐색
for(int j = 0 ; j < sausageLength.length; j++){
//이미 선택 된 소시지면 다음으로 넘어간다
if(visited[j] == true){
continue;
}
//아니라면 소시지를 선택하고 준비시간(count)가 증가
prevWidth = j;
count++;
//선택한 소시지(j) 다음 소시지들(i)이 준비시간 없이 만들 수 있는 것을 체크
for(int i = j ; i < sausageWidth.length; i++){
if(visited[i] == false && sausageWidth[i] >= sausageWidth[prevWidth]){//sausageWidth[j]){
//다음 소시지 너비와 비교 하기 위해 바로 전 소시지 너비를 저장
prevWidth = i;
visited[i] = true;
}
}
}
System.out.println(count);
}
//길이로 정렬
private static void sort(int[] arr, int [] arr2){
int temp = -1, temp2 = -1;
for(int i = 0 ; i < arr.length - 1; i++){
for(int j = i+1; j < arr.length; j++){
if(arr[i] > arr[j]){
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
temp2 = arr2[i];
arr2[i] = arr2[j];
arr2[j] = temp2;
}
}
}/*
for(int i : arr){
System.out.print(i +" ");
}
System.out.println();
for(int i : arr2){
System.out.print(i +" ");
}*/
}
}
| [
"[email protected]"
]
| |
842d4e2071e4bc30f76969a324604331d34a4868 | 4df7f712e8852d73d2f7ed20282f4b90dc163411 | /src/main/java/tutorial/core/repositories/BlogEntryRepo.java | 7639d9b917ee83224b389b9bac4ee826247fb32f | []
| no_license | Rinson81/spangular | 36de340f4c774d5efd1edeba8b5719c16cbc0a82 | 13bf71e47799d04986f7b94220b23bde5fa6160f | refs/heads/master | 2021-08-31T00:33:44.992857 | 2017-12-20T00:39:07 | 2017-12-20T00:39:07 | 114,824,758 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 780 | java | package tutorial.core.repositories;
import tutorial.core.entities.BlogEntry;
import java.util.List;
public interface BlogEntryRepo {
public BlogEntry findBlogEntry(Long id); // Returns the BlogEntry or null if it can't be found
public BlogEntry deleteBlogEntry(Long id); // Deletes the found BlogEntry or returns null if it can't be found
/**
* @param id the id of the BlogEntry to updateBlogEntry
* @param data the BlogEntry containing the data to be used for the updateBlogEntry
* @return the updated BlogEntry or null if the BlogEntry with the id cannot be found
*/
public BlogEntry updateBlogEntry(Long id, BlogEntry data);
public BlogEntry createBlogEntry(BlogEntry data);
public List<BlogEntry> findByBlogId(Long blogId);
}
| [
"[email protected]"
]
| |
42e0fea83756adca036bfd5cd2dbdd0ae4a07518 | 6c28eca2c33a275fb0008a51b8e5776a82f5904d | /Code/Hierarchy/src/net/unconventionalthinking/hierarchy/grammar/node/AAnnotationTypeBody.java | 6ebe82e541a18c4724fe7a393b98169ba59990f6 | []
| no_license | UnconventionalThinking/hierarchy | 17dc9e224595f13702b9763829e12fbce2c48cfe | de8590a29c19202c01d1a6e62ca92e91aa9fc6ab | refs/heads/master | 2021-01-19T21:28:29.793371 | 2014-12-19T03:16:24 | 2014-12-19T03:16:24 | 13,262,291 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 5,238 | java | /* Copyright 2012, 2013 Unconventional Thinking
*
* This file is part of Hierarchy.
*
* Hierarchy 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.
*
* Hierarchy 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 Hierarchy.
* If not, see <http://www.gnu.org/licenses/>.
*/
/* This file was generated by SableCC (http://www.sablecc.org/). */
package net.unconventionalthinking.hierarchy.grammar.node;
import java.util.*;
import net.unconventionalthinking.hierarchy.grammar.analysis.*;
@SuppressWarnings("nls")
public final class AAnnotationTypeBody extends PAnnotationTypeBody
{
private TLBrc _lBrc_;
private final LinkedList<PAnnotationTypeElementDeclaration> _annotationTypeElementDeclarations_ = new LinkedList<PAnnotationTypeElementDeclaration>();
private TRBrc _rBrc_;
public AAnnotationTypeBody()
{
// Constructor
}
public AAnnotationTypeBody(
@SuppressWarnings("hiding") TLBrc _lBrc_,
@SuppressWarnings("hiding") List<PAnnotationTypeElementDeclaration> _annotationTypeElementDeclarations_,
@SuppressWarnings("hiding") TRBrc _rBrc_)
{
// Constructor
setLBrc(_lBrc_);
setAnnotationTypeElementDeclarations(_annotationTypeElementDeclarations_);
setRBrc(_rBrc_);
}
@Override
public Object clone()
{
return new AAnnotationTypeBody(
cloneNode(this._lBrc_),
cloneList(this._annotationTypeElementDeclarations_),
cloneNode(this._rBrc_));
}
public void apply(Switch sw)
{
((Analysis) sw).caseAAnnotationTypeBody(this);
}
public TLBrc getLBrc()
{
return this._lBrc_;
}
public void setLBrc(TLBrc node)
{
if(this._lBrc_ != null)
{
this._lBrc_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._lBrc_ = node;
}
public LinkedList<PAnnotationTypeElementDeclaration> getAnnotationTypeElementDeclarations()
{
return this._annotationTypeElementDeclarations_;
}
public void setAnnotationTypeElementDeclarations(List<PAnnotationTypeElementDeclaration> list)
{
this._annotationTypeElementDeclarations_.clear();
this._annotationTypeElementDeclarations_.addAll(list);
for(PAnnotationTypeElementDeclaration e : list)
{
if(e.parent() != null)
{
e.parent().removeChild(e);
}
e.parent(this);
}
}
public TRBrc getRBrc()
{
return this._rBrc_;
}
public void setRBrc(TRBrc node)
{
if(this._rBrc_ != null)
{
this._rBrc_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._rBrc_ = node;
}
@Override
public String toString()
{
return ""
+ toString(this._lBrc_)
+ toString(this._annotationTypeElementDeclarations_)
+ toString(this._rBrc_);
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
if(this._lBrc_ == child)
{
this._lBrc_ = null;
return;
}
if(this._annotationTypeElementDeclarations_.remove(child))
{
return;
}
if(this._rBrc_ == child)
{
this._rBrc_ = null;
return;
}
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
if(this._lBrc_ == oldChild)
{
setLBrc((TLBrc) newChild);
return;
}
for(ListIterator<PAnnotationTypeElementDeclaration> i = this._annotationTypeElementDeclarations_.listIterator(); i.hasNext();)
{
if(i.next() == oldChild)
{
if(newChild != null)
{
i.set((PAnnotationTypeElementDeclaration) newChild);
newChild.parent(this);
oldChild.parent(null);
return;
}
i.remove();
oldChild.parent(null);
return;
}
}
if(this._rBrc_ == oldChild)
{
setRBrc((TRBrc) newChild);
return;
}
throw new RuntimeException("Not a child.");
}
}
| [
"[email protected]"
]
| |
7aa42097aab93f844ec089177f5be5856387bca4 | a586433d0d67d89d48096f9908b997acb9ab37c6 | /links-slackbot/src/main/java/juja/microservices/links/slackbot/repository/LinksRepository.java | 6ff5ec9d8aeb20984f16468aa9cab1e65f3b8081 | []
| no_license | Benkoff/juja-platform | e6b0669de1190fabaee4c2a861dec00714befeae | f7821b8988d6c36c91d31ae7a36f8d49985c66ff | refs/heads/master | 2021-05-11T10:09:35.781835 | 2017-12-09T10:54:32 | 2017-12-09T10:54:32 | 113,698,890 | 0 | 0 | null | 2017-12-09T20:25:10 | 2017-12-09T20:25:09 | null | UTF-8 | Java | false | false | 125 | java | package juja.microservices.links.slackbot.repository;
public interface LinksRepository {
String addLink(String url);
} | [
"[email protected]"
]
| |
45f3b4547d3f8f9260efba9c7de7518af4f11ede | 60e2f29340224117231a1f554cf179ff92b3b844 | /src/main/java/com/example/rohit/zaika_e_gwalior/Adapterworship.java | c44b4e2b565370a616d6ba14a4abce382fba952b | []
| no_license | rshivam08/Zaika-E-Gwalior | ca6df9816878ce5d5400c917e0d5d52fdcd71329 | 055ebc30a24bd7e85deb6785c630c19cffdec5f9 | refs/heads/master | 2020-06-30T17:15:53.434944 | 2019-12-06T10:33:59 | 2019-12-06T10:33:59 | 200,894,316 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,794 | java | package com.iiitm.android.zaika_e_gwalior;
/**
* Created by rohit on 18/9/17.
*/
public class Adapterworship {
int image;
String name1,name2,name3,name4,name5,name6,name7,name8;
Adapterworship(int image,String name1,String name2,String name3,String name4,String name5,String name6,String name7,String name8)
{
this.image=image;
this.name1=name1;
this.name2=name2;
this.name3=name3;
this.name4=name4;
this.name5=name5;
this.name6=name6;
this.name7=name7;
this.name8=name8;
}
public int getImage() {
return image;
}
public void setImage(int image) {
this.image = image;
}
public String getName1() {
return name1;
}
public void setName1(String name1) {
this.name1 = name1;
}
public String getName2() {
return name2;
}
public void setName2(String name2) {
this.name2 = name2;
}
public String getName3() {
return name3;
}
public void setName3(String name3) {
this.name3 = name3;
}
public String getName4() {
return name4;
}
public void setName4(String name4) {
this.name4 = name4;
}
public String getName5() {
return name5;
}
public void setName5(String name5) {
this.name5 = name5;
}
public String getName6() {
return name6;
}
public void setName6(String name6) {
this.name6 = name6;
}
public String getName7() {
return name7;
}
public void setName7(String name7) {
this.name7 = name7;
}
public String getName8() {
return name8;
}
public void setName8(String name8) {
this.name8 = name8;
}
}
| [
"[email protected]"
]
| |
c022da1e0bde9ae2be813b6e00450d6471abbf89 | da2c713a3bc120d3d05767f478b520b3e8709dc6 | /PR023/app/src/androidTest/java/joshu/pr023/ApplicationTest.java | cca75344516a8e93307aacda25ac1280810052b1 | []
| no_license | joshua440/android | 4c26a6583b3527cb6cdd4ddfa3a1abea036427dd | 8a7d3ece7f93322ba64724fb037f6617f61ffdc3 | refs/heads/master | 2021-01-10T09:20:23.498691 | 2016-01-13T12:27:24 | 2016-01-13T12:27:24 | 43,419,245 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 342 | java | package joshu.pr023;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
} | [
"[email protected]"
]
| |
712e944e0e6949a4a903a5dc33ca5e60ff47b7d7 | 3b0eeff35bd9375f88f543bbd6484e3f1cfcbfa0 | /src/main/java/com/gildedrose/storeitem/StoreItem.java | 048857b75bb2facd21c785c3ec7519c54466eb29 | []
| no_license | nchandlersmith/gilded-rose | 453b60b844e982b9f3358bf13c8ed555a074f55b | 9f1cedc823f46285f2797109d2bb50b48bb1ecb1 | refs/heads/main | 2023-02-08T01:14:17.710811 | 2020-12-10T03:31:21 | 2021-01-04T21:47:35 | 310,968,298 | 0 | 0 | null | 2021-01-04T21:47:36 | 2020-11-08T02:09:56 | Java | UTF-8 | Java | false | false | 4,084 | java | package com.gildedrose.storeitem;
import com.gildedrose.Item;
import com.gildedrose.rule.calculatequality.RuleCalculateQuality;
import com.gildedrose.rule.calculatesellin.RuleCalculateSellIn;
import com.gildedrose.rule.qualitybounds.RuleQualityBounds;
import java.util.Objects;
public class StoreItem extends Item {
private int computedSellIn;
private int computedQuality;
private RuleCalculateQuality ruleCalculateQuality;
private RuleQualityBounds ruleQualityBounds;
private RuleCalculateSellIn ruleCalculateSellIn;
protected StoreItem(String name, int sellIn, int quality) {
super(name, sellIn, quality);
computedSellIn = sellIn;
computedQuality = quality;
}
public void updateQuality(){
decrementSellIn();
calculateQuality();
enforceQualityBounds();
updatePublicFields();
}
void decrementSellIn() {
computedSellIn = ruleCalculateSellIn.run(computedSellIn);
}
void calculateQuality() {
computedQuality = ruleCalculateQuality.run(computedSellIn, computedQuality);
}
void enforceQualityBounds() {
computedQuality = ruleQualityBounds.run(computedQuality);
}
private void updatePublicFields() {
sellIn = computedSellIn;
quality = computedQuality;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
StoreItem storeItem = (StoreItem) o;
return name.equals(storeItem.name) &&
computedSellIn == storeItem.computedSellIn &&
computedQuality == storeItem.computedQuality &&
ruleCalculateQuality.equals(storeItem.ruleCalculateQuality) &&
ruleQualityBounds.equals(storeItem.ruleQualityBounds) &&
ruleCalculateSellIn.equals(storeItem.ruleCalculateSellIn);
}
@Override
public int hashCode() {
return Objects.hash(name, computedSellIn, computedQuality, ruleCalculateQuality, ruleQualityBounds, ruleCalculateSellIn);
}
public static class Builder {
private String name;
private int sellIn;
private int quality;
private int computedSellIn;
private int computedQuality;
private RuleCalculateQuality calculateQualityRuleCalculateQuality;
private RuleQualityBounds ruleQualityBounds;
private RuleCalculateSellIn ruleCalculateSellIn;
public Builder() {
// blank intentionally
}
public Builder name(String name) {
this.name = name;
return this;
}
public Builder sellIn(int sellIn) {
this.sellIn = sellIn;
this.computedSellIn = sellIn;
return this;
}
public Builder quality(int quality) {
this.quality = quality;
this.computedQuality = quality;
return this;
}
public Builder ruleCalculateQuality(RuleCalculateQuality calculateQualityRuleCalculateQuality) {
this.calculateQualityRuleCalculateQuality = calculateQualityRuleCalculateQuality;
return this;
}
public Builder ruleQualityBounds(RuleQualityBounds ruleQualityBounds) {
this.ruleQualityBounds = ruleQualityBounds;
return this;
}
public Builder ruleCalculateSellin(RuleCalculateSellIn ruleCalculateSellIn) {
this.ruleCalculateSellIn = ruleCalculateSellIn;
return this;
}
public StoreItem build() {
StoreItem storeItem = new StoreItem(name, sellIn, quality);
storeItem.computedQuality = this.computedQuality;
storeItem.computedSellIn = this.computedSellIn;
storeItem.ruleCalculateQuality = this.calculateQualityRuleCalculateQuality;
storeItem.ruleQualityBounds = this.ruleQualityBounds;
storeItem.ruleCalculateSellIn = this.ruleCalculateSellIn;
return storeItem;
}
}
}
| [
"[email protected]"
]
| |
a7c0cc44209c3640d2dfb13b24064404e0679d7c | e537ba086c937c29345979c6bd9b087e02bc0432 | /HMS/src/sample/DatabaseDeletion.java | 83d953d508448010501785907b4ee096057d243e | []
| no_license | imranzaheer612/OOP-project | 4ba8cc6023a8bbd5f5c38c09403968ae9455ad5e | 592c285f787634b70108be1d6ec1de92745fb44b | refs/heads/master | 2021-03-29T11:40:47.896212 | 2020-06-15T17:04:04 | 2020-06-15T17:04:04 | 247,950,999 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,963 | java | package sample;
import javafx.scene.control.TextField;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.time.temporal.ChronoUnit;
class DatabaseDeletion {
Connection connection = DatabaseConnection.connector();
/*
* this will move the room which
* user want to delete to the deleted Rooms table
* then it will be deleted
* the main logic of moving the data to an other table is that we also have to make a table
* that will have the data og the deleted users
* */
public void movingRecordToOtherTable(String targetTable, String selectedTable, String targetField, TextField entryText){
PreparedStatement stmt;
String query = "INSERT INTO " + targetTable +
" SELECT * " +
"FROM "+ selectedTable + " WHERE " + targetField + " = "+ entryText.getText();
try {
stmt = connection.prepareStatement(query);
stmt.executeUpdate();
stmt.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
//Over loading the method
public void movingRecordToOtherTable(String targetTable, String selectedTable, String targetField, String targetFieldValue){
PreparedStatement stmt;
String query = "INSERT INTO " + targetTable +
" SELECT * " +
"FROM "+ selectedTable + " WHERE " + targetField + " = "+ targetFieldValue;
System.out.println("target field value : " + targetFieldValue);
try {
stmt = connection.prepareStatement(query);
stmt.executeUpdate();
stmt.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
/*
* after the room is successfully moved from one database table
* --> to an other database table we can simple remove the record from
* the previous table
* */
public void deletingRecord(String tableName, String targetField, TextField entryText){
PreparedStatement stmt;
String query = "DELETE FROM " + tableName + " WHERE " + targetField + " = " + entryText.getText();
try {
stmt = connection.prepareStatement(query);
stmt.executeUpdate();
stmt.close();
}
catch (SQLException e) {
e.printStackTrace();
}
}
//over Loading
public void deletingRecord(String tableName, String targetField, String targetFieldValue){
PreparedStatement stmt;
String query = "DELETE FROM " + tableName + " WHERE " + targetField + " = " + targetFieldValue;
try {
stmt = connection.prepareStatement(query);
stmt.executeUpdate();
stmt.close();
}
catch (SQLException e) {
e.printStackTrace();
}
}
}
| [
"[email protected]"
]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.