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
d100f06b20b86e13dafd46049e7eb319c0ae0bb5
9a3f2a9d4dfaf534356533f6c633baacc2aa2d69
/Exercise Files/02_07/start/test/ExecuteJavascript.java
fcd9dbc2a62a1c359914d93a5ede591377a239dd
[]
no_license
VJS007/formy-selenium-automation
0c17f776a9844268ad0a7b2115cecfc93eccb81d
5106f47f1a058d192ae3442924735d0310c0428f
refs/heads/master
2021-07-06T03:23:17.821282
2019-06-05T00:35:51
2019-06-05T00:35:51
190,298,970
0
0
null
null
null
null
UTF-8
Java
false
false
826
java
import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.By; public class ExecuteJavascript { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "c:\\Selenium\\chromedriver.exe"); WebDriver driver = new ChromeDriver(); driver.get("https://formy-project.herokuapp.com/modal"); WebElement modalbutton = driver.findElement(By.id("modal-button")); modalbutton.click(); WebElement closebutton = driver.findElement(By.id("close-button")); JavascriptExecutor js = (JavascriptExecutor)driver; js.executeScript("arguments[0].click();", closebutton); driver.quit(); } }
[ "41136208+VJS007@users.noreply.github.com" ]
41136208+VJS007@users.noreply.github.com
e3719ee67cf12b88276e8b3af1a19ce50c63b17c
2f190f9a4bed8bd4c9be92af7b739baa65a6da4e
/app/src/main/java/com/alphalearning/myapplication1/TVAdapter.java
ca3cbfecfb55a9c098e6ae216d16e8eb7b28266f
[]
no_license
projectoneuniverse/MyApplication
7b680a30150a672ce8939f1e7899cf06a0ada6b1
7d0a65f5ee610f8a467aefbc846edc21d69b68f9
refs/heads/master
2020-12-01T15:20:53.997695
2019-12-28T23:30:00
2019-12-28T23:30:00
230,678,752
0
0
null
null
null
null
UTF-8
Java
false
false
1,947
java
package com.alphalearning.myapplication1; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.recyclerview.widget.RecyclerView; import com.alphalearning.myapplication1.model.ResultsItemTV; import com.bumptech.glide.Glide; import java.util.ArrayList; import java.util.List; public class TVAdapter extends RecyclerView.Adapter<TVAdapter.MyViewHolder> { private Context context; private List<ResultsItemTV> adapterMovies = new ArrayList<>(); public TVAdapter(Context context, List<ResultsItemTV> adapterMovies) { this.context = context; this.adapterMovies = adapterMovies; } @NonNull @Override public MyViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int i) { View itemView = LayoutInflater.from(context).inflate(R.layout.item_movies, viewGroup, false); return new MyViewHolder(itemView); } @Override public void onBindViewHolder(@NonNull MyViewHolder myViewHolder, int i) { myViewHolder.tvJudul.setText(adapterMovies.get(i).getName()); myViewHolder.tvJudul1.setText(adapterMovies.get(i).getOverview()); Glide.with(context).load("https://image.tmdb.org/t/p/w500" +adapterMovies.get(i).getPosterPath()).into(myViewHolder.ivPoster); } @Override public int getItemCount() { return adapterMovies.size(); } public class MyViewHolder extends RecyclerView.ViewHolder { TextView tvJudul, tvJudul1; ImageView ivPoster; public MyViewHolder(@NonNull View itemView) { super(itemView); tvJudul = itemView.findViewById(R.id.tvJudul); tvJudul1 = itemView.findViewById(R.id.tvStoryline); ivPoster = itemView.findViewById(R.id.ivPoster); } } }
[ "projectoneuniverseid@gmail.com" ]
projectoneuniverseid@gmail.com
81b4ddb80e3ed58dd649d159f1108b19a4209b8f
8709bc1357cf839a099568aa81095a266c80b037
/ExercisesDb.Services/src/main/java/exercisesdb/services/BookCatlogService.java
b48458f505f44fa8064b83c939b110b1f9965b4f
[]
no_license
cottoncandies/ProjectOne
6f7b12a6197a61e155aeb479a82564edab3a6f01
cca198ddb410412b104250a299e7413e2dfc6272
refs/heads/master
2020-03-22T17:48:34.397931
2018-07-10T10:43:20
2018-07-10T10:43:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,448
java
package exercisesdb.services; import exercisesdb.common.ListUtil; import exercisesdb.model.BookCatalog; import java.util.ArrayList; import java.util.List; public class BookCatlogService { private static final String commonSql = "select DISTINCT ng_id,sz_num,sz_parent_num,sz_caption,nt_section,ng_subject_id,nt_grade," + "nt_serial,sz_descr,nt_show,tx_comment,nt_old_id from sys_book_catalog_t where 1=1 "; private static final String commonSqlFav = "select DISTINCT bc.ng_id,bc.sz_num,bc.sz_parent_num,bc.sz_caption,bc.ng_parent_id," + "bc.nt_section,bc.ng_subject_id,bc.nt_grade,bc.nt_serial,bc.sz_descr,bc.nt_show,bc.tx_comment,bc.nt_old_id " + " from sys_book_catalog_t bc " + " inner join sys_exam_t e on bc.ng_id = e.ng_cat_id " + " inner join sys_favorite_t fav on e.ng_id = fav.ng_exam_id " + " where 1=1 "; public static List<BookCatalog> getCatalogByParentNum(String parentNum) { String mlSql = commonSql + " and sz_parent_num = \'" + parentNum + "\'" + " order by sz_num asc"; List<BookCatalog> bookCatalogs = BookCatalog.dao.find(mlSql); return (null != bookCatalogs && bookCatalogs.size() > 0) ? bookCatalogs : null; } public static List<BookCatalog> getCatalogsWithFav(Long userId, int section, Long subjectId) { String mlSql = commonSqlFav + " and fav.ng_user_id = ? and fav.nt_section = ? and fav.ng_subject_id = ? " + " order by bc.sz_num asc"; List<BookCatalog> bookCatalogs = BookCatalog.dao.find(mlSql, userId, section, subjectId); return (null != bookCatalogs && bookCatalogs.size() > 0) ? bookCatalogs : null; } public static List<BookCatalog> getCatalogsWithFavClean(Long userId, int section, Long subjectId) { String mlSql = commonSqlFav + " and fav.ng_user_id = ? and fav.nt_section = ? and fav.ng_subject_id = ? and e.sz_edition !~*\'真题\' " + " order by bc.sz_num asc"; List<BookCatalog> bookCatalogs = BookCatalog.dao.find(mlSql, userId, section, subjectId); return (null != bookCatalogs && bookCatalogs.size() > 0) ? bookCatalogs : null; } public static List<BookCatalog> getCatalogsByNum(Long userId, int section, Long subjectId, int level) { List<BookCatalog> bookCatalogs = getCatalogsWithFavClean(userId, section, subjectId); if (null == bookCatalogs) { return null; } ListUtil.removeDuplicate(bookCatalogs); String sql = commonSql + " and sz_num = ? and sz_parent_num !='' order by sz_num asc"; List<BookCatalog> bookCatalogList = new ArrayList<>(); String lastThirdNum = ""; String lastSecondNum = ""; String lastIndexNum = ""; for (BookCatalog bookCatalog : bookCatalogs) { String thirdNum = bookCatalog.getParentNum(); if (!lastThirdNum.equals(thirdNum)) { lastThirdNum = thirdNum; BookCatalog thirdBookCatalog = BookCatalog.dao.findFirst(sql, thirdNum); if (null != thirdBookCatalog && null != thirdBookCatalog.getParentNum()) { if (3 == level) { bookCatalogList.add(thirdBookCatalog); continue; } String secondNum = thirdBookCatalog.getParentNum(); if (!lastSecondNum.equals(secondNum)) { lastSecondNum = secondNum; BookCatalog secondBookCatalog = BookCatalog.dao.findFirst(sql, secondNum); if (null != secondBookCatalog && null != secondBookCatalog.getParentNum()) { if (2 == level) { bookCatalogList.add(secondBookCatalog); continue; } String indexNum = secondBookCatalog.getParentNum(); if (!lastIndexNum.equals(indexNum)) { lastIndexNum = indexNum; BookCatalog indexBookCatalog = BookCatalog.dao.findFirst(sql, indexNum); if (null != indexBookCatalog) { if (1 == level) { bookCatalogList.add(indexBookCatalog); } } } } } } } } ListUtil.removeDuplicate(bookCatalogList); return (bookCatalogList.size() > 0) ? bookCatalogList : null; } public static List<BookCatalog> getCatalogByParentNumFav(String parentNum) { String mlSql = commonSql + " and sz_parent_num = \'" + parentNum + "\'" + " order by sz_num asc"; List<BookCatalog> bookCatalogs = BookCatalog.dao.find(mlSql); return (null != bookCatalogs && bookCatalogs.size() > 0) ? bookCatalogs : null; } public static List<BookCatalog> firstEntrance(int section, Long subjectId) { String sql = commonSql + " and nt_section=? and ng_subject_id=? and char_length(sz_num)=6 order by sz_num asc"; List<BookCatalog> bookCatalogs = BookCatalog.dao.find(sql, section, subjectId); return (null != bookCatalogs && bookCatalogs.size() > 0) ? bookCatalogs : null; } }
[ "1790882721@qq.com" ]
1790882721@qq.com
2c9d2503dbc0aac17b77d84654af0f5011bcbbb5
e111f55248156f79e7dea6ff4ebecbb11de159a9
/shopping_complete/src/com/freeflux/dao/AddressDAO.java
5ce2f9dcc786aeb5d7f282c1d37ab5a87a2a8a5e
[]
no_license
chiehun/java-file
e4807475d2abce6667ae997129525dd68b24a14c
52b7d73696990226a62efbd90f3bc066e7da548a
refs/heads/master
2022-12-28T13:07:27.195803
2020-10-13T02:52:43
2020-10-13T02:52:43
303,564,339
0
0
null
null
null
null
UTF-8
Java
false
false
1,323
java
package com.freeflux.dao; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.ArrayList; import com.freeflux.dto.AddressVO; import com.freeflux.util.DBManager; public class AddressDAO { private AddressDAO() { } private static AddressDAO instance = new AddressDAO(); public static AddressDAO getInstance() { return instance; } public ArrayList<AddressVO> selectAddressByDong(String dong) { ArrayList<AddressVO> list = new ArrayList<AddressVO>(); String sql = "select * from address where dong like '%'||?||'%'"; Connection conn = null; PreparedStatement pstmt = null; ResultSet rs = null; try { conn = DBManager.getConnection(); pstmt = conn.prepareStatement(sql); pstmt.setString(1, dong); rs = pstmt.executeQuery(); while (rs.next()) { AddressVO addressVO = new AddressVO(); addressVO.setzipNum(rs.getString("zip_num")); addressVO.setSido(rs.getString("sido")); addressVO.setGugun(rs.getString("gugun")); addressVO.setDong(rs.getString("dong")); addressVO.setzipCode(rs.getString("zip_code")); addressVO.setBunji(rs.getString("bunji")); list.add(addressVO); } } catch (Exception e) { e.printStackTrace(); } return list; } }
[ "chiehun@naver.com" ]
chiehun@naver.com
441289f8713a1c32af853d23720f4055e1ce6bd7
92fd0803ecc797d23c0f347ddef366a5f4b2b585
/src/com/examples/oop/example/book/Book.java
d9fdef9eb297bea3a5c8155495ccbeca1a054db1
[]
no_license
azuzugonzales/collection
46224c950f319830a6b5c38fa6b5fc49d4a3f62d
69ab84d2c43e835be6439aeb054679e5b3b96925
refs/heads/master
2021-01-10T14:00:44.912194
2016-03-31T20:42:23
2016-03-31T20:42:23
46,855,710
0
0
null
null
null
null
UTF-8
Java
false
false
1,275
java
package com.examples.oop.example.book; import com.examples.oop.example.author.Author; public class Book { // Private variables private String name; private Author author; private double price; private int qtyInStock; // Constructor public Book(String name, Author author, double price) { this.name = name; this.author = author; this.price = price; this.qtyInStock = 0; // Not given, set to the default value } public Book(String name, Author author, double price, int qtyInStock) { this.name = name; this.author = author; this.price = price; this.qtyInStock = qtyInStock; } // Getters and Setters public String getName() { return name; } public Author getAuthor() { return author; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public int getQtyInStock() { return qtyInStock; } public void setQtyInStock(int qtyInStock) { this.qtyInStock = qtyInStock; } // toString() t describe itself public String toString() { return "'" + name + "' by " + author; // author.toString() } }
[ "slipknot_13@mail.ru" ]
slipknot_13@mail.ru
c4da65bb01bfeaac40d6ae4bc6a4e373fa3b9347
96dd290906f92ccc899fc8fdbb325dc31609d9c4
/StudentList.java
e7afe051e7aa9243f5e9027a00682d323241f401
[]
no_license
CS112-F17/code
e989f3375980be096ea55acaacbac5aebc61941a
4622c49c06ca83a7654ef5f71dce45a4bc30f9d6
refs/heads/master
2021-01-19T18:04:23.786980
2017-11-22T19:12:26
2017-11-22T19:12:26
101,112,159
0
0
null
null
null
null
UTF-8
Java
false
false
1,331
java
/** A class to store a list of students. @author srollins **/ import java.util.ArrayList; public class StudentList { //TODO: data members? private ArrayList<Student> students; /** Constructor with no parameters. It would also be possible to overload the constructor. **/ public StudentList() { students = new ArrayList<Student>(); } /** Add a new student to the list. **/ public void addStudent(Student student) { students.add(student); } /** Return a string representation of the student who has missed the largest number of days. **/ public String mostMissedDays() { //initialize to first item in the list! int mostMissed = students.get(0).getMissedDays(); Student studentMostMissed = students.get(0); // for each student in the ArrayList // if that student's missed days is > mostMissed // update mostMissed to be this student's number of missed days // update studentMostMissed for(Student s: students) { if(s.getMissedDays() > mostMissed) { mostMissed = s.getMissedDays(); studentMostMissed = s; } } return studentMostMissed.toString(); } /** Return a string representation of the full list. **/ public String toString() { String result = ""; for(Student s: students) { result = result + s.toString(); } return result; } }
[ "srollins@cs.usfca.edu" ]
srollins@cs.usfca.edu
fd112388bf76cdda32c0dcda2230064540a74666
dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9
/data_defect4j/preprossed_method_corpus/Math/45/org/apache/commons/math/exception/NonMonotonicSequenceException_NonMonotonicSequenceException_75.java
9760c75ea3a7548f70563153f0fa6437106fcda7
[]
no_license
hvdthong/NetML
dca6cf4d34c5799b400d718e0a6cd2e0b167297d
9bb103da21327912e5a29cbf9be9ff4d058731a5
refs/heads/master
2021-06-30T15:03:52.618255
2020-10-07T01:58:48
2020-10-07T01:58:48
150,383,588
1
1
null
2018-09-26T07:08:45
2018-09-26T07:08:44
null
UTF-8
Java
false
false
1,048
java
org apach common math except except thrown sequenc valu monoton increas decreas chang monoton sequenc except nonmonotonicsequenceexcept version monoton sequenc except nonmonotonicsequenceexcept math illeg number except mathillegalnumberexcept construct except param wrong match requir param previou previou sequenc param index index match requir param direct strictli posit sequenc requir increas neg decreas sequenc param strict sequenc strictli increas decreas monoton sequenc except nonmonotonicsequenceexcept number wrong number previou index math util mathutil order direct orderdirect direct strict direct math util mathutil order direct orderdirect increas strict local format localizedformat strictli increas sequenc local format localizedformat increas sequenc strict local format localizedformat strictli decreas sequenc local format localizedformat decreas sequenc wrong previou index index direct direct strict strict index index previou previou
[ "hvdthong@gmail.com" ]
hvdthong@gmail.com
60e4ccd5f439d15e0bf6666f9336c7d220f9a564
de970450efe839c91808f5589b5d22128cf25d2b
/src/genericLinkList.java
fd8b6dbaf1a75407b7579be14749a3e5d9c1a0e3
[]
no_license
biplabku/Interview-Preparation-Guide
1472106c4fb897c157316e5b5737b1f91fe6947c
6e8802e9d0b8f60fd018404e859edf1d9df43517
refs/heads/master
2023-02-09T20:52:51.883382
2023-01-31T04:06:55
2023-01-31T04:06:55
117,285,518
0
0
null
2023-02-04T00:12:34
2018-01-12T20:35:17
Java
UTF-8
Java
false
false
228
java
import java.util.LinkedList; public class genericLinkList<T> { private LinkedList<T> list; public void addNewNode(T value){ if(list == null) { list.add(value); }else { } } }
[ "dasbiplabtu@gmail.com" ]
dasbiplabtu@gmail.com
2064ac8426e6d7d302e9e4a6116a5bc0dfddc016
32a31c9007246c22a66f0c7f505eec012bad5296
/src/main/java/com/learn/jdbconnection/respositories/CustomerRepositoryImpl.java
2d95a923efcce119600a58b84c0460fa45bdabd4
[]
no_license
Hemantnie/spring-boot-maven-jdbc-application
02f2ca7c0888d508abe882411693c34deae3d96a
03c2f066db9ab5017581197bbdf0e946f0d78e9e
refs/heads/master
2021-05-21T16:48:39.100677
2020-04-03T12:08:58
2020-04-03T12:08:58
252,723,412
0
0
null
null
null
null
UTF-8
Java
false
false
1,165
java
package com.learn.jdbconnection.respositories; import com.learn.jdbcconnection.rowmappers.CustomerRowMapper; import com.learn.jdbconnection.models.Customer; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.stereotype.Repository; import javax.transaction.Transactional; import java.util.List; @Transactional @Repository public class CustomerRepositoryImpl implements CustomerRepository{ private CustomerRowMapper customerRowMapper = new CustomerRowMapper(); @Autowired private JdbcTemplate jdbcTemplate; @Override public List<Customer> getAll(){ String sql = "select * from Customers"; return this.jdbcTemplate.query(sql,customerRowMapper); } @Override public Customer getCustomerById(Integer id) { return null; } @Override public Customer addNewCustomer(Customer customer) { return null; } @Override public Customer deleteCustomerById(Integer id) { return null; } @Override public Customer updateCustomer(Customer customer) { return null; } }
[ "Hemant.Kumar@accolite.com" ]
Hemant.Kumar@accolite.com
dd47ee1d276c767cfacb28b7f6d8af387df45c62
6d6b2452cd152edd890f5f0e35dd4dea250edb97
/src/views/v_JENISSAPI.java
deff8a1d7a3477e3f9b9380d347ebf1e0ea475f4
[]
no_license
fahmy009/pplagro-G-MOWW
f4c4b6e6d93e1324e9afee05ab9f35d02a7a77f4
b8eef61c2990aadc840b954cdf5f1195e796973c
refs/heads/master
2021-11-09T04:58:33.354343
2021-10-15T06:44:42
2021-10-15T06:44:42
107,646,333
0
1
null
null
null
null
UTF-8
Java
false
false
4,651
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 views; import java.awt.event.ActionListener; import javax.swing.JFrame; /** * * @author Muhammad Fahmy */ public class v_JENISSAPI extends javax.swing.JFrame { /** * Creates new form v_JENISSAPI */ public v_JENISSAPI() { initComponents(); this.setLocationRelativeTo(this); this.setExtendedState(JFrame.MAXIMIZED_BOTH); } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { btnJenisSapi = new javax.swing.JButton(); btnSapi = new javax.swing.JButton(); btnLogout = new javax.swing.JButton(); jLabel1 = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); setUndecorated(true); getContentPane().setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout()); btnJenisSapi.setBorder(null); btnJenisSapi.setBorderPainted(false); btnJenisSapi.setContentAreaFilled(false); getContentPane().add(btnJenisSapi, new org.netbeans.lib.awtextra.AbsoluteConstraints(370, 240, 250, 290)); btnSapi.setBorder(null); btnSapi.setBorderPainted(false); btnSapi.setContentAreaFilled(false); getContentPane().add(btnSapi, new org.netbeans.lib.awtextra.AbsoluteConstraints(790, 220, 220, 290)); btnLogout.setBorder(null); btnLogout.setBorderPainted(false); btnLogout.setContentAreaFilled(false); getContentPane().add(btnLogout, new org.netbeans.lib.awtextra.AbsoluteConstraints(1140, 670, 160, 60)); jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/uiimages/admin sapi.png"))); // NOI18N getContentPane().add(jLabel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, 1370, 770)); pack(); }// </editor-fold>//GEN-END:initComponents /** * @param args the command line arguments */ public static void main(String args[]) { /* Set the Nimbus look and feel */ //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) "> /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html */ try { for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { if ("Nimbus".equals(info.getName())) { javax.swing.UIManager.setLookAndFeel(info.getClassName()); break; } } } catch (ClassNotFoundException ex) { java.util.logging.Logger.getLogger(v_JENISSAPI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(v_JENISSAPI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(v_JENISSAPI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(v_JENISSAPI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new v_JENISSAPI().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton btnJenisSapi; private javax.swing.JButton btnLogout; private javax.swing.JButton btnSapi; private javax.swing.JLabel jLabel1; // End of variables declaration//GEN-END:variables public void btnLogout(ActionListener a) { this.btnLogout.addActionListener(a); } public void btnJenisSapi(ActionListener a) { this.btnJenisSapi.addActionListener(a); } public void btnSapi(ActionListener a) { this.btnSapi.addActionListener(a); } }
[ "Muhammad Fahmy@DESKTOP-VNVRBVB" ]
Muhammad Fahmy@DESKTOP-VNVRBVB
35185a4ade4ce27991f5a600e982f49ec5153502
38b006d0d927a410c28f8a39e6bb9f3d89905f0c
/src/com/tosit/emps/action/EmployeeAction.java
3a34158d4678f9482323dadf7a2d8bc10bd219e6
[]
no_license
ZhangRui001/emps
049d0e01597d3db5393a222955333e25816ac476
f4d47462955243b73c7bf69133177f93ee64b5f2
refs/heads/master
2021-09-03T21:46:03.652021
2018-01-12T08:03:50
2018-01-12T08:03:50
117,073,960
0
0
null
null
null
null
UTF-8
Java
false
false
3,677
java
package com.tosit.emps.action; import com.tosit.emps.common.util.DateUtil; import com.tosit.emps.common.util.JsonUtil; import com.tosit.emps.common.util.Page; import com.tosit.emps.common.vo.JSONResponse; import com.tosit.emps.entity.Employee; import com.tosit.emps.entity.User; import com.tosit.emps.service.EmployeeService; import com.tosit.emps.service.EmployeeServiceImpl; import com.tosit.framework.mvc.annotation.RequestPath; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.util.Date; import java.util.List; @RequestPath("/emp") public class EmployeeAction { private EmployeeService employeeService = new EmployeeServiceImpl(); @RequestPath("/listemp") public String listEmp(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String pageNoTxt = request.getParameter("pageNo"); String pageSizeTxt = request.getParameter("pageSize"); int pageNo = (pageNoTxt==null ?1:(Integer.parseInt(pageNoTxt.trim()))) ; int pageSize = (pageSizeTxt==null ?10:(Integer.parseInt(pageSizeTxt.trim()))) ; Page<Employee> page = employeeService.findAllEmployee(pageNo,pageSize); JsonUtil.printByJSON(response,new JSONResponse(true,page)); return null; } @RequestPath("/showOneEmplyee") public String showOneEmplyee(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String id= request.getParameter("id"); Employee employee = employeeService.findEmployeeById(Integer.parseInt(id)); request.setAttribute("employee",employee); return "/WEB-INF/emp/emp_show.jsp"; } @RequestPath("/toUpdatePage") public String toUpdatePage(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String id= request.getParameter("id"); Employee employee = employeeService.findEmployeeById(Integer.parseInt(id)); request.setAttribute("employee",employee); return "/WEB-INF/emp/emp_edit.jsp"; } @RequestPath("/updateEmp") public String updateEmp(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String idTxt= request.getParameter("id"); Integer id = Integer.parseInt(idTxt); Employee emp = employeeService.findEmployeeById(id); int empno = Integer.parseInt(request.getParameter("empno")); emp.setEmpno(empno); String ename = request.getParameter("ename"); emp.setEname(ename); String job = request.getParameter("job"); emp.setJob(job); Integer mgr =Integer.parseInt(request.getParameter("mgr")); emp.setMgr(mgr); Date date = DateUtil.parseDateFromStr(request.getParameter("hiredate")); emp.setHiredate(date); double sal = Double.parseDouble(request.getParameter("sal")); emp.setSal(sal); /* Employee e = new Employee(id,empno,ename,job,mgr,date,sal,0.0,0);*/ employeeService.updateEmployee(emp); request.setAttribute("employee",emp); return "/WEB-INF/emp/emp_edit_success.jsp"; } @RequestPath("/delEmp") public String delEmp(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String idTxt = request.getParameter("id"); Integer id = Integer.valueOf(idTxt); employeeService.removeEmployeeById(id); // return "/emp/listemp.do"; return "/WEB-INF/emp/emp_del_success.jsp"; } }
[ "1092634934@qq.com" ]
1092634934@qq.com
e4fe002c34856e50a7b818a531d309dee71d6af8
d59c44a915ac027ef06c489af71641c698e4648a
/src/java/backtofront/PlainTextEmailSender.java
18e16681db4e0634116981044cc6d6e4ad820a4a
[]
no_license
txsing/GScalerFront
2a10fd6f263ff1dec6d443c079afa933d2d77e80
f8d3289247c4f61154a6e20e01263798bb544d5d
refs/heads/master
2021-04-30T07:10:22.527099
2017-04-20T12:03:01
2017-04-20T12:03:01
79,977,186
0
0
null
null
null
null
UTF-8
Java
false
false
2,088
java
package backtofront; /* * 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. */ /** * * @author v-xinti */ import java.util.Date; import java.util.Properties; import javax.mail.Authenticator; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.PasswordAuthentication; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.AddressException; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; public class PlainTextEmailSender { public void sendPlainTextEmail(String host, String port, final String userName, final String password, String toAddress, String subject, String message) throws AddressException, MessagingException { // sets SMTP server properties Properties properties = new Properties(); properties.put("mail.smtp.host", host); properties.put("mail.smtp.port", port); properties.put("mail.smtp.auth", "true"); properties.put("mail.smtp.starttls.enable", "true"); // creates a new session with an authenticator Authenticator auth = new Authenticator() { public PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication(userName, password); } }; Session session = Session.getInstance(properties, auth); // creates a new e-mail message Message msg = new MimeMessage(session); msg.setFrom(new InternetAddress(userName)); InternetAddress[] toAddresses = { new InternetAddress(toAddress) }; msg.setRecipients(Message.RecipientType.TO, toAddresses); msg.setSubject(subject); msg.setSentDate(new Date()); // set plain text message msg.setText(message); // sends the e-mail Transport.send(msg); } }
[ "v-xinti@windows10.microdone.cn" ]
v-xinti@windows10.microdone.cn
4533e0d5b1fdb7ab1d1191e7571f53547e73f0fb
3ca7c0bbf92635c21bdd17f39fbcf666ba6df69e
/src/main/java/net/minecraft/pathfinding/PathEntity.java
9a2c3ca51c71165d0fd721a30f19376a9e2132ca
[]
no_license
Liquirh/UprizingClient
13c4a98b66f1debeb182111674b1470bb486dd22
e456be9f938bd645a0fccd951e437479f1ad7e6e
refs/heads/master
2020-03-21T23:21:09.106317
2018-06-29T17:27:32
2018-06-29T17:27:32
139,182,386
1
0
null
2018-06-29T18:23:22
2018-06-29T18:23:22
null
UTF-8
Java
false
false
3,541
java
package net.minecraft.pathfinding; import net.minecraft.entity.Entity; import net.minecraft.util.Vec3; public class PathEntity { /** The actual points in the path */ private final PathPoint[] points; /** PathEntity Array Index the Entity is currently targeting */ private int currentPathIndex; /** The total length of the path */ private int pathLength; private static final String __OBFID = "CL_00000575"; public PathEntity(PathPoint[] p_i2136_1_) { this.points = p_i2136_1_; this.pathLength = p_i2136_1_.length; } /** * Directs this path to the next point in its array */ public void incrementPathIndex() { ++this.currentPathIndex; } /** * Returns true if this path has reached the end */ public boolean isFinished() { return this.currentPathIndex >= this.pathLength; } /** * returns the last PathPoint of the Array */ public PathPoint getFinalPathPoint() { return this.pathLength > 0 ? this.points[this.pathLength - 1] : null; } /** * return the PathPoint located at the specified PathIndex, usually the current one */ public PathPoint getPathPointFromIndex(int p_75877_1_) { return this.points[p_75877_1_]; } public int getCurrentPathLength() { return this.pathLength; } public void setCurrentPathLength(int p_75871_1_) { this.pathLength = p_75871_1_; } public int getCurrentPathIndex() { return this.currentPathIndex; } public void setCurrentPathIndex(int p_75872_1_) { this.currentPathIndex = p_75872_1_; } /** * Gets the vector of the PathPoint associated with the given index. */ public Vec3 getVectorFromIndex(Entity p_75881_1_, int p_75881_2_) { double var3 = (double)this.points[p_75881_2_].xCoord + (double)((int)(p_75881_1_.width + 1.0F)) * 0.5D; double var5 = (double)this.points[p_75881_2_].yCoord; double var7 = (double)this.points[p_75881_2_].zCoord + (double)((int)(p_75881_1_.width + 1.0F)) * 0.5D; return Vec3.createVectorHelper(var3, var5, var7); } /** * returns the current PathEntity target node as Vec3D */ public Vec3 getPosition(Entity p_75878_1_) { return this.getVectorFromIndex(p_75878_1_, this.currentPathIndex); } /** * Returns true if the EntityPath are the same. Non instance related equals. */ public boolean isSamePath(PathEntity p_75876_1_) { if (p_75876_1_ == null) { return false; } else if (p_75876_1_.points.length != this.points.length) { return false; } else { for (int var2 = 0; var2 < this.points.length; ++var2) { if (this.points[var2].xCoord != p_75876_1_.points[var2].xCoord || this.points[var2].yCoord != p_75876_1_.points[var2].yCoord || this.points[var2].zCoord != p_75876_1_.points[var2].zCoord) { return false; } } return true; } } /** * Returns true if the final PathPoint in the PathEntity is equal to Vec3D coords. */ public boolean isDestinationSame(Vec3 p_75880_1_) { PathPoint var2 = this.getFinalPathPoint(); return var2 != null && (var2.xCoord == (int) p_75880_1_.xCoord && var2.zCoord == (int) p_75880_1_.zCoord); } }
[ "stawlker@hotmail.com" ]
stawlker@hotmail.com
85d1bc9c6398a3ffffef633ba40f60e03bb47414
578cb2cd0f51f48fea31c40ca1bf937a58066501
/HospitalRegistrationService/src/main/java/com/devtest/HospitalRegistrationService/DomainModels/MedicalAppointmentNote.java
1085a7314f96fccaf5bb399c16b20d706bc7a900
[]
no_license
tanbinh123/HospitalRegistration
a01cde238576ea9cb229bec328f0a540ecd09aab
9b7ef7f485e476a5476d1b182d55255ccdfd7e78
refs/heads/master
2023-03-16T13:34:03.785265
2021-02-27T11:48:11
2021-02-27T11:48:11
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,371
java
package com.devtest.HospitalRegistrationService.DomainModels; import java.util.Date; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import com.devtest.HospitalRegistrationService.Audit.AuditableEntity; @Entity @Table(name="medical_appointment_note") public class MedicalAppointmentNote extends AuditableEntity { @GeneratedValue(strategy = GenerationType.IDENTITY) @Id private Long id; private String description; private Date date; @ManyToOne @JoinColumn(name="patient_id") private Patient patient; @ManyToOne @JoinColumn(name="doctor_id") private Doctor doctor; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } public Patient getPatient() { return patient; } public void setPatient(Patient patient) { this.patient = patient; } public Doctor getDoctor() { return doctor; } public void setDoctor(Doctor doctor) { this.doctor = doctor; } }
[ "carlitosgamboa17@gmail.com" ]
carlitosgamboa17@gmail.com
22f72b4dcaa84c9c900ef4b81d12abee4f9dbdab
2e54c395305788fe3227b81b32a959410370ffd5
/src/co/edu/udea/iw/dao/ClienteDao.java
5c0225164b6a23cf96fcdebb9f31fc3fabd0be43
[]
no_license
juanjo7g/IngWebSpring
5e4eb442d8c10526876c6b0475310ca04f9652cb
7b11880f873db421ab4e84c822b033a0f679dd8e
refs/heads/master
2021-05-28T22:36:22.076992
2015-10-22T20:54:50
2015-10-22T20:54:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
420
java
package co.edu.udea.iw.dao; import java.util.List; import co.edu.udea.iw.dto.Cliente; import co.edu.udea.iw.exception.MyException; public interface ClienteDao { List<Cliente> obtener() throws MyException; Cliente obtener(String cedula) throws MyException; void guardar(Cliente Cliente) throws MyException; void actualizar(Cliente Cliente) throws MyException; void eliminar(Cliente Cliente) throws MyException; }
[ "tinez7g@gmail.com" ]
tinez7g@gmail.com
24cd8999404b98c06aafabb6c9da34f8fd6af772
236189a06990e022f25aae028803a0e423825243
/hello-springboot/src/test/java/cn/cst/myspringboot/MySpringbootApplicationTests.java
8e2e29e0671ebeee51b850400b63ff5cb8395447
[]
no_license
liuziran/fun-learning-application
1fa340eb050577bc9d7e648a0a84149cb42d594d
6a7b635d8aad4a4182b33fa27294d7bfee17fd60
refs/heads/master
2023-02-08T13:21:33.493953
2020-12-31T10:34:04
2020-12-31T10:34:04
null
0
0
null
null
null
null
UTF-8
Java
false
false
226
java
package cn.cst.myspringboot; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest class MySpringbootApplicationTests { @Test void contextLoads() { } }
[ "13144061737@163.com" ]
13144061737@163.com
f6245194b2ab882dd9351c87eef6c197c2628d3a
66e698b23e05a1b5ac1dd2741bd0c0b148980a4e
/jeu/Plateau.java
6bdf0f3059099b05e03d0c98aa811205aced9d08
[]
no_license
Pyhro36/MiniJeu
49f273a4cfbff5d3f04e39754a61e39344c824a7
eff3ba98a0714e217296f9e8d96456763febe65d
refs/heads/master
2020-07-03T17:38:47.776827
2019-08-12T18:46:35
2019-08-12T18:46:35
201,989,358
0
0
null
null
null
null
UTF-8
Java
false
false
129
java
package jeu; /** * * @author PL * @version 1.0 */ public abstract class Plateau { public abstract void afficher(); }
[ "pylou_11@hotmail.fr" ]
pylou_11@hotmail.fr
c560a480f4d65b6b4b90962f8e796cf15802e38d
d2cab8655e7857a533a53c9180efb4ca67bc4341
/src/day53_inheritance/hiding/Parent.java
ac00fe85e4ef367172d7ad111aae9a2dc4bf8ee9
[]
no_license
antasimus/java-programing
b2501f49e8a3e7a49b9aee344bf126e44e6d9a11
be0419cfb6dd46f1b6d318d18af0b61bda1fc378
refs/heads/master
2023-06-20T16:44:11.543124
2021-07-18T19:29:21
2021-07-18T19:29:21
363,437,241
1
0
null
2021-05-28T02:22:45
2021-05-01T15:01:39
Java
UTF-8
Java
false
false
578
java
package day53_inheritance.hiding; public class Parent { public String name = "parent > Mike Smith"; public void introduce1(){ System.out.println("Hello I am "+ name); } } class Child extends Parent{ public String name = "child > Bob Smith"; public void introduce2(){ System.out.println("Hello I am "+name); } } class Runner{ public static void main(String[] args) { Parent parent = new Parent(); parent.introduce1(); Child child = new Child(); child.introduce2(); child.introduce1(); } }
[ "mishaantic17@gmail.com" ]
mishaantic17@gmail.com
ecfc2941ccb510d9c0693e5bedf9e41af0f760f2
2806486486f46dbfe4d77bfd7854a964f06ab885
/app/src/main/java/com/project/powerone/powerone/pojo/Customer.java
f6d6f2e39297f111bd324187584d3abc1625aab3
[]
no_license
aharoldk/PowerOne
07439bb28a9af381eb98c2551951f38f6f7b2455
86bc832e87e8617aeada388b4c69010ade77b04f
refs/heads/master
2021-01-01T19:59:11.287167
2018-01-11T04:50:02
2018-01-11T04:50:02
98,738,712
0
0
null
2018-01-11T04:50:02
2017-07-29T14:45:53
Java
UTF-8
Java
false
false
3,016
java
package com.project.powerone.powerone.pojo; /** * Created by aharoldk on 30/07/17. */ public class Customer { private String SiteID, SalesmanID, CustID, CustName, CustAddress, PriceType, StatusCustomer, DateTime; private int UrutID; private double GeoMapLong, GeoMapLat, GPSMapLong, GPSMapLat; public Customer() { } public Customer(String siteID, String salesmanID, String custID, String custName, String custAddress, String priceType, String statusCustomer, String dateTime, int urutID, double geoMapLong, double geoMapLat, double gpsMapLong, double gpsMapLat) { SiteID = siteID; SalesmanID = salesmanID; CustID = custID; CustName = custName; CustAddress = custAddress; PriceType = priceType; StatusCustomer = statusCustomer; DateTime = dateTime; UrutID = urutID; GeoMapLong = geoMapLong; GeoMapLat = geoMapLat; GPSMapLong = gpsMapLong; GPSMapLat = gpsMapLat; } public String getSiteID() { return SiteID; } public void setSiteID(String siteID) { SiteID = siteID; } public String getSalesmanID() { return SalesmanID; } public void setSalesmanID(String salesmanID) { SalesmanID = salesmanID; } public String getCustID() { return CustID; } public void setCustID(String custID) { CustID = custID; } public String getCustName() { return CustName; } public void setCustName(String custName) { CustName = custName; } public String getCustAddress() { return CustAddress; } public void setCustAddress(String custAddress) { CustAddress = custAddress; } public String getPriceType() { return PriceType; } public void setPriceType(String priceType) { PriceType = priceType; } public String getStatusCustomer() { return StatusCustomer; } public void setStatusCustomer(String statusCustomer) { StatusCustomer = statusCustomer; } public String getDateTime() { return DateTime; } public void setDateTime(String dateTime) { DateTime = dateTime; } public int getUrutID() { return UrutID; } public void setUrutID(int urutID) { UrutID = urutID; } public double getGeoMapLong() { return GeoMapLong; } public void setGeoMapLong(double geoMapLong) { GeoMapLong = geoMapLong; } public double getGeoMapLat() { return GeoMapLat; } public void setGeoMapLat(double geoMapLat) { GeoMapLat = geoMapLat; } public double getGPSMapLong() { return GPSMapLong; } public void setGPSMapLong(double GPSMapLong) { this.GPSMapLong = GPSMapLong; } public double getGPSMapLat() { return GPSMapLat; } public void setGPSMapLat(double GPSMapLat) { this.GPSMapLat = GPSMapLat; } }
[ "aharoldk@gmail.com" ]
aharoldk@gmail.com
5328eff4d781d93cd5898f8902e8608125e43ff5
1fe8f7cfbad09f76c20f591283154646060376c2
/src/test/java/com/andieguo/poi/AppTest.java
e9aff71b16786a86d721e79c9b372488cacd3690
[]
no_license
MurrayC7/cc-s-repository
30612a1f1be36e3ad291988e40eaad3c1ab74e39
df4896c2a53d6f728de52357ba1534143c2ae0b8
refs/heads/master
2021-01-20T00:09:15.325852
2017-06-07T16:22:07
2017-06-07T16:22:07
83,794,430
1
0
null
null
null
null
UTF-8
Java
false
false
644
java
package com.andieguo.poi; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Unit test for simple App. */ public class AppTest extends TestCase { /** * Create the test case * * @param testName name of the test case */ public AppTest( String testName ) { super( testName ); } /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite( AppTest.class ); } /** * Rigourous Test :-) */ public void testApp() { assertTrue( true ); } }
[ "andieguo@foxmail.com" ]
andieguo@foxmail.com
c48a2ed2fbd3c2c7c3c0bcf515d26d15f1234229
9e088ac7df6e76fab4340037a3c31481deef7cd5
/src/TornToPieces.java
3d4312c6c4536f76e6710d97acc9488bb5eac642
[]
no_license
grayark/acmPractice_Comp_2015
70d0b1eb5a1e3f64cef851a66f506d81d41e323c
4be858c04d03d7a51d61896a216080a8f6684982
refs/heads/master
2021-01-10T10:54:57.350304
2015-10-05T19:06:03
2015-10-05T19:06:03
43,696,239
0
0
null
null
null
null
UTF-8
Java
false
false
2,315
java
import java.lang.reflect.Array; import java.util.*; /** * Created by gray on 15-10-03. */ class Node { Node(String name) { this.name = name; } void addNeighbors(String node) { neighbors.add(new Node(node)); } Set<Node> neighbors; String name; } public class TornToPieces { private static ArrayList<String> search(String start, String end, HashMap<String, Node> graph) { ArrayDeque<Node> frontier = new ArrayDeque<Node>(); Node current = graph.get(start); for (Node n: current.neighbors) { frontier.push(n); } while (!frontier.isEmpty()) { current = frontier.pop(); if (current.name == end) { break; } for (Node n: current.neighbors) { frontier.push(n); } } ArrayList<String> path = new ArrayList<String>(); if (current.name == end) { // Node parent = current.parent; } return path; } public static void main(String[] args) { Scanner scanny = new Scanner(System.in); int n = scanny.nextInt(); HashMap<String, Node> graph = new HashMap<String, Node>(); scanny.nextLine(); for (int i = 0; i < n; i++) { String[] stuff = scanny.nextLine().split(" "); Node node; if (!graph.containsKey(stuff[0])) { node = new Node(stuff[0]); } else { node = graph.get(stuff[0]); } for (int j = 1; j < stuff.length; j++) { Node neighbor = new Node(stuff[j]); node.addNeighbors(stuff[j]); if (!graph.containsKey(stuff[j])) graph.put(stuff[j], neighbor); } if (!graph.containsKey(stuff[0])) graph.put(stuff[0], node); } String start = scanny.next(); String end = scanny.next(); ArrayList<String> path = search(start, end, graph); for (int i = 0; i < path.size(); i++) { System.out.print(path.get(i)); if (i < path.size() - 1) System.out.print(" "); else System.out.print("\n"); } } }
[ "gray@grayark-144-167-150-74.ddns.ualr.edu" ]
gray@grayark-144-167-150-74.ddns.ualr.edu
ddb4cce79dc3cd0664423cbd9c190bf9e4544f6e
c41ae7a319d404ab38d865e6829d761271733ec4
/core/src/test/java/net/dammak/service/CucumberTestRunner.java
2f5fd407e1f183f291990be74c9a1f9e108099a6
[]
no_license
Ahdak/hello-cucumber
78e7875be632f4a7f608a18b566b13032df38234
907f5a7cad4e63f305f4708364468493bcb41b6c
refs/heads/master
2022-11-14T07:57:23.920163
2020-07-12T16:12:40
2020-07-12T16:12:40
278,476,992
0
0
null
null
null
null
UTF-8
Java
false
false
127
java
package net.dammak.service; import io.cucumber.junit.platform.engine.Cucumber; @Cucumber public class CucumberTestRunner { }
[ "ahmed.dammak.net@gmail.com" ]
ahmed.dammak.net@gmail.com
e27be7a654c1468df92bb3bae61c082636fda1c4
6571947e6327dd481e2fe69f435c4fb426f653b8
/COMP/src/com/gl/club/common/tools/AliasToBeanResultTransformer.java
41d16917e42ce3bb93cfcdd2f9fcaa8e82da454a
[]
no_license
zxly/project
4f64d9d20de0f2e6ffc9e6bfedb61d104eaacc4b
c932da7912b32c67058756d092b3d7a2daf6cf61
refs/heads/master
2020-12-03T22:59:20.062909
2016-08-31T02:17:15
2016-08-31T02:18:03
66,930,774
0
0
null
null
null
null
UTF-8
Java
false
false
5,286
java
package com.gl.club.common.tools; import java.io.BufferedReader; import java.io.Reader; import java.math.BigDecimal; import java.sql.Clob; import java.util.Date; import java.util.List; import java.util.StringTokenizer; import org.apache.commons.lang3.StringUtils; import org.hibernate.HibernateException; import org.hibernate.PropertyNotFoundException; import org.hibernate.property.ChainedPropertyAccessor; import org.hibernate.property.PropertyAccessor; import org.hibernate.property.PropertyAccessorFactory; import org.hibernate.property.Setter; import org.hibernate.transform.ResultTransformer; public class AliasToBeanResultTransformer implements ResultTransformer { private static final long serialVersionUID = -5199190581393587893L; private final Class<?> resultClass; private Setter[] setters; private PropertyAccessor propertyAccessor; public AliasToBeanResultTransformer(Class<?> resultClass) { if (resultClass == null) throw new IllegalArgumentException("resultClass cannot be null"); this.resultClass = resultClass; propertyAccessor = new ChainedPropertyAccessor(new PropertyAccessor[] { PropertyAccessorFactory.getPropertyAccessor(resultClass, null), PropertyAccessorFactory.getPropertyAccessor("field") }); } @SuppressWarnings("unchecked") @Override public Object transformTuple(Object[] tuple, String[] aliases) { Object result; try { if (setters == null) { setters = new Setter[aliases.length]; for (int i = 0; i < aliases.length; i++) { String alias = convertColumnToProperty(aliases[i]); if (alias != null) { try { setters[i] = propertyAccessor.getSetter(resultClass, alias); } catch (PropertyNotFoundException e) { continue; } } } } result = resultClass.newInstance(); for (int i = 0; i < aliases.length; i++) { if (setters[i] != null) { Class<?> classHandl = setters[i].getMethod().getParameterTypes()[0]; if (EmptyUtil.isNullOrEmpty(tuple[i])) { continue; } if (classHandl.equals(String.class) || classHandl.equals(Byte.class) || classHandl.equals(Character.class) || classHandl.equals(Short.class)) { String resultString = tuple[i].toString(); //处理大字段映射 if (resultString.indexOf("sql.CLOB") > 0) { Reader reader; try { reader = ((Clob) tuple[i]).getCharacterStream(); BufferedReader br = new BufferedReader(reader); resultString = br.readLine(); StringBuffer stringBuffer = new StringBuffer(); while (resultString != null) {// 执行循环将字符串全部取出付值给 StringBuffer由StringBuffer转成STRING stringBuffer.append(resultString); resultString = br.readLine(); } resultString = stringBuffer.toString(); } catch (Exception e) { e.printStackTrace(); } } setters[i].set(result, resultString, null); } else if (classHandl.equals(Date.class)) { setters[i].set(result, DateUtil.getDate(tuple[i].toString()), null); } else if (classHandl.equals(Double.class)||classHandl.equals(double.class)) { setters[i].set(result, Double.valueOf(tuple[i].toString()), null); } else if (classHandl.equals(Integer.class)||classHandl.equals(int.class)) { setters[i].set(result, Integer.valueOf(tuple[i].toString()), null); } else if (classHandl.equals(Long.class)||classHandl.equals(long.class)) { setters[i].set(result, Long.valueOf(tuple[i].toString()), null); } else if (classHandl.equals(Float.class)||classHandl.equals(float.class)) { setters[i].set(result, Float.valueOf(tuple[i].toString()), null); } else if (classHandl.equals(Boolean.class)||classHandl.equals(boolean.class)) { setters[i].set(result, Boolean.valueOf(tuple[i].toString()), null); } else if (classHandl.equals(BigDecimal.class)) { setters[i].set(result, new BigDecimal(tuple[i].toString()), null); } else { Class<? extends Enum> classEnum = (Class<? extends Enum>) classHandl; setters[i].set(result, Enum.valueOf(classEnum, tuple[i].toString()), null); } } } } catch (InstantiationException e) { throw new HibernateException("Could not instantiate resultclass: " + resultClass.getName()); } catch (IllegalAccessException e) { throw new HibernateException("Could not instantiate resultclass: " + resultClass.getName()); } return result; } /** * Converts the specified 'XXX_YYY_ZZZ'-like column name to its * 'xxxYyyZzz'-like Java property name. * * @param columnName the column name * @return the Java property name */ public String convertColumnToProperty(String columnName) { columnName = columnName.toLowerCase(); StringBuffer buff = new StringBuffer(columnName.length()); StringTokenizer st = new StringTokenizer(columnName, "_"); while (st.hasMoreTokens()) { buff.append(StringUtils.capitalize(st.nextToken())); } buff.setCharAt(0, Character.toLowerCase(buff.charAt(0))); return buff.toString(); } @SuppressWarnings("unchecked") @Override public List transformList(List collection) { return collection; } }
[ "573423296@qq.com" ]
573423296@qq.com
135d3a876cfaa5fa23b240c4bf836445b188a9d4
e0da1f6a71cc00c2763409f6e0e4c0b5c9277964
/Lab 6/Source/app/src/main/java/com/sample/labassignment3/MainActivity.java
af0a6bd333fef0d8b5270a99b3ac05478899c272
[]
no_license
DevenderSarda/Web-Cloud-Programming
7897ab6d064dd20ebf18f4b49936ca8f5ab719d9
e11ece507dfd2a22dcd3ee47cb01abec2c795d5e
refs/heads/master
2021-01-20T06:32:52.071116
2017-12-16T01:45:47
2017-12-16T01:45:47
101,505,338
0
1
null
null
null
null
UTF-8
Java
false
false
6,496
java
package com.sample.labassignment3; import android.content.Intent; import android.database.Cursor; import android.graphics.Color; import android.os.Environment; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.ListView; import android.widget.TextView; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.util.ArrayList; import android.database.DatabaseUtils; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; public class MainActivity extends AppCompatActivity { ListView listView; TextView textView; Button addNew; ArrayList<String> arrayList; DBClass dbObj; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textView = (TextView)findViewById(R.id.textView); listView = (ListView)findViewById(R.id.listView); addNew = (Button)findViewById(R.id.addNew); arrayList = new ArrayList<String>(); dbObj = new DBClass(this); File folder = new File(Environment.getExternalStorageDirectory() + "/LabFolder"); if(folder.isDirectory()) { //ReadData(); arrayList.add("Purchase"); dbObj.Insert("Purchase", "Talk about a purchase you’ve made that you are happy with. Describe what you purchased and explain why you are happy about it."); arrayList.add("Generic"); dbObj.Insert("Generic", "Talk about a time when you found a task harder to accomplish than you expected. What were you trying to accomplish? Why did it become difficult?"); arrayList.add("Personality"); dbObj.Insert("Personality", "What personality quality do you think is most important in a good friend? Explain why."); arrayList.add("Country"); dbObj.Insert("Country", "Choose a recent event in your country that people want to talk about. Why are people interested in the event? Explain with specific details and reasons."); arrayList.add("Future of country"); dbObj.Insert("Future of country", "Imagine the ways in which your country will change over the next five years. Talk about one way you expect it to change. Use details to explain your answer."); arrayList.add("Famous person"); dbObj.Insert("Famous person", "Choose a famous person who you think would be enjoyable to have a conversation with. Explain why you would like to talk with them, using specific details and reasons."); arrayList.add("School"); dbObj.Insert("School", "Choose a subject that students study in school but you think is not important. Explain why you feel it is not important to study. Use details and examples in your response."); arrayList.add("Transportation"); dbObj.Insert("Transportation", "What type of long-distance transportation do you think is most enjoyable? Explain why you like it with specific details and examples."); arrayList.add("Movie"); dbObj.Insert("Movie", "Think of a movie you have not seen but would like to see. Explain why you expect to like the movie. Give specific details and reasons in your response."); ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, android.R.id.text1, arrayList) { public View getView(int position, View convertView, ViewGroup parent) { View view = super.getView(position, convertView, parent); TextView ListItemShow = (TextView) view.findViewById(android.R.id.text1); ListItemShow.setTextColor(Color.parseColor("#ffffff")); return view; }}; //ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, textView1, arrayList); listView.setAdapter(adapter); listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) { int position = i; String val = (String)listView.getItemAtPosition(position); Intent redirect = new Intent(MainActivity.this, QuestionActivity.class); if(position>0) { Cursor cursor = dbObj.getData(val); cursor.moveToFirst(); String question = cursor.getString(cursor.getColumnIndex(DBClass.columnQuestion)); redirect.putExtra("question", question); startActivity(redirect); } } }); } else { File fileDirectory = Environment.getExternalStorageDirectory(); fileDirectory = new File(fileDirectory+"/music"); File fileList[] = fileDirectory.listFiles(); String fileName = fileList[0].getAbsolutePath(); File LabFolder = new File("/sdcard/LabFolder/"); LabFolder.mkdir(); File outputFile = new File(LabFolder, fileName); try { FileOutputStream fo = new FileOutputStream(outputFile); } catch (FileNotFoundException ex) {} } } public void ReadData() { File fileDirectory = Environment.getExternalStorageDirectory(); fileDirectory = new File(fileDirectory+"/LabFolder"); File fileList[] = fileDirectory.listFiles(); for(int i = 0; i<fileList.length; i++) { arrayList.add(fileList[i].getName()); dbObj.Insert(fileList[i].getName(), fileList[i].getAbsolutePath()); } ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, android.R.id.text1, arrayList); listView.setAdapter(adapter); } public void AddNew(View view) { Intent redirect = new Intent(MainActivity.this, QuestionActivity.class); startActivity(redirect); } }
[ "dspc8@mail.umkc.edu" ]
dspc8@mail.umkc.edu
c408be2116ad02a423da16613e338cd8484235ce
98478def346603cfa6c5d2851c10fe1b3adfa29d
/app/src/main/java/pk/error_found/com/retrofitapp/RestClient.java
c3d08f45d9d11430d031715fd7d2ed5e20908b8f
[]
no_license
kotdroidZero/RetrofitApp
782545eb6b93b64fa4552cb917a65a046b4f9f7b
68b0ea6f7a76be1691535f58f79e8d3f831a11e1
refs/heads/master
2021-05-05T00:35:28.073722
2018-01-30T13:46:31
2018-01-30T13:46:31
119,541,687
3
0
null
null
null
null
UTF-8
Java
false
false
1,407
java
package pk.error_found.com.retrofitapp; import java.util.concurrent.TimeUnit; import okhttp3.OkHttpClient; import retrofit2.Retrofit; import retrofit2.converter.gson.GsonConverterFactory; /** * Created by user on 27/7/17. */ public class RestClient { private static API REST_API; public static API getClient() { if(REST_API==null) { createClient(); } return REST_API; } private static void createClient() { Retrofit.Builder mBuilder = new Retrofit.Builder() .baseUrl(Constants.BASE_URL). addConverterFactory(GsonConverterFactory.create()); REST_API=mBuilder.build().create(API.class); } /* // OkHttpClient.Builder httpClientBuilder=new OkHttpClient.Builder(); Retrofit.Builder retrofitBuilder=new Retrofit.Builder().baseUrl(Constants.BASE_URL) .addConverterFactory(GsonConverterFactory.create()); Retrofit retrofit=retrofitBuilder.client(httpClientBuilder.build()).build(); API api=retrofit.create(API.class); //way 2 *//*OkHttpClient httpClient=new OkHttpClient.Builder().build(); Retrofit retrofit=new Retrofit.Builder().baseUrl(Constants.BASE_URL) .addConverterFactory(GsonConverterFactory.create()).client(httpClient) .addConverterFactory(GsonConverterFactory.create()).build();*/ }
[ "12345678@Ps" ]
12345678@Ps
e413c1718e4d049669718d2f966a5c517f6c148b
fa93c9be2923e697fb8a2066f8fb65c7718cdec7
/sources/com/avito/android/messenger/map/viewing/view/PlatformMapView.java
34aefb8cca57865723bbd3b3097679cbef28c8e2
[]
no_license
Auch-Auch/avito_source
b6c9f4b0e5c977b36d5fbc88c52f23ff908b7f8b
76fdcc5b7e036c57ecc193e790b0582481768cdc
refs/heads/master
2023-05-06T01:32:43.014668
2021-05-25T10:19:22
2021-05-25T10:19:22
370,650,685
0
0
null
null
null
null
UTF-8
Java
false
false
17,254
java
package com.avito.android.messenger.map.viewing.view; import a2.b.a.a.a; import a2.g.r.g; import androidx.annotation.StringRes; import com.avito.android.avito_map.AvitoMapCameraPosition; import com.avito.android.avito_map.AvitoMapCameraUpdate; import com.avito.android.avito_map.AvitoMapPoint; import com.avito.android.messenger.channels.mvi.common.v2.Renderer; import com.avito.android.messenger.map.MapBottomSheet; import com.avito.android.remote.auth.AuthSource; import io.reactivex.rxjava3.core.Observable; import java.util.Set; import kotlin.Metadata; import kotlin.Unit; import kotlin.jvm.internal.Intrinsics; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import ru.avito.component.bottom_sheet.BottomSheet; import t6.n.y; import t6.r.a.j; import t6.y.f; @Metadata(bv = {1, 0, 3}, d1 = {"\u0000D\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0002\n\u0002\b\u0006\n\u0002\u0010\b\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0002\b\u0004\bf\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001:\u0001#J\u000f\u0010\u0004\u001a\u00020\u0003H&¢\u0006\u0004\b\u0004\u0010\u0005J\u000f\u0010\u0006\u001a\u00020\u0003H&¢\u0006\u0004\b\u0006\u0010\u0005J\u000f\u0010\u0007\u001a\u00020\u0003H&¢\u0006\u0004\b\u0007\u0010\u0005J\u000f\u0010\b\u001a\u00020\u0003H&¢\u0006\u0004\b\b\u0010\u0005J\u000f\u0010\t\u001a\u00020\u0003H&¢\u0006\u0004\b\t\u0010\u0005J#\u0010\r\u001a\u00020\u00032\b\b\u0001\u0010\u000b\u001a\u00020\n2\b\b\u0002\u0010\f\u001a\u00020\nH&¢\u0006\u0004\b\r\u0010\u000eR\u001c\u0010\u0012\u001a\b\u0012\u0004\u0012\u00020\u00030\u000f8&@&X¦\u0004¢\u0006\u0006\u001a\u0004\b\u0010\u0010\u0011R\u001c\u0010\u0015\u001a\b\u0012\u0004\u0012\u00020\u00130\u000f8&@&X¦\u0004¢\u0006\u0006\u001a\u0004\b\u0014\u0010\u0011R\u001c\u0010\u0017\u001a\b\u0012\u0004\u0012\u00020\u00030\u000f8&@&X¦\u0004¢\u0006\u0006\u001a\u0004\b\u0016\u0010\u0011R\u001c\u0010\u001a\u001a\b\u0012\u0004\u0012\u00020\u00180\u000f8&@&X¦\u0004¢\u0006\u0006\u001a\u0004\b\u0019\u0010\u0011R\u001c\u0010\u001d\u001a\b\u0012\u0004\u0012\u00020\u001b0\u000f8&@&X¦\u0004¢\u0006\u0006\u001a\u0004\b\u001c\u0010\u0011R\u001c\u0010\u001f\u001a\b\u0012\u0004\u0012\u00020\u00030\u000f8&@&X¦\u0004¢\u0006\u0006\u001a\u0004\b\u001e\u0010\u0011R\u001c\u0010\"\u001a\b\u0012\u0004\u0012\u00020 0\u000f8&@&X¦\u0004¢\u0006\u0006\u001a\u0004\b!\u0010\u0011¨\u0006$"}, d2 = {"Lcom/avito/android/messenger/map/viewing/view/PlatformMapView;", "Lcom/avito/android/messenger/channels/mvi/common/v2/Renderer;", "Lcom/avito/android/messenger/map/viewing/view/PlatformMapView$State;", "", "onStart", "()V", "onStop", "onDestroy", "onLowMemory", "showFindLocationError", "", "stringId", "duration", "showError", "(II)V", "Lio/reactivex/rxjava3/core/Observable;", "getFindLocationClicks", "()Lio/reactivex/rxjava3/core/Observable;", "findLocationClicks", "Lcom/avito/android/messenger/map/viewing/view/Pin;", "getPinClicks", "pinClicks", "getCreateRouteButtonClicks", "createRouteButtonClicks", "Lru/avito/component/bottom_sheet/BottomSheet$Visibility;", "getBottomSheetVisibilityStream", "bottomSheetVisibilityStream", "", "getMapIsReady", "mapIsReady", "getCameraDraggingStartedStream", "cameraDraggingStartedStream", "Lcom/avito/android/avito_map/AvitoMapCameraPosition;", "getCameraPosition", "cameraPosition", "State", "messenger_release"}, k = 1, mv = {1, 4, 2}) public interface PlatformMapView extends Renderer<State> { @Metadata(bv = {1, 0, 3}, d1 = {}, d2 = {}, k = 3, mv = {1, 4, 2}) public static final class DefaultImpls { public static void render(@NotNull PlatformMapView platformMapView, @NotNull State state) { Intrinsics.checkNotNullParameter(state, "state"); Renderer.DefaultImpls.render(platformMapView, state); } public static /* synthetic */ void showError$default(PlatformMapView platformMapView, int i, int i2, int i3, Object obj) { if (obj == null) { if ((i3 & 2) != 0) { i2 = 0; } platformMapView.showError(i, i2); return; } throw new UnsupportedOperationException("Super calls with default arguments not supported in this target, function: showError"); } } @Metadata(bv = {1, 0, 3}, d1 = {"\u0000D\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0010\"\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0002\b\r\n\u0002\u0010\b\n\u0002\b\u001b\b†\b\u0018\u0000 :2\u00020\u0001:\u0001:BI\u0012\f\u0010\u0017\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005\u0012\u0006\u0010\u0018\u001a\u00020\t\u0012\b\u0010\u0019\u001a\u0004\u0018\u00010\f\u0012\b\u0010\u001a\u001a\u0004\u0018\u00010\u000f\u0012\u0006\u0010\u001b\u001a\u00020\u0012\u0012\u0006\u0010\u001c\u001a\u00020\u0012\u0012\u0006\u0010\u001d\u001a\u00020\u0012¢\u0006\u0004\b8\u00109J\u000f\u0010\u0003\u001a\u00020\u0002H\u0016¢\u0006\u0004\b\u0003\u0010\u0004J\u0016\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005HÆ\u0003¢\u0006\u0004\b\u0007\u0010\bJ\u0010\u0010\n\u001a\u00020\tHÆ\u0003¢\u0006\u0004\b\n\u0010\u000bJ\u0012\u0010\r\u001a\u0004\u0018\u00010\fHÆ\u0003¢\u0006\u0004\b\r\u0010\u000eJ\u0012\u0010\u0010\u001a\u0004\u0018\u00010\u000fHÆ\u0003¢\u0006\u0004\b\u0010\u0010\u0011J\u0010\u0010\u0013\u001a\u00020\u0012HÆ\u0003¢\u0006\u0004\b\u0013\u0010\u0014J\u0010\u0010\u0015\u001a\u00020\u0012HÆ\u0003¢\u0006\u0004\b\u0015\u0010\u0014J\u0010\u0010\u0016\u001a\u00020\u0012HÆ\u0003¢\u0006\u0004\b\u0016\u0010\u0014J`\u0010\u001e\u001a\u00020\u00002\u000e\b\u0002\u0010\u0017\u001a\b\u0012\u0004\u0012\u00020\u00060\u00052\b\b\u0002\u0010\u0018\u001a\u00020\t2\n\b\u0002\u0010\u0019\u001a\u0004\u0018\u00010\f2\n\b\u0002\u0010\u001a\u001a\u0004\u0018\u00010\u000f2\b\b\u0002\u0010\u001b\u001a\u00020\u00122\b\b\u0002\u0010\u001c\u001a\u00020\u00122\b\b\u0002\u0010\u001d\u001a\u00020\u0012HÆ\u0001¢\u0006\u0004\b\u001e\u0010\u001fJ\u0010\u0010!\u001a\u00020 HÖ\u0001¢\u0006\u0004\b!\u0010\"J\u001a\u0010$\u001a\u00020\u00122\b\u0010#\u001a\u0004\u0018\u00010\u0001HÖ\u0003¢\u0006\u0004\b$\u0010%R\u001f\u0010\u0017\u001a\b\u0012\u0004\u0012\u00020\u00060\u00058\u0006@\u0006¢\u0006\f\n\u0004\b&\u0010'\u001a\u0004\b(\u0010\bR\u001b\u0010\u0019\u001a\u0004\u0018\u00010\f8\u0006@\u0006¢\u0006\f\n\u0004\b)\u0010*\u001a\u0004\b+\u0010\u000eR\u001b\u0010\u001a\u001a\u0004\u0018\u00010\u000f8\u0006@\u0006¢\u0006\f\n\u0004\b,\u0010-\u001a\u0004\b.\u0010\u0011R\u0019\u0010\u001c\u001a\u00020\u00128\u0006@\u0006¢\u0006\f\n\u0004\b/\u00100\u001a\u0004\b1\u0010\u0014R\u0019\u0010\u001b\u001a\u00020\u00128\u0006@\u0006¢\u0006\f\n\u0004\b2\u00100\u001a\u0004\b\u001b\u0010\u0014R\u0019\u0010\u0018\u001a\u00020\t8\u0006@\u0006¢\u0006\f\n\u0004\b3\u00104\u001a\u0004\b5\u0010\u000bR\u0019\u0010\u001d\u001a\u00020\u00128\u0006@\u0006¢\u0006\f\n\u0004\b6\u00100\u001a\u0004\b7\u0010\u0014¨\u0006;"}, d2 = {"Lcom/avito/android/messenger/map/viewing/view/PlatformMapView$State;", "", "", "toString", "()Ljava/lang/String;", "", "Lcom/avito/android/messenger/map/viewing/view/Pin;", "component1", "()Ljava/util/Set;", "Lcom/avito/android/messenger/map/MapBottomSheet$State;", "component2", "()Lcom/avito/android/messenger/map/MapBottomSheet$State;", "Lcom/avito/android/avito_map/AvitoMapCameraUpdate;", "component3", "()Lcom/avito/android/avito_map/AvitoMapCameraUpdate;", "Lcom/avito/android/avito_map/AvitoMapPoint;", "component4", "()Lcom/avito/android/avito_map/AvitoMapPoint;", "", "component5", "()Z", "component6", "component7", "pins", "bottomSheetState", "cameraUpdate", "userPoint", "isDragging", "awaitingNewUserLocation", "forceMoveCamera", "copy", "(Ljava/util/Set;Lcom/avito/android/messenger/map/MapBottomSheet$State;Lcom/avito/android/avito_map/AvitoMapCameraUpdate;Lcom/avito/android/avito_map/AvitoMapPoint;ZZZ)Lcom/avito/android/messenger/map/viewing/view/PlatformMapView$State;", "", "hashCode", "()I", "other", "equals", "(Ljava/lang/Object;)Z", AuthSource.SEND_ABUSE, "Ljava/util/Set;", "getPins", "c", "Lcom/avito/android/avito_map/AvitoMapCameraUpdate;", "getCameraUpdate", "d", "Lcom/avito/android/avito_map/AvitoMapPoint;", "getUserPoint", "f", "Z", "getAwaitingNewUserLocation", "e", AuthSource.BOOKING_ORDER, "Lcom/avito/android/messenger/map/MapBottomSheet$State;", "getBottomSheetState", g.a, "getForceMoveCamera", "<init>", "(Ljava/util/Set;Lcom/avito/android/messenger/map/MapBottomSheet$State;Lcom/avito/android/avito_map/AvitoMapCameraUpdate;Lcom/avito/android/avito_map/AvitoMapPoint;ZZZ)V", "Companion", "messenger_release"}, k = 1, mv = {1, 4, 2}) public static final class State { @NotNull public static final Companion Companion = new Companion(null); @NotNull public static final State h = new State(y.emptySet(), MapBottomSheet.State.Closed.INSTANCE, null, null, false, false, false); @NotNull public final Set<Pin> a; @NotNull public final MapBottomSheet.State b; @Nullable public final AvitoMapCameraUpdate c; @Nullable public final AvitoMapPoint d; public final boolean e; public final boolean f; public final boolean g; @Metadata(bv = {1, 0, 3}, d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0018\u0002\n\u0002\b\u0007\b†\u0003\u0018\u00002\u00020\u0001B\t\b\u0002¢\u0006\u0004\b\u0007\u0010\bR\u0019\u0010\u0003\u001a\u00020\u00028\u0006@\u0006¢\u0006\f\n\u0004\b\u0003\u0010\u0004\u001a\u0004\b\u0005\u0010\u0006¨\u0006\t"}, d2 = {"Lcom/avito/android/messenger/map/viewing/view/PlatformMapView$State$Companion;", "", "Lcom/avito/android/messenger/map/viewing/view/PlatformMapView$State;", "EMPTY", "Lcom/avito/android/messenger/map/viewing/view/PlatformMapView$State;", "getEMPTY", "()Lcom/avito/android/messenger/map/viewing/view/PlatformMapView$State;", "<init>", "()V", "messenger_release"}, k = 1, mv = {1, 4, 2}) public static final class Companion { public Companion() { } @NotNull public final State getEMPTY() { return State.h; } public Companion(j jVar) { } } public State(@NotNull Set<Pin> set, @NotNull MapBottomSheet.State state, @Nullable AvitoMapCameraUpdate avitoMapCameraUpdate, @Nullable AvitoMapPoint avitoMapPoint, boolean z, boolean z2, boolean z3) { Intrinsics.checkNotNullParameter(set, "pins"); Intrinsics.checkNotNullParameter(state, "bottomSheetState"); this.a = set; this.b = state; this.c = avitoMapCameraUpdate; this.d = avitoMapPoint; this.e = z; this.f = z2; this.g = z3; } /* JADX DEBUG: Multi-variable search result rejected for r5v0, resolved type: com.avito.android.messenger.map.viewing.view.PlatformMapView$State */ /* JADX WARN: Multi-variable type inference failed */ public static /* synthetic */ State copy$default(State state, Set set, MapBottomSheet.State state2, AvitoMapCameraUpdate avitoMapCameraUpdate, AvitoMapPoint avitoMapPoint, boolean z, boolean z2, boolean z3, int i, Object obj) { if ((i & 1) != 0) { set = state.a; } if ((i & 2) != 0) { state2 = state.b; } if ((i & 4) != 0) { avitoMapCameraUpdate = state.c; } if ((i & 8) != 0) { avitoMapPoint = state.d; } if ((i & 16) != 0) { z = state.e; } if ((i & 32) != 0) { z2 = state.f; } if ((i & 64) != 0) { z3 = state.g; } return state.copy(set, state2, avitoMapCameraUpdate, avitoMapPoint, z, z2, z3); } @NotNull public final Set<Pin> component1() { return this.a; } @NotNull public final MapBottomSheet.State component2() { return this.b; } @Nullable public final AvitoMapCameraUpdate component3() { return this.c; } @Nullable public final AvitoMapPoint component4() { return this.d; } public final boolean component5() { return this.e; } public final boolean component6() { return this.f; } public final boolean component7() { return this.g; } @NotNull public final State copy(@NotNull Set<Pin> set, @NotNull MapBottomSheet.State state, @Nullable AvitoMapCameraUpdate avitoMapCameraUpdate, @Nullable AvitoMapPoint avitoMapPoint, boolean z, boolean z2, boolean z3) { Intrinsics.checkNotNullParameter(set, "pins"); Intrinsics.checkNotNullParameter(state, "bottomSheetState"); return new State(set, state, avitoMapCameraUpdate, avitoMapPoint, z, z2, z3); } public boolean equals(@Nullable Object obj) { if (this == obj) { return true; } if (!(obj instanceof State)) { return false; } State state = (State) obj; return Intrinsics.areEqual(this.a, state.a) && Intrinsics.areEqual(this.b, state.b) && Intrinsics.areEqual(this.c, state.c) && Intrinsics.areEqual(this.d, state.d) && this.e == state.e && this.f == state.f && this.g == state.g; } public final boolean getAwaitingNewUserLocation() { return this.f; } @NotNull public final MapBottomSheet.State getBottomSheetState() { return this.b; } @Nullable public final AvitoMapCameraUpdate getCameraUpdate() { return this.c; } public final boolean getForceMoveCamera() { return this.g; } @NotNull public final Set<Pin> getPins() { return this.a; } @Nullable public final AvitoMapPoint getUserPoint() { return this.d; } public int hashCode() { Set<Pin> set = this.a; int i = 0; int hashCode = (set != null ? set.hashCode() : 0) * 31; MapBottomSheet.State state = this.b; int hashCode2 = (hashCode + (state != null ? state.hashCode() : 0)) * 31; AvitoMapCameraUpdate avitoMapCameraUpdate = this.c; int hashCode3 = (hashCode2 + (avitoMapCameraUpdate != null ? avitoMapCameraUpdate.hashCode() : 0)) * 31; AvitoMapPoint avitoMapPoint = this.d; if (avitoMapPoint != null) { i = avitoMapPoint.hashCode(); } int i2 = (hashCode3 + i) * 31; boolean z = this.e; int i3 = 1; if (z) { z = true; } int i4 = z ? 1 : 0; int i5 = z ? 1 : 0; int i6 = z ? 1 : 0; int i7 = (i2 + i4) * 31; boolean z2 = this.f; if (z2) { z2 = true; } int i8 = z2 ? 1 : 0; int i9 = z2 ? 1 : 0; int i10 = z2 ? 1 : 0; int i11 = (i7 + i8) * 31; boolean z3 = this.g; if (!z3) { i3 = z3 ? 1 : 0; } return i11 + i3; } public final boolean isDragging() { return this.e; } @NotNull public String toString() { StringBuilder L = a.L("State(\n | pins="); L.append(this.a); L.append(",\n | bottomSheetState="); L.append(this.b); L.append(",\n | cameraUpdate="); L.append(this.c); L.append(",\n | isDragging="); L.append(this.e); L.append(",\n | awaitingNewUserLocation="); L.append(this.f); L.append(",\n | forceMoveCamera="); return f.trimMargin$default(a.B(L, this.g, "\n |)"), null, 1, null); } } @NotNull Observable<BottomSheet.Visibility> getBottomSheetVisibilityStream(); @NotNull Observable<Unit> getCameraDraggingStartedStream(); @NotNull Observable<AvitoMapCameraPosition> getCameraPosition(); @NotNull Observable<Unit> getCreateRouteButtonClicks(); @NotNull Observable<Unit> getFindLocationClicks(); @NotNull Observable<Boolean> getMapIsReady(); @NotNull Observable<Pin> getPinClicks(); void onDestroy(); void onLowMemory(); void onStart(); void onStop(); void showError(@StringRes int i, int i2); void showFindLocationError(); }
[ "auchhunter@gmail.com" ]
auchhunter@gmail.com
641543672ec3d579d1427480f8ad9443aec09649
118eb58e3028a81d37fb06358ccfe60997a5b594
/UniversalAlarmSystem/AlarmSystem/src/application/AlarmTable.java
9477922df90f214828534772ce5d755eec5cfa37
[]
no_license
Hamza-Malik/Java
eb497e124c9c21e5c6bcff4630bcd9b7e054c0e5
851b9cf95f94d64455b38eb823850ae9fd745002
refs/heads/master
2022-11-30T19:40:36.821087
2022-11-18T13:38:28
2022-11-18T13:38:28
175,086,047
0
0
null
null
null
null
UTF-8
Java
false
false
1,665
java
package application; import javafx.beans.property.SimpleStringProperty; public class AlarmTable { private SimpleStringProperty alarmId; private SimpleStringProperty customerId; private SimpleStringProperty trigerredZone; private SimpleStringProperty trigerredDate; private SimpleStringProperty trigerredTime; public AlarmTable(String alarmId, String customerId,String trigerredZone, String trigerredDate, String trigerredTime) { super(); this.alarmId = new SimpleStringProperty(alarmId); this.customerId = new SimpleStringProperty(customerId); this.trigerredZone = new SimpleStringProperty(trigerredZone); this.trigerredDate = new SimpleStringProperty(trigerredDate); this.trigerredTime = new SimpleStringProperty(trigerredTime); } public String getAlarmId() { return alarmId.get(); } public void setAlarmId(SimpleStringProperty alarmId) { this.alarmId = alarmId; } public String getCustomerId() { return customerId.get(); } public void setCustomerId(SimpleStringProperty customerId) { this.customerId = customerId; } public String getTrigerredZone() { return trigerredZone.get(); } public void setTrigerredZone(SimpleStringProperty trigerredZone) { this.trigerredZone = trigerredZone; } public String getTrigerredDate() { return trigerredDate.get(); } public void setTrigerredDate(SimpleStringProperty trigerredDate) { this.trigerredDate = trigerredDate; } public String getTrigerredTime() { return trigerredTime.get(); } public void setTrigerredTime(SimpleStringProperty trigerredTime) { this.trigerredTime = trigerredTime; } }
[ "noreply@github.com" ]
noreply@github.com
6da53136f7094b3cc3a8f2d2df5cb886de4e6e30
41bac86d728e5f900e3d60b5a384e7f00c966f5b
/communote/api/src/main/java/com/communote/server/api/core/installer/DatabaseInitializationStatusCallback.java
3b996aeded3eb9bd9b917c55da276beea54f79ff
[ "Apache-2.0" ]
permissive
Communote/communote-server
f6698853aa382a53d43513ecc9f7f2c39f527724
e6a3541054baa7ad26a4eccbbdd7fb8937dead0c
refs/heads/master
2021-01-20T19:13:11.466831
2019-02-02T18:29:16
2019-02-02T18:29:16
61,822,650
27
4
Apache-2.0
2018-12-08T19:19:06
2016-06-23T17:06:40
Java
UTF-8
Java
false
false
2,813
java
package com.communote.server.api.core.installer; import com.communote.server.api.core.config.database.DatabaseConnectionException; /** * Callback interface to inform the caller of the status of the initialization of the database. * * @author Communote GmbH - <a href="http://www.communote.com/">http://www.communote.com/</a> * */ public interface DatabaseInitializationStatusCallback { /** * Called to inform that the schema is going to be created on the global database. */ public void creatingSchema(); /** * Called to inform that the schema creation failed. */ public void creatingSchemaFailed(); /** * Called to inform that the schema creation succeeded. */ public void creatingSchemaSucceeded(); /** * Called to inform that database initialization has started. */ public void databaseInitialization(); /** * Called to inform that database initialization has already been successfully completed. */ public void databaseInitializationAlreadyDone(); /** * Called to inform that database initialization has been successfully finished. * * @param success * the status of the database initialization */ public void databaseInitializationFinished(boolean success); /** * Called to inform that the connection to the global database is going to be established. */ public void establishingConnection(); /** * Called to inform that the connection to the global database could not be established. * * @param cause * the cause for the failure */ public void establishingConnectionFailed(DatabaseConnectionException cause); /** * Called to inform that the connection to the global database could be established * successfully. */ public void establishingConnectionSucceeded(); /** * Called to inform that the installation is being prepared. */ public void preparingInstallation(); /** * Called to inform that preparing the installation failed. */ public void preparingInstallationFailed(); /** * Called to inform that preparing the installation was successful. */ public void preparingInstallationSucceeded(); /** * Called to inform that initial data like country names and language names is stored in the * database. */ public void writingInitialData(); /** * Called to inform that storing the initial data failed. */ public void writingInitialDataFailed(); /** * Called to inform that storing the initial data succeeded. */ public void writingInitialDataSucceeded(); }
[ "ronny.winkler@communote.com" ]
ronny.winkler@communote.com
7e17606cd185c456f1fa67885557664ba5df3022
4bbb4084bfed3a12c3dac2e3b9f646f646e992f4
/src/main/java/com/forum/entity/Comment.java
5fd87c2c8e39f85a5c973e86a4c98169e260790a
[]
no_license
eerduosi/forum
24d017c97ac9b0412f0bf0efdf3cadefc0c74f79
39b410be20361073f8a4dcf92efc6b5c0cb2831c
refs/heads/master
2022-12-21T20:25:56.738943
2020-09-30T15:11:01
2020-09-30T15:11:01
286,218,993
0
0
null
null
null
null
UTF-8
Java
false
false
896
java
package com.forum.entity; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import java.util.Date; @Data @NoArgsConstructor @AllArgsConstructor public class Comment { /** * 评论 id */ private Integer id; /** * 发起评论 userId */ private Integer userId; /** * 被回复目标类型 , 1-帖子 ; 2-评论; 3-用户; */ private Integer entityType; /** * 被回复目标类型的 id */ private Integer entityId; /** * 被回复评论的评论的 id, 如果没有则默认为 0 */ private Integer targetId; /** * 评论内容 */ private String content; /** * 评论状态 */ private Integer status; /** * 评论时间 */ private Date createTime; }
[ "1119878191@qq.com" ]
1119878191@qq.com
8c283d281648f163ead5dff17d87ff036d88391e
f7582e9a1db4de2118f56b732b9e0d40ef1258f6
/ArrayStack.java
848a66c9afed0446e7cb6d932069663e97ae9716
[]
no_license
adilbeknurmakov/Data-Structures-
996c7986e77068e72434bef2415b9c3a65628143
c1fdf1ef466fc197b1db9fbf421bb82d78000ae3
refs/heads/master
2020-03-18T10:04:54.118650
2018-05-23T16:18:12
2018-05-23T16:18:12
134,596,030
0
0
null
null
null
null
UTF-8
Java
false
false
1,706
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 csci152.impl; import csci152.adt.Stack; /** * * @author Adilbek Nurmakov and Akhan Janabekov * @param <T> */ public class ArrayStack<T> implements Stack<T> { private int size = 0; private int maxSize = 10; T[] arr = (T[])new Object[maxSize]; @Override public void push(T value) { if (size == arr.length) { T[] buf = (T[])new Object[arr.length * 2]; for (int i = 0; i < size; i++) { buf[i] = arr[i]; } arr = buf; arr[size]=value; size++; } else { arr[size] = value; size++; } } @Override public T pop() throws Exception { if (size == 0) { throw new Exception("Stack is already empty"); } else { T last = arr[size-1]; size--; return last; } } @Override public int getSize() { return size; } @Override public void clear() { size = 0; } public String toString() { String res = "Stack: ["; if (size == 0) { System.out.println(res + "]"); } for (int i = 0; i < size; ++i) { res += arr[i]; if (i == size - 1) { res += "]"; } else { res += ", "; } } return res; } }
[ "noreply@github.com" ]
noreply@github.com
2b2c47fd430d5bca6764786a5f4ae8c3baeeaed6
1a975ed9d495b94e02b63e9551aae721594c2c49
/src/com/game/pileon/ScoreScreen.java
cbd2a618493b3b897b678226ce2789080cf6407b
[]
no_license
PileOnDevs/pile-on
902eb9c7b6af8c2ff9cc579958ba6895b0747d32
2176204ef20987a53d7fec71a54e4f437912c1d7
refs/heads/master
2020-06-03T04:42:19.279954
2013-03-10T05:57:24
2013-03-10T05:57:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,993
java
package com.game.pileon; import java.util.ArrayList; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.TextView; public class ScoreScreen extends Activity { private boolean gameInProgress; private ArrayList<TextView> scoreList; private HighScore scores; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_high_scores); Intent intent = getIntent(); gameInProgress = intent.getBooleanExtra( "com.game.pileon.GameInProgress", false); scores = new HighScore(this); scoreList = new ArrayList<TextView>(10); setupScoreList(); displayScores(); } private void setupScoreList(){ for(int i = 0; i < 10; i++){ String scoreID = "score" + (i+1); // Log.i("PO Scores", "scoreID: " + scoreID); int resID = getResources().getIdentifier(scoreID, "id", getPackageName()); TextView scoreEntry = (TextView)findViewById(resID); scoreList.add(i, scoreEntry); // Log.i("PO Scores", "added score view to list: " + scoreEntry.getText()); } } private void displayScores(){ for(int i = 0; i < 10; i++){ scores.addScore(i); TextView scoreEntry = scoreList.get(i); // Log.i("PO Scores", "displaying score: " + scores.getScore(i)); scoreEntry.setText(String.valueOf(scores.getScore(i))); } } public void backToMain(View view) { Intent intent = new Intent(ScoreScreen.this, GameMenu.class); intent.putExtra("com.game.pileon.GameInProgress", gameInProgress); startActivity(intent); } @Override protected void onDestroy() { super.onDestroy(); } }
[ "ambiturner0@gmail.com" ]
ambiturner0@gmail.com
13313bc7b486a79d781773ed87e03653f0ac75c4
dbb96e348308ab703e569aa9ed0b75cd299fc478
/engenharia 3/Listas/Listas-Eng-Software-master/Lista 3/Exercício 16/src/caixa/Moedas.java
5fd7075911772596d4ab61813a039f705440c97e
[]
no_license
ynhic/FATEC
4ea6d25ae24512e4e728b17d9acce457ca028a20
00a699f51a7759a656f22b502b7af8a9e8013e80
refs/heads/master
2021-01-18T17:52:51.770883
2017-09-28T01:59:03
2017-09-28T01:59:03
100,512,087
1
0
null
null
null
null
UTF-8
Java
false
false
51
java
package caixa; public class Moedas { // Code }
[ "ynhic@hotmail.com" ]
ynhic@hotmail.com
cf1d4a84f7d77bda015a1722271c1ab39321c6e2
889b3c05a2cad4429df95512e79fe6a13f91e5c2
/src/main/java/com/sunxc/community/controller/ProfileController.java
2187999272d12c64acd546d193ec5ab2f8d66340
[]
no_license
c0ngfun/community
2e93bd50751e70cb315d5e29283dfa309865543a
c448e25d0fc19ea340cfc5eeb37137bfaa6e336c
refs/heads/master
2022-06-21T15:41:17.707449
2020-11-22T07:08:48
2020-11-22T07:08:48
230,180,156
0
1
null
2022-06-17T02:48:12
2019-12-26T02:21:50
Java
UTF-8
Java
false
false
441
java
package com.sunxc.community.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; /** * @projectname:community * @classname:ProfileController * @description: * @auhtor: sunxc * @date: 2020/1/1-10:57 * @version: 1.0 */ @Controller public class ProfileController { @GetMapping("/profile/{action}") public String profile(){ return "profile"; } }
[ "sunxc50@chinaunicom.cn" ]
sunxc50@chinaunicom.cn
261f5b9390e9a52412b2267bceffcd3b95cd9e22
47119d527d55e9adcb08a3a5834afe9a82dd2254
/controllersvc/src/main/java/com/emc/storageos/vplexcontroller/VPlexControllerUtils.java
ad3ca74aaf0845b45385048fbf5b129d47b71717
[]
no_license
chrisdail/coprhd-controller
1c3ddf91bb840c66e4ece3d4b336a6df421b43e4
38a063c5620135a49013aae5e078aeb6534a5480
refs/heads/master
2020-12-03T10:42:22.520837
2015-06-08T15:24:36
2015-06-08T15:24:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
9,600
java
/** * Copyright 2015 EMC Corporation * All Rights Reserved */ package com.emc.storageos.vplexcontroller; import java.net.URI; import java.net.URISyntaxException; import java.util.Iterator; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.emc.storageos.db.client.DbClient; import com.emc.storageos.db.client.model.DataObject; import com.emc.storageos.db.client.model.DiscoveredDataObject; import com.emc.storageos.db.client.model.StorageProvider; import com.emc.storageos.db.client.model.StorageSystem; import com.emc.storageos.db.client.model.StringSet; import com.emc.storageos.db.client.model.Volume; import com.emc.storageos.db.client.util.NullColumnValueGetter; import com.emc.storageos.db.exceptions.DatabaseException; import com.emc.storageos.exceptions.DeviceControllerException; import com.emc.storageos.volumecontroller.ControllerException; import com.emc.storageos.vplex.api.VPlexApiClient; import com.emc.storageos.vplex.api.VPlexApiException; import com.emc.storageos.vplex.api.VPlexApiFactory; import com.emc.storageos.vplex.api.clientdata.VolumeInfo; public class VPlexControllerUtils { // logger reference. private static final Logger log = LoggerFactory .getLogger(VPlexControllerUtils.class); /** * Get a DataObject. Throw exception if not found or inactive. * @param clazz * @param id * @return * @throws ControllerException */ protected static <T extends DataObject> T getDataObject(Class<T> clazz, URI id, DbClient dbClient) throws DeviceControllerException { try { T object = null; if (id != null) { object = dbClient.queryObject(clazz, id); if (object == null) { throw VPlexApiException.exceptions.getDataObjectFailedNotFound( clazz.getSimpleName(), id.toString()); } if (object.getInactive()) { log.info("database object is inactive: " + object.getId().toString()); throw VPlexApiException.exceptions.getDataObjectFailedInactive(id.toString()); } } return object; } catch (DatabaseException ex) { throw VPlexApiException.exceptions.getDataObjectFailedExc(id.toString(), ex); } } /** * Get the HTTP client for making requests to the passed VPlex management server. * * @param vplexApiFactory A reference to the VPlex API factory. * @param vplexMnmgtSvr A VPlex management server. * @param dbClient A reference to a DB client. * * @return A reference to the VPlex API HTTP client. * @throws URISyntaxException */ public static VPlexApiClient getVPlexAPIClient(VPlexApiFactory vplexApiFactory, StorageProvider vplexMnmgtSvr, DbClient dbClient) throws URISyntaxException { URI vplexEndpointURI = new URI("https", null, vplexMnmgtSvr.getIPAddress(), vplexMnmgtSvr.getPortNumber(), "/", null, null); VPlexApiClient client = vplexApiFactory.getClient(vplexEndpointURI, vplexMnmgtSvr.getUserName(), vplexMnmgtSvr.getPassword()); return client; } /** * Get the HTTP client for making requests to the passed VPlex storage system. * * @param vplexApiFactory A reference to the VPlex API factory. * @param vplexSystem The VPlex storage system. * @param dbClient A reference to a DB client. * * @return A reference to the VPlex API HTTP client. * @throws URISyntaxException */ public static VPlexApiClient getVPlexAPIClient(VPlexApiFactory vplexApiFactory, StorageSystem vplexSystem, DbClient dbClient) throws URISyntaxException { // Create the URI to access the VPlex Management Server based // on the IP and port for the active provider for the passed // VPlex system. StorageProvider activeMgmntSvr = null; URI activeMgmntSvrURI = vplexSystem.getActiveProviderURI(); if (!NullColumnValueGetter.isNullURI(activeMgmntSvrURI)) { activeMgmntSvr = dbClient.queryObject(StorageProvider.class, activeMgmntSvrURI); } if (activeMgmntSvr == null) { log.error("No active management server for VPLEX system {}", vplexSystem.getId()); throw VPlexApiException.exceptions.connectionFailure(vplexSystem.getId().toString()); } return getVPlexAPIClient(vplexApiFactory, activeMgmntSvr, dbClient); } /** * Get the HTTP client for making requests to the passed VPlex storage system URI. * Performs some helpful validation on the requested VPLEX system before returning * successfully. * * @param vplexApiFactory A reference to the VPlex API factory. * @param vplexSystemUri The VPlex storage system URI. * @param dbClient A reference to a DB client. * * @return A reference to the VPlex API HTTP client. * @throws URISyntaxException */ public static VPlexApiClient getVPlexAPIClient(VPlexApiFactory vplexApiFactory, URI vplexUri, DbClient dbClient) throws URISyntaxException { if (vplexUri == null) { log.error("The provided VPLEX Storage System URI was null."); throw VPlexApiException.exceptions.vplexUriIsNull(); } StorageSystem vplex = dbClient.queryObject(StorageSystem.class, vplexUri); if (vplex == null) { log.error("No VPLEX Storage System was found with URI {}.", vplexUri.toString()); throw VPlexApiException.exceptions.vplexSystemNotFound(vplexUri.toString()); } if (!vplex.getSystemType().equals(DiscoveredDataObject.Type.vplex.name())) { log.error("The Storage System (of type {}) with URI {} is not a VPLEX system.", vplex.getSystemType(), vplexUri.toString()); throw VPlexApiException.exceptions.invalidStorageSystemType( vplex.getSystemType(), vplexUri.toString()); } return getVPlexAPIClient(vplexApiFactory, vplex, dbClient); } /** * Determines the cluster name for a VPlex virtual volume based on the * volume's virtual array. * * @param dbClient db client * @param vplexVolume The VPlex volume whose cluster we want to find. * @return The VPlex cluster name * @throws URISyntaxException */ public static String getVPlexClusterName(DbClient dbClient, Volume vplexVolume) { String clusterName = null; // Get the virtual array from the vplex virtual volume. This will be used // to determine the volume's vplex cluster. URI vaURI = vplexVolume.getVirtualArray(); // Get the volume's vplex storage system so we can a handle on the vplex client StorageSystem vplexSystem = getDataObject(StorageSystem.class, vplexVolume.getStorageController(), dbClient); VPlexApiClient client = null; try { client = VPlexControllerUtils.getVPlexAPIClient(VPlexApiFactory.getInstance(), vplexSystem, dbClient); } catch (URISyntaxException e) { throw VPlexApiException.exceptions.connectionFailure(vplexVolume.getStorageController().toString()); } StringSet assocVolumes = vplexVolume.getAssociatedVolumes(); Iterator<String> assocVolumesIterator = assocVolumes.iterator(); while (assocVolumesIterator.hasNext()) { Volume assocVolume = getDataObject(Volume.class, URI.create(assocVolumesIterator.next()), dbClient); if (assocVolume.getVirtualArray().toString().equals(vaURI.toString())) { StorageSystem assocVolumeSystem = getDataObject(StorageSystem.class, assocVolume.getStorageController(), dbClient); VolumeInfo info = new VolumeInfo(assocVolumeSystem.getNativeGuid(), assocVolume.getWWN().toUpperCase().replaceAll(":", ""), assocVolume.getNativeId(), assocVolume.getThinlyProvisioned().booleanValue()); clusterName = client.getClaimedStorageVolumeClusterName(info); log.info("Found cluster {} for volume", clusterName); } } return clusterName; } /** * Returns the cluster name (free form, user-configurable) * for a given VPLEX cluster id (either "1" or "2"). * * @param clusterId the cluster id (either "1" or "2") * @param vplexUri URI of the VPLEX to look at * @param dbClient a database client instance * * @return the cluster name as configured by the user, or null * if it couldn't be determined */ public static String getClusterNameForId(String clusterId, URI vplexUri, DbClient dbClient) { String clusterName = null; VPlexApiClient client = null; try { VPlexApiFactory vplexApiFactory = VPlexApiFactory.getInstance(); client = VPlexControllerUtils.getVPlexAPIClient(vplexApiFactory, vplexUri, dbClient); } catch (URISyntaxException e) { log.error("cannot load vplex api client", e); } if (null != client) { clusterName = client.getClusterName(clusterId); } log.info("VPLEX cluster name for cluster id {} is {}", clusterId, clusterName); return clusterName; } }
[ "review-coprhd@coprhd.org" ]
review-coprhd@coprhd.org
4bc933712ba70e9528ba0da356f7764c74ea7f32
d9400b75441a404296bde43113e44ad087b7b3af
/ProjectBaby/src/sitterboard/SitterBoardFileDownLoaderServlet.java
a9c7f9fd08fb3a98453b5254c159b465a0ac6e75
[]
no_license
bora-jeong97/project_Babysitter_jsp
434d85578d6d974abef6f3978ae51f4b4c782748
8b4b4db0bcc0674b83fee3610bc3fb14253c5b9d
refs/heads/master
2022-05-23T15:17:28.966990
2020-04-24T08:48:13
2020-04-24T08:48:13
258,456,899
0
0
null
null
null
null
UTF-8
Java
false
false
2,856
java
package sitterboard; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import javax.servlet.ServletConfig; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @WebServlet("/fileDown") public class SitterBoardFileDownLoaderServlet extends HttpServlet { ServletConfig mConfig = null; static final int BUFFER_SIZE = 8192; @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { System.out.println("file doget"); String filename = req.getParameter("filename"); String sseq = req.getParameter("seq"); int seq = Integer.parseInt(sseq); String type = req.getParameter("type"); String ofilename = req.getParameter("ofilename"); System.out.println("filename:" + filename); if(type.equals("download")) { BufferedOutputStream out = new BufferedOutputStream(resp.getOutputStream()); String filepath = ""; // tomcat(Server) filepath = mConfig.getServletContext().getRealPath("/upload"); // 폴더 (Client) // filepath = "d:\\tmp"; //filepath = filepath + "\\" + filename + ".temp"; filepath = filepath + "\\" + filename; System.out.println("다운로드: " + filepath); File f = new File(filepath); // 파일이 생성되는 부분은 아님 // 이 파일이 있는지 먼저 봐야함. if(f.exists()&& f.canRead()) { //System.out.println("파일이 맞습니다."); resp.setHeader("Content-Disposition", "attachment; filename=\"" + ofilename + "\";"); resp.setHeader("Content-Transfer-Encoding", "binary;"); resp.setHeader("Content-Length", "" + f.length()); // 파일의 길이값 resp.setHeader("Pragma", "no-cache;"); // 캐시를 저장을 하겠냐 말겠냐 resp.setHeader("Expires", "-1;"); // 기한 //파일을 생성, 거기에 기입 BufferedInputStream fileInput = new BufferedInputStream(new FileInputStream(f)); byte buffer[] = new byte[BUFFER_SIZE]; // 저장소 크기 int read = 0; while( (read = fileInput.read(buffer) ) != -1) { out.write(buffer, 0, read); } fileInput.close(); out.flush(); //resp.setHeader("Content-Disposition","attachment; filename=" + originalFileName + ";"); } } } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // TODO Auto-generated method stub super.doPost(req, resp); } @Override public void init(ServletConfig config) throws ServletException { // TODO Auto-generated method stub super.init(); mConfig = config; } }
[ "purple7714@naver.com" ]
purple7714@naver.com
a62d1789ab843a6c05f8d87504272d4a4af9c9ef
3c8d9b9149ebf9ff8f23f7d977613f8727d477f9
/app/src/main/java/com/example/daron/tictactoe/PlayActivity.java
79296edc96455db75d0b5cec753aea869db8a207
[]
no_license
daronmcintosh/TicTacToe
e3bd4736ff15692143ab63ad2132db1f93567d76
6269e4080175bde427caf2badfbf4749b213bf97
refs/heads/master
2021-09-18T01:11:45.541714
2018-07-08T04:42:13
2018-07-08T04:42:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,963
java
package com.example.daron.tictactoe; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.Handler; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.ImageButton; import android.widget.TextView; import android.widget.Toast; public class PlayActivity extends AppCompatActivity { public static final String USER_NAME = "name"; private static TicTacToe TTTboard = new TicTacToe(); private int currentState = TicTacToe.PLAYING; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_play); Intent intent = getIntent(); String userNameText = intent.getStringExtra(USER_NAME); TextView welcomeUserView = findViewById(R.id.welcomeUser); String greeting = getString(R.string.greeting, userNameText); welcomeUserView.setText(greeting); } // Restarts the game by resetting everything to their initial values public void restartGame(View view) { // if the state is greater than 0 that means the game is over if (currentState > 0) { TTTboard.clearBoard(); currentState = TicTacToe.PLAYING; this.clearCells(); this.updateGameState(currentState); } } @Override protected void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); outState.putIntArray("board", TTTboard.getBoard()); outState.putInt("gameState", currentState); } @Override protected void onRestoreInstanceState(Bundle savedInstanceState) { super.onRestoreInstanceState(savedInstanceState); setBoard(savedInstanceState.getIntArray("board")); updateGameState(savedInstanceState.getInt("gameState")); } public void setBoard(int[] board) { for (int location = 0; location < 9; location++) { if (board[location] == ITicTacToe.CROSS) { TTTboard.setMove(ITicTacToe.CROSS, location); this.setImage(getButtonID(location), TicTacToe.CROSS); } else if (board[location] == ITicTacToe.NOUGHT) { TTTboard.setMove(ITicTacToe.NOUGHT, location); this.setImage(getButtonID(location), TicTacToe.NOUGHT); } } } // Updates the game status public void updateGameState(int currentState) { TextView gameStateView = (TextView) findViewById(R.id.gameState); if (currentState == ITicTacToe.CROSS_WON) { gameStateView.setText(R.string.userWon); } else if (currentState == ITicTacToe.NOUGHT_WON) { gameStateView.setText(R.string.computerWon); } else if (currentState == ITicTacToe.TIE) { gameStateView.setText(R.string.tie); } else { gameStateView.setText(R.string.gameState); } } // Clear the contents of the buttons public void clearCells() { int id; for (int x = 0; x < 9; x++) { id = this.getButtonID(x); this.setImage(id, ITicTacToe.EMPTY); } } // Sets the content of a button based on which button was pressed public void makeMove(View view) { int location = getLocation(view.getId()); if (currentState == TicTacToe.PLAYING) { TTTboard.setMove(ITicTacToe.CROSS, location); boolean validMove = this.setImage(view.getId(), ITicTacToe.CROSS); currentState = TTTboard.checkForWinner(); // We don't want the computer to move if the player has won already and vice-versa // Extra feature, the player has to make a valid move for the computer to move if (currentState == ITicTacToe.PLAYING && validMove) { int computerMove = TTTboard.getComputerMove(); final int id = this.getButtonID(computerMove); TTTboard.setMove(ITicTacToe.NOUGHT, computerMove); // Extra feature: make it seems like the computer is thinking final Handler handler = new Handler(); handler.postDelayed(new Runnable() { @Override public void run() { setImage(id, TicTacToe.NOUGHT); } }, 100); currentState = TTTboard.checkForWinner(); } this.updateGameState(currentState); } } // Sets the button's content based on cell content and returns if a valid move was made public boolean setImage(int id, int player) { ImageButton button = findViewById(id); Bitmap bmp; String buttonTag = (String) button.getTag(); boolean validMove; TextView turnView = (TextView) findViewById(R.id.turn); String turnString; if(buttonTag.equals("empty") && player == ITicTacToe.CROSS){ bmp = BitmapFactory.decodeResource(getResources(), R.drawable.x); button.setImageBitmap(bmp); button.setTag("R.drawable.x"); turnString = "O turn"; turnView.setText(turnString); validMove = true; } else if(buttonTag.equals("empty") && player == ITicTacToe.NOUGHT){ bmp = BitmapFactory.decodeResource(getResources(), R.drawable.o); button.setImageBitmap(bmp); button.setTag("R.drawable.o"); turnString = "X turn"; turnView.setText(turnString); validMove = true; } else if(player == ITicTacToe.EMPTY){ button.setImageBitmap(null); button.setTag("empty"); validMove = true; }else { Toast.makeText(this, "Invalid move, try again", Toast.LENGTH_SHORT).show(); TTTboard.setMove(ITicTacToe.EMPTY, getLocation(id)); validMove = false; } return validMove; } // Returns the location of a button based on the id public int getLocation(int id) { int location = -1; switch (id) { case R.id.button0: location = 0; break; case R.id.button1: location = 1; break; case R.id.button2: location = 2; break; case R.id.button3: location = 4; break; case R.id.button4: location = 4; break; case R.id.button5: location = 5; break; case R.id.button6: location = 6; break; case R.id.button7: location = 7; break; case R.id.button8: location = 8; break; } return location; } // Returns the id of the button based on the location public int getButtonID(int location) { int buttonID = -1; switch (location) { case 0: buttonID = R.id.button0; break; case 1: buttonID = R.id.button1; break; case 2: buttonID = R.id.button2; break; case 3: buttonID = R.id.button3; break; case 4: buttonID = R.id.button4; break; case 5: buttonID = R.id.button5; break; case 6: buttonID = R.id.button6; break; case 7: buttonID = R.id.button7; break; case 8: buttonID = R.id.button8; break; } return buttonID; } }
[ "mcintoshdaron@gmail.com" ]
mcintoshdaron@gmail.com
ca3a32de6200302be2fb8fb51d887406be81229c
3f2300adb5dae6ce4dd230ea93f93a3426222c86
/app/src/main/java/com/valmaraz/mvp/model/weather/WeatherClient.java
4e7bdfa63b8a96977705271e12654380ea0304a5
[ "MIT" ]
permissive
robsonmobile/mvp-android
bbe8e42722ba69e81027b84f7dc22c726f2768df
355be3d205f0b7e89136b4b575d3f91aceb9e1be
refs/heads/master
2021-01-12T02:45:47.429275
2016-09-23T19:21:17
2016-09-23T19:21:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,622
java
package com.valmaraz.mvp.model.weather; import android.support.annotation.NonNull; import android.text.TextUtils; import com.google.gson.Gson; import com.valmaraz.mvp.model.BaseClient; import com.valmaraz.mvp.model.entity.City; import com.valmaraz.mvp.model.entity.Group; import com.valmaraz.mvp.model.network.NetworkCallback; /** * Created by Víctor Almaraz on 16/04/2016. * http://www.valmaraz.com */ public class WeatherClient extends BaseClient { public WeatherClient() { super(); } public void getList(int[] cityIds, @NonNull final WeatherRepository.WeatherListListener callback) { // Build url StringBuilder sb = new StringBuilder(); String delim = ""; for (int cityId : cityIds) { sb.append(delim).append(cityId); delim = ","; } String url = "group?id=" + sb.toString(); // Configure response NetworkCallback networkCallback = new NetworkCallback() { @Override public void success(String body) { Group group = new Gson().fromJson(body, Group.class); callback.onWeatherListReceived(group.cities); } @Override public void failure(String body) { // TODO: set default error message String message = ""; if (!TextUtils.isEmpty(body)) { Error error = new Gson().fromJson(body, Error.class); message = error.getMessage(); } callback.onFailure(message); } }; makeGetRequest(url, networkCallback); } public void getDetails(@NonNull City city, @NonNull final WeatherRepository.WeatherDetailsListener callback) { // Build url String url = "weather?id=" + city.id; // Configure response NetworkCallback networkCallback = new NetworkCallback() { @Override public void success(String body) { City city = new Gson().fromJson(body, City.class); callback.onWeatherDetailsReceived(city); } @Override public void failure(String body) { // TODO: set default error message String message = ""; if (!TextUtils.isEmpty(body)) { Error error = new Gson().fromJson(body, Error.class); message = error.getMessage(); } callback.onFailure(message); } }; makeGetRequest(url, networkCallback); } }
[ "support@valmaraz.com" ]
support@valmaraz.com
38f049d5329f805cad1dcc009ac57211433ff88e
64e1ac392125843d35a91a9ae432c7a08f8f4b61
/stream.linq/src/main/java/com/streamlinq/core/Func_T3_R.java
d8679ae2ace3243e5554621f50af22dc6a96e326
[]
no_license
MrZhangYuan/linqstreamdemo
cdb35be926382b9fd525b3eb1acaf0d87d7e4bbc
a5cfff10d91fe2852e5ae7a297dcf9f963c73723
refs/heads/master
2021-04-15T16:37:23.610721
2018-03-30T10:39:31
2018-03-30T10:39:31
126,458,943
4
0
null
null
null
null
UTF-8
Java
false
false
211
java
package main.java.com.streamlinq.core; /** * Created by yuany on 2018/1/18. */ @FunctionalInterface public interface Func_T3_R<T1, T2, T3, R> { R Invoke(T1 var1, T2 val2, T3 val3) throws Exception; }
[ "zhangyuan@niwodai.net" ]
zhangyuan@niwodai.net
6070d9233ee667120ccf672b3e1e5e8e4bd823f5
74e8183f794f8bf3467d4ec18ec7d69d4f2409c3
/library/src/main/java/com/jaredrummler/apkparser/struct/xml/XmlNodeHeader.java
2e58565343fc64f758805f31e225d8375b12031c
[ "BSD-3-Clause" ]
permissive
weiyitai/APKParser
f775e513db0e9fb54d0987c6a7dfff3a0644e51d
38b8499f16ffaa9db0e1c5af1b5cb93760d7b152
refs/heads/master
2022-10-05T11:32:28.795690
2022-09-08T16:10:18
2022-09-08T16:10:18
124,893,165
0
0
BSD-3-Clause
2018-03-12T13:27:22
2018-03-12T13:27:22
null
UTF-8
Java
false
false
2,333
java
/* * Copyright (c) 2015, Jared Rummler * Copyright (c) 2015, Liu Dong * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the <organization> nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package com.jaredrummler.apkparser.struct.xml; import com.jaredrummler.apkparser.struct.ChunkHeader; public class XmlNodeHeader extends ChunkHeader { // Line number in original source file at which this element appeared. private int lineNum; // Optional XML comment string pool ref, -1 if none private int commentRef; public XmlNodeHeader(int chunkType, int headerSize, long chunkSize) { super(chunkType, headerSize, chunkSize); } public int getLineNum() { return lineNum; } public void setLineNum(int lineNum) { this.lineNum = lineNum; } public int getCommentRef() { return commentRef; } public void setCommentRef(int commentRef) { this.commentRef = commentRef; } }
[ "jared@jaredrummler.com" ]
jared@jaredrummler.com
c6dea7206c47a908d275e81b944ec566c6e711fd
4f9496925b7f64a7cc9ec8ca7350ba6a48da5e3f
/src/main/java/com/dw/awsproject/service/ProductService.java
dc5e47258827b4e0b47eb123a2bcc5f01d3cd1b5
[]
no_license
44dw/aws-project
3260b816c2fa404413e60a0b7a5ff712c527f8ec
f5b92435af676beca5033c0f6831fa757b2f3794
refs/heads/master
2023-07-19T15:10:31.840264
2021-09-10T04:55:55
2021-09-10T04:55:55
404,603,706
0
0
null
null
null
null
UTF-8
Java
false
false
231
java
package com.dw.awsproject.service; import com.dw.awsproject.domain.Product; import java.util.List; public interface ProductService { List<Product> getAll(); Product getOne(int id); Product create(Product product); }
[ "elevation1987@gmail.com" ]
elevation1987@gmail.com
fc30684623a4bb612bdea1e7f2f0104fc7678afa
cfb64a2c379116148289dc83f02a2449be73b6b7
/src/main/java/com/roraimalabs/surveys/service/AccessServiceImpl.java
a772fe8852f575d2c4390cff8ad14b117f0b5ee1
[]
no_license
JavierAngelH/surveysRestService
02fc2898cb28ea7a2dc4d586605694799d7966ad
70e7dc57e25265eaac9a3105c1d8d291cd2a9dbc
refs/heads/master
2021-01-12T13:44:44.617401
2016-09-25T16:01:52
2016-09-25T16:01:52
69,122,970
0
0
null
null
null
null
UTF-8
Java
false
false
1,653
java
/** * AccessServiceImpl.java Created: Sep 24, 2016 JavierAngelH */ package com.roraimalabs.surveys.service; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Iterator; import org.json.JSONObject; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.roraimalabs.surveys.dao.ResultsDAO; import com.roraimalabs.surveys.domain.RecordType; /** * AccessServiceImpl - * */ @Service public class AccessServiceImpl implements AccessService { @Autowired ResultsDAO resultsDAO; SimpleDateFormat dateFormat = new SimpleDateFormat("dd/M/yyyy HH:mm"); @Override public void saveRecords(long id, String jsonString, RecordType type) throws ParseException { JSONObject objects = new JSONObject(jsonString); String dateString = objects.getString("DATE"); Date date = this.dateFormat.parse(dateString); objects.remove("DATE"); Iterator<?> keys = objects.keys(); if (type.getRecordType() == 1) { while (keys.hasNext()) { String questionId = (String) keys.next(); String answerId = (String) objects.get(questionId); if (answerId.equals("undefined")) { answerId = ""; } this.resultsDAO.insertSurveyResult(date, (int) id, questionId, answerId); } } else if (type.getRecordType() == 2) { while (keys.hasNext()) { String questionId = (String) keys.next(); String answerId = (String) objects.get(questionId); if (answerId.equals("undefined")) { answerId = ""; } this.resultsDAO.insertObservationResult(date, (int) id, questionId, answerId); } } } }
[ "disasterbaby@gmail.com" ]
disasterbaby@gmail.com
9c189d3c607eaedd8374ca3f74a83e3b95abf24e
dd666e197114bf398d60848c716882afb5b9fe5f
/src/main/java/com/yinchd/web/config/WebInterceptor.java
b7ddabbfd64ebbbf1f9820f67d335f2ca935ccb2
[]
no_license
yinchd/WebBoot
3c4d7c1f5f451bb20958b419386d52898ad84be1
044ad67b381d720dbcdd11702060bcc6a8bac6a2
refs/heads/master
2023-05-31T05:46:11.200577
2021-07-01T06:26:59
2021-07-01T06:26:59
361,415,210
0
0
null
null
null
null
UTF-8
Java
false
false
6,132
java
package com.yinchd.web.config; import com.yinchd.web.annatation.OpenApi; import com.yinchd.web.constants.SysConst; import com.yinchd.web.constants.SysEnum; import com.yinchd.web.dto.base.RestResult; import com.yinchd.web.dto.response.UserInfo; import com.yinchd.web.model.UserModel; import com.yinchd.web.service.CacheService; import com.yinchd.web.utils.JwtUtils; import io.jsonwebtoken.ExpiredJwtException; import io.jsonwebtoken.SignatureException; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.StringUtils; import org.springframework.http.HttpStatus; import org.springframework.stereotype.Component; import org.springframework.web.method.HandlerMethod; import org.springframework.web.servlet.HandlerInterceptor; import org.springframework.web.servlet.resource.ResourceHttpRequestHandler; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.util.Arrays; import java.util.List; /** * 全局拦截器 * @author yinchd * @date 2019/11/6 */ @Slf4j @Component public class WebInterceptor implements HandlerInterceptor { @Resource private JwtProperties jwtProperties; @Resource private CacheService cacheService; /** * 对除白名单及用@OpenApi注解修饰的接口进行拦截,解析token,判断token中包含的用户信息是否合法以及是否有访问对应资源的权限 */ @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws IOException { String requestURI = request.getRequestURI(); // 静态资源及白名单直接放行 if ((handler instanceof ResourceHttpRequestHandler) || isSwaggerOrStatics(requestURI)) { return true; } // @OpenApi修饰的方法或者类直接放行 HandlerMethod handlerMethod = (HandlerMethod) handler; if (handlerMethod.getMethod().isAnnotationPresent(OpenApi.class) || handlerMethod.getBeanType().isAnnotationPresent(OpenApi.class)) { return true; } String token = request.getHeader(this.jwtProperties.getName()); if (StringUtils.isEmpty(token)) { this.unauthorized(response); return false; } try { // 从token中解析出用户信息 UserInfo userInfo = JwtUtils.getUserFromToken(token, this.jwtProperties.getPublicKey()); // 从缓存服务中获取用户信息 UserModel user = cacheService.getUserCache(userInfo.getId()); // 如果是非管理员用户,在这里拦截菜单权限 if (userInfo.getId() != SysConst.ADMIN_ID) { // 从缓存服务中获取用户菜单信息 List<String> userMenus = cacheService.getUserMenuCache(userInfo.getId()); if (userMenus != null && !userMenus.contains(requestURI)) { log.info("用户角色对应的菜单链接集合中不包含请求的路径:{}", requestURI); this.accessDenied(response); return false; } } if (user == null) { this.unauthorized(response); return false; } if (SysEnum.DEL_FLAG_INVALID.getCode() == user.getDelFlag()) { this.userInvalid(response); return false; } if (SysEnum.STATUS_FREEZE.getCode() == user.getStatus()) { this.userFreeze(response); return false; } UserContext.set(user); return true; } catch (Exception e) { log.error("preHandle拦截到异常,", e); if (e instanceof ExpiredJwtException) { this.needRefresh(response); } else if (e instanceof SignatureException) { this.tokenInvalid(response); } return false; } } private boolean isSwaggerOrStatics(String requestURI) { // 自定义免拦截的静态地址 List<String> statics = Arrays.asList("/v3/api-docs", "/swagger", "/error", "/druid", "/doc.html"); for (String url : statics) { if (requestURI.startsWith(url)) { return true; } } return false; } private void userInvalid(HttpServletResponse response) throws IOException { log.info("用户已被移除,请联系管理员..."); this.reponse(response, HttpStatus.FORBIDDEN.value(), "您的账户已被移除,请联系管理员!"); } private void tokenInvalid(HttpServletResponse response) throws IOException { log.info("请求token不合法..."); this.reponse(response, HttpStatus.FORBIDDEN.value(), "请求token不合法!"); } private void userFreeze(HttpServletResponse response) throws IOException { log.info("用户已被禁用..."); this.reponse(response, HttpStatus.UNAUTHORIZED.value(), "您的账户已被禁用,请联系管理员!"); } private void unauthorized(HttpServletResponse response) throws IOException { log.info("未授权访问,请重新登录..."); this.reponse(response, HttpStatus.UNAUTHORIZED.value(), "请重新登录!"); } private void accessDenied(HttpServletResponse response) throws IOException { log.info("没有访问此菜单的权限..."); this.reponse(response, HttpStatus.UNAUTHORIZED.value(), "没有访问此资源的权限!"); } private void needRefresh(HttpServletResponse response) throws IOException { log.info("需更新token..."); this.reponse(response, HttpStatus.NOT_ACCEPTABLE.value(), "请刷新token"); } private void reponse(HttpServletResponse response, int code, String msg) throws IOException { response.setContentType("application/json;charset=UTF-8"); response.setStatus(code); response.getWriter().write(RestResult.error(code, msg).toString()); } }
[ "yincd@hua-cloud.com.cn" ]
yincd@hua-cloud.com.cn
9ca98fac50dee8ad7223634b741442d1a3453ec0
d84f9b01a59cc996a3c259f5e1c0e343727bbc55
/java/view/base/SpaceItemDecoration.java
bf0f09985b4642b74801fa512c87bc9317fdcbee
[]
no_license
chenyu987/dribbbo
b368381e477e2bcb0b13f38b24439666a963b769
5b01365d8f43cecbd42c7e928e217c159a17db83
refs/heads/master
2021-01-21T12:01:55.281120
2017-08-31T21:07:42
2017-08-31T21:07:42
102,044,666
0
0
null
null
null
null
UTF-8
Java
false
false
732
java
package com.android.yuchen.dribbbo.view.base; import android.graphics.Rect; import android.support.v7.widget.RecyclerView; import android.view.View; public class SpaceItemDecoration extends RecyclerView.ItemDecoration { private int space; public SpaceItemDecoration(int space) { this.space = space; } @Override public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) { outRect.left = space; outRect.right = space; outRect.bottom = space; // Add top margin only for the first item to avoid double space between items if (parent.getChildAdapterPosition(view) == 0) { outRect.top = space; } } }
[ "lucas.yu.chen@gmail.com" ]
lucas.yu.chen@gmail.com
fca4b35999e5d8bc8824d00019d3ef55b1f11e58
42d42e2d59d2e6d607f134610763045831fc72cd
/app/src/main/java/com/commodity/list_mvvm_rxjava_retrofit_databinding/view/EmpActivity.java
41afe8bf14614e308d19254af96f7a0a3406393b
[]
no_license
prsdjoshi/Example-MVVM
269d809135860bc068463ad057cb8de418522e54
8f8654632bad662ac4d003f06f68d7b2c42d8677
refs/heads/master
2022-05-24T04:12:30.321272
2020-04-18T12:53:42
2020-04-18T12:53:42
255,399,162
0
0
null
null
null
null
UTF-8
Java
false
false
2,967
java
package com.commodity.list_mvvm_rxjava_retrofit_databinding.view; import androidx.appcompat.app.AppCompatActivity; import androidx.lifecycle.Observer; import androidx.lifecycle.ViewModel; import androidx.lifecycle.ViewModelProviders; import androidx.recyclerview.widget.DefaultItemAnimator; import androidx.recyclerview.widget.GridLayoutManager; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import androidx.swiperefreshlayout.widget.SwipeRefreshLayout; import android.annotation.SuppressLint; import android.content.res.Configuration; import android.os.Bundle; import android.util.Log; import android.view.View; import com.commodity.list_mvvm_rxjava_retrofit_databinding.R; import com.commodity.list_mvvm_rxjava_retrofit_databinding.model.empmodel.EmpData; import com.commodity.list_mvvm_rxjava_retrofit_databinding.viewmodel.EmpViewModel; import java.util.List; public class EmpActivity extends AppCompatActivity { private SwipeRefreshLayout swipeRefresh; RecyclerView mRecyclerView; public EmpViewModel empViewModel; public EmpAdapter empAdapter; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_emp); initializationViews(); empViewModel = ViewModelProviders.of(this).get(EmpViewModel.class); getEmpList(); swipeRefresh.setOnRefreshListener(() -> { getEmpList(); }); } private void initializationViews() { Log.d("EmpActivity: ","initializationViews() call"); swipeRefresh = findViewById(R.id.swiperefresh); mRecyclerView = findViewById(R.id.blogRecyclerView); } private void getEmpList() { Log.d("EmpActivity: ","initializationViews() call and observe active"); swipeRefresh.setRefreshing(true); empViewModel.getAllEmp().observe(this, new Observer<List<EmpData>>() { @SuppressLint("LongLogTag") @Override public void onChanged(List<EmpData> empData) { Log.d("EmpActivity observe Livedata: ","onChanged() call"); swipeRefresh.setRefreshing(false); prepareRecycleview(empData); } }); } private void prepareRecycleview(List<EmpData> empData) { Log.d("prepareRecycleview: ","create Adapter"); empAdapter = new EmpAdapter(empData); if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) { mRecyclerView.setLayoutManager(new LinearLayoutManager(this)); } else { mRecyclerView.setLayoutManager(new GridLayoutManager(this, 4)); } mRecyclerView.setItemAnimator(new DefaultItemAnimator()); Log.d("prepareRecycleview: ","set Adapter"); mRecyclerView.setAdapter(empAdapter); empAdapter.notifyDataSetChanged(); } }
[ "prasadjoshi469@gmail.com" ]
prasadjoshi469@gmail.com
99cfc923abde60f4a4810c4b6c2c1cb280e353ea
6b305773793a638efaa105d6226b547be7a26de6
/src/main/java/com/infotop/entity/sys/UserRole.java
1a63e5f75550d140ad805fb0595d4c1c1f6c9d29
[]
no_license
kaoyangyang/Spring-Boot-Shiro
027efabd23dac9d7534582bb58e361758080962c
5903a06cfd54d3403e5160aaab6cb6a7e694bae1
refs/heads/master
2020-04-23T00:34:14.743615
2019-04-02T06:18:47
2019-04-02T06:18:47
170,784,349
0
0
null
2019-02-15T01:40:49
2019-02-15T01:40:49
null
UTF-8
Java
false
false
733
java
package com.infotop.entity.sys; import com.baomidou.mybatisplus.annotations.TableName; /** * 用户角色关系表 * 数据库表:sys_user_role * * 2016年10月17日上午10:58:14 */ @TableName("sys_user_role") public class UserRole { private Long id; private Long userId; //用户表id private Long roleId; //角色表id public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getUserId() { return userId; } public void setUserId(Long userId) { this.userId = userId; } public Long getRoleId() { return roleId; } public void setRoleId(Long roleId) { this.roleId = roleId; } }
[ "348322546@qq.com" ]
348322546@qq.com
07d134b1cf8894e2ae809649b468a1de02371b34
0c7f246c56731368c6f215b3c478f77aac7398bf
/src/main/java/com/example/camundabpmerror/CamundabpmerrorApplication.java
4efea155948e193250a77cb904efb8a7615251ad
[]
no_license
DimaStoyanov/CamundaBPMNError
d69b3eecd8a24977741a71a05bb02ecfe9397a43
3339ebc2f30e4b2ad0330e3acaeda4e7895e0503
refs/heads/master
2022-12-21T23:20:43.409369
2020-10-05T14:07:07
2020-10-05T14:07:07
293,810,653
0
1
null
null
null
null
UTF-8
Java
false
false
350
java
package com.example.camundabpmerror; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class CamundabpmerrorApplication { public static void main(String[] args) { SpringApplication.run(CamundabpmerrorApplication.class, args); } }
[ "Dmitrii.Stoianov@t-systems.ru" ]
Dmitrii.Stoianov@t-systems.ru
baa4ab0dd15edd3405881367c902f02c326fe7f8
75a33913a33982c829b5b0560ddcbf7cbfb07e15
/guestbook-portlet/docroot/WEB-INF/service/com/liferay/docs/guestbook/model/EntrySoap.java
210864cbe06b00edf4a4a20eceafde05be61f44e
[]
no_license
gerladp92/liferay6guestbook
67adcf06870eb361d753e36a2930b6892e02f58a
ee9f9735656ae8146a89a4a66b9434526a717e15
refs/heads/master
2021-04-15T09:02:50.638815
2018-03-29T13:07:52
2018-03-29T13:07:52
126,815,459
0
0
null
null
null
null
UTF-8
Java
false
false
4,460
java
/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.docs.guestbook.model; import java.io.Serializable; import java.util.ArrayList; import java.util.Date; import java.util.List; /** * This class is used by SOAP remote services, specifically {@link com.liferay.docs.guestbook.service.http.EntryServiceSoap}. * * @author ladosg * @see com.liferay.docs.guestbook.service.http.EntryServiceSoap * @generated */ public class EntrySoap implements Serializable { public static EntrySoap toSoapModel(Entry model) { EntrySoap soapModel = new EntrySoap(); soapModel.setUuid(model.getUuid()); soapModel.setEntryId(model.getEntryId()); soapModel.setGroupId(model.getGroupId()); soapModel.setCompanyId(model.getCompanyId()); soapModel.setUserId(model.getUserId()); soapModel.setUserName(model.getUserName()); soapModel.setCreateDate(model.getCreateDate()); soapModel.setModifiedDate(model.getModifiedDate()); soapModel.setName(model.getName()); soapModel.setEmail(model.getEmail()); soapModel.setMessage(model.getMessage()); soapModel.setGuestbookId(model.getGuestbookId()); return soapModel; } public static EntrySoap[] toSoapModels(Entry[] models) { EntrySoap[] soapModels = new EntrySoap[models.length]; for (int i = 0; i < models.length; i++) { soapModels[i] = toSoapModel(models[i]); } return soapModels; } public static EntrySoap[][] toSoapModels(Entry[][] models) { EntrySoap[][] soapModels = null; if (models.length > 0) { soapModels = new EntrySoap[models.length][models[0].length]; } else { soapModels = new EntrySoap[0][0]; } for (int i = 0; i < models.length; i++) { soapModels[i] = toSoapModels(models[i]); } return soapModels; } public static EntrySoap[] toSoapModels(List<Entry> models) { List<EntrySoap> soapModels = new ArrayList<EntrySoap>(models.size()); for (Entry model : models) { soapModels.add(toSoapModel(model)); } return soapModels.toArray(new EntrySoap[soapModels.size()]); } public EntrySoap() { } public long getPrimaryKey() { return _entryId; } public void setPrimaryKey(long pk) { setEntryId(pk); } public String getUuid() { return _uuid; } public void setUuid(String uuid) { _uuid = uuid; } public long getEntryId() { return _entryId; } public void setEntryId(long entryId) { _entryId = entryId; } public long getGroupId() { return _groupId; } public void setGroupId(long groupId) { _groupId = groupId; } public long getCompanyId() { return _companyId; } public void setCompanyId(long companyId) { _companyId = companyId; } public long getUserId() { return _userId; } public void setUserId(long userId) { _userId = userId; } public String getUserName() { return _userName; } public void setUserName(String userName) { _userName = userName; } public Date getCreateDate() { return _createDate; } public void setCreateDate(Date createDate) { _createDate = createDate; } public Date getModifiedDate() { return _modifiedDate; } public void setModifiedDate(Date modifiedDate) { _modifiedDate = modifiedDate; } public String getName() { return _name; } public void setName(String name) { _name = name; } public String getEmail() { return _email; } public void setEmail(String email) { _email = email; } public String getMessage() { return _message; } public void setMessage(String message) { _message = message; } public long getGuestbookId() { return _guestbookId; } public void setGuestbookId(long guestbookId) { _guestbookId = guestbookId; } private String _uuid; private long _entryId; private long _groupId; private long _companyId; private long _userId; private String _userName; private Date _createDate; private Date _modifiedDate; private String _name; private String _email; private String _message; private long _guestbookId; }
[ "gergely.lados@p92.hu" ]
gergely.lados@p92.hu
48a49cde2699402fff1efa8a5d87e4577050b281
9623f83defac3911b4780bc408634c078da73387
/powercraft v1.4.4/src/common/net/minecraft/src/RConThreadBase.java
7a39f417d6a285a15ec38593a47c6d41b5981ff3
[]
no_license
BlearStudio/powercraft-legacy
42b839393223494748e8b5d05acdaf59f18bd6c6
014e9d4d71bd99823cf63d4fbdb65c1b83fde1f8
refs/heads/master
2021-01-21T21:18:55.774908
2015-04-06T20:45:25
2015-04-06T20:45:25
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,286
java
package net.minecraft.src; import java.io.IOException; import java.net.DatagramSocket; import java.net.ServerSocket; import java.util.ArrayList; import java.util.Iterator; import java.util.List; public abstract class RConThreadBase implements Runnable { protected boolean running = false; protected IServer server; protected Thread rconThread; protected int field_72615_d = 5; protected List socketList = new ArrayList(); protected List serverSocketList = new ArrayList(); RConThreadBase(IServer par1IServer) { this.server = par1IServer; if (this.server.isDebuggingEnabled()) { this.logWarning("Debugging is enabled, performance maybe reduced!"); } } public synchronized void startThread() { this.rconThread = new Thread(this); this.rconThread.start(); this.running = true; } public boolean isRunning() { return this.running; } protected void logDebug(String par1Str) { this.server.logDebug(par1Str); } protected void logInfo(String par1Str) { this.server.logInfo(par1Str); } protected void logWarning(String par1Str) { this.server.logWarning(par1Str); } protected void logSevere(String par1Str) { this.server.logSevere(par1Str); } protected int getNumberOfPlayers() { return this.server.getCurrentPlayerCount(); } protected void registerSocket(DatagramSocket par1DatagramSocket) { this.logDebug("registerSocket: " + par1DatagramSocket); this.socketList.add(par1DatagramSocket); } protected boolean closeSocket(DatagramSocket par1DatagramSocket, boolean par2) { this.logDebug("closeSocket: " + par1DatagramSocket); if (null == par1DatagramSocket) { return false; } else { boolean var3 = false; if (!par1DatagramSocket.isClosed()) { par1DatagramSocket.close(); var3 = true; } if (par2) { this.socketList.remove(par1DatagramSocket); } return var3; } } protected boolean closeServerSocket(ServerSocket par1ServerSocket) { return this.closeServerSocket_do(par1ServerSocket, true); } protected boolean closeServerSocket_do(ServerSocket par1ServerSocket, boolean par2) { this.logDebug("closeSocket: " + par1ServerSocket); if (null == par1ServerSocket) { return false; } else { boolean var3 = false; try { if (!par1ServerSocket.isClosed()) { par1ServerSocket.close(); var3 = true; } } catch (IOException var5) { this.logWarning("IO: " + var5.getMessage()); } if (par2) { this.serverSocketList.remove(par1ServerSocket); } return var3; } } protected void closeAllSockets() { this.closeAllSockets_do(false); } protected void closeAllSockets_do(boolean par1) { int var2 = 0; Iterator var3 = this.socketList.iterator(); while (var3.hasNext()) { DatagramSocket var4 = (DatagramSocket)var3.next(); if (this.closeSocket(var4, false)) { ++var2; } } this.socketList.clear(); var3 = this.serverSocketList.iterator(); while (var3.hasNext()) { ServerSocket var5 = (ServerSocket)var3.next(); if (this.closeServerSocket_do(var5, false)) { ++var2; } } this.serverSocketList.clear(); if (par1 && 0 < var2) { this.logWarning("Force closed " + var2 + " sockets"); } } }
[ "nils.h.emmerich@gmail.com@ed9f5d1b-00bb-0f29-faab-e8ebad1a710c" ]
nils.h.emmerich@gmail.com@ed9f5d1b-00bb-0f29-faab-e8ebad1a710c
129b1d420ffdea2941587cd4e75dcaa33baa1e65
e104dc2e26724be7943834edc2d8735a4b098b76
/src/cn/npt/db/util/BS2SqlBufferKitFactory.java
528e1cea3c98e51e36c85d6b2505c6f5e554929b
[ "Apache-2.0" ]
permissive
Leonardo-YXH/CADB
0a811eb767d3495e1aa1d26a221a2c972d10e352
943b4bc262e32b65e52f366f553e2a5df7249549
refs/heads/master
2020-04-06T12:08:14.489493
2016-09-20T06:25:57
2016-09-20T06:25:57
55,475,931
2
0
null
null
null
null
UTF-8
Java
false
false
766
java
package cn.npt.db.util; import java.util.HashMap; import java.util.Map; public class BS2SqlBufferKitFactory { private static Map<String,BaseBS2SqlBufferKit> bufferKits=new HashMap<String, BaseBS2SqlBufferKit>(); private BS2SqlBufferKitFactory(){ } /** * * @param table 表名 * @param size 累计size条再插入到数据库,默认为存储sensor点的个数 * @return */ public static BaseBS2SqlBufferKit create(String table,int size){ BaseBS2SqlBufferKit bk=bufferKits.get(table); if(bk==null){ String head="insert into "+table+"(sensorId,createdTime,startV,endV,maxV,maxTime,minV,minTime,avgV,sdV) values"; bk=new BaseBS2SqlBufferKit(head, size); bufferKits.put(table, bk); } return bk; } }
[ "1577168398@qq.com" ]
1577168398@qq.com
c6ed9e4a2c0fb9bc6a1e77449e4f8e8545d885c8
0a6e41da01e43562e8a5ef6d227e10159fc253b3
/server/acceptpayment/src/main/java/com/spring/model/wxpay/response/WxRefundNotifyResponse.java
069a220ca4ca1d010e81e2526c48093ec4d4b2bb
[]
no_license
chq347796066/base-interface
917914190be0b487929f38d2cce68f7e396c149e
356aabbdcf827c9a65083d17c3e7ade259801bfd
refs/heads/main
2023-02-26T13:53:26.205433
2021-02-08T10:24:36
2021-02-08T10:24:36
337,037,239
0
0
null
null
null
null
UTF-8
Java
false
false
160
java
package com.spring.model.wxpay.response; /** * 微信退款结果异步通知 * 2018-05-30 16:29 * @author dell */ public class WxRefundNotifyResponse { }
[ "chq347796066@126.com" ]
chq347796066@126.com
736cb05a29cdb274fb02ea4f60dc73030c7b656c
0631152e1e1afec70d5dbbae705a830c4d1bdd29
/src/main/java/com/hessinteractive/sprinklercontrol/control/RealRelayControl.java
f1ad7629feef950df2edaf7ce3ddbd2ff3273d07
[]
no_license
solarhess/sprinkler-control
9f653359e88479b404e386421fca4e70e590dc94
9587a3bc3332e463b618afa92d828de803c047e5
refs/heads/master
2021-01-18T12:39:56.956331
2016-05-17T04:14:28
2016-05-17T04:14:28
58,989,849
0
0
null
null
null
null
UTF-8
Java
false
false
3,877
java
package com.hessinteractive.sprinklercontrol.control; import com.hessinteractive.sprinklercontrol.SprinklerControlMain; import com.pi4j.io.gpio.GpioController; import com.pi4j.io.gpio.GpioFactory; import com.pi4j.io.gpio.GpioPinDigitalInput; import com.pi4j.io.gpio.GpioPinDigitalOutput; import com.pi4j.io.gpio.GpioProvider; import com.pi4j.io.gpio.Pin; import com.pi4j.io.gpio.PinMode; import com.pi4j.io.gpio.PinPullResistance; import com.pi4j.io.gpio.PinState; import com.pi4j.io.gpio.RaspiGpioProvider; import com.pi4j.io.gpio.RaspiPin; import com.pi4j.io.gpio.impl.PinImpl; import java.util.Arrays; import java.util.EnumSet; import java.util.List; import java.util.concurrent.ScheduledFuture; import java.util.stream.Collectors; import static com.pi4j.io.gpio.RaspiPin.*; import static com.pi4j.io.gpio.RaspiPin.GPIO_02; import static com.pi4j.io.gpio.RaspiPin.GPIO_03; import static com.pi4j.io.gpio.RaspiPin.GPIO_04; import static com.pi4j.io.gpio.RaspiPin.GPIO_05; import static com.pi4j.io.gpio.RaspiPin.GPIO_06; import static com.pi4j.io.gpio.RaspiPin.GPIO_22; import static com.pi4j.io.gpio.RaspiPin.GPIO_23; import static com.pi4j.io.gpio.RaspiPin.GPIO_24; import static com.pi4j.io.gpio.RaspiPin.GPIO_25; import static com.pi4j.io.gpio.RaspiPin.GPIO_26; import static com.pi4j.io.gpio.RaspiPin.GPIO_27; import static com.pi4j.io.gpio.RaspiPin.GPIO_28; import static com.pi4j.io.gpio.RaspiPin.GPIO_29; import io.dropwizard.lifecycle.Managed; import io.dropwizard.util.Duration; /** * Created by hess on 5/3/16. */ public class RealRelayControl implements RelayControl, Managed { private static final Pin[] GPIO_PINS = new Pin[] { GPIO_00,GPIO_01,GPIO_02,GPIO_03,GPIO_04,GPIO_05,GPIO_06, GPIO_21,GPIO_22,GPIO_23,GPIO_24,GPIO_25,GPIO_26,GPIO_27,GPIO_28,GPIO_29 }; private final GpioController gpio; private final Duration valveDelay; private final List<GpioPinDigitalOutput> outputs; private ScheduledFuture<?> inProgressSchedule = null; public RealRelayControl(Duration valveDelay) { this.valveDelay = valveDelay; gpio = GpioFactory.getInstance(); outputs = Arrays.stream(GPIO_PINS) .map((pinId) -> { GpioPinDigitalOutput pin = gpio.provisionDigitalOutputPin(pinId, pinId.getName(), PinState.HIGH); pin.setShutdownOptions(true, PinState.LOW, PinPullResistance.OFF); return pin; }) .collect(Collectors.toList()); } @Override public int getRelayOnIndex() { for (int i = 0; i < outputs.size(); i++) { if(outputs.get(i).isLow()) { // low is on return i; } } return -1; } @Override public void setAllOff() { outputs.stream().forEach((pin)-> closeValve(pin)); // hi is off } private void closeValve(GpioPinDigitalOutput pin) { pin.setState(true); // HI is valve closed } private void openValve(int relayIndex) { outputs.get(relayIndex).setState(false); // LOW is valve open } @Override public synchronized void setRelayOn(int relayIndex) { boolean delayValveOn = false; if(getRelayOnIndex() >= 0) { delayValveOn = true; } if(inProgressSchedule != null) { inProgressSchedule.cancel(false); } setAllOff(); if(delayValveOn) { this.inProgressSchedule = SprinklerControlMain.EXECUTOR.schedule(() -> { setAllOff(); openValve(relayIndex); }, valveDelay.getQuantity(), valveDelay.getUnit()); } else { openValve(relayIndex); } } private static Pin createDigitalPin(int address, String name) { return new PinImpl("RaspberryPi GPIO Provider", address, name, EnumSet .of(PinMode.DIGITAL_INPUT, PinMode.DIGITAL_OUTPUT), PinPullResistance.all()); } @Override public void start() throws Exception { } @Override public void stop() throws Exception { setAllOff(); gpio.shutdown(); } }
[ "jonathan.hess@hessinteractive.com" ]
jonathan.hess@hessinteractive.com
9758d71e1a679736bb20282304e098f5617407d5
fcef9fb065efed921c26866896004b138d9d92cd
/neembuu-android/srcs/output_jar.src/jp/co/imobile/android/ae.java
ba8531615a165772c817608c605a018cc523070e
[]
no_license
Neembuu/neembuunow
46e92148fbea68d31688a64452d9934e619cc1b2
b73c46465ab05c28ae6aa3f1e04a35a57d9b1d96
refs/heads/master
2016-09-05T10:02:01.613898
2014-07-10T18:30:28
2014-07-10T18:30:28
22,336,524
2
2
null
null
null
null
UTF-8
Java
false
false
518
java
package jp.co.imobile.android; abstract class ae { abstract boolean a(); abstract boolean a(AdView paramAdView); abstract boolean b(); abstract boolean b(AdView paramAdView); abstract boolean c(); abstract boolean c(AdView paramAdView); abstract boolean d(); public abstract String toString(); } /* Location: F:\neembuu\Research\android_apps\output_jar.jar * Qualified Name: jp.co.imobile.android.ae * JD-Core Version: 0.7.0.1 */
[ "pasdavide@gmail.com" ]
pasdavide@gmail.com
ad926f6730dc11e045a843017cfef922cf751803
90d74e3d38ce22d1f77e23b1da2efb25c8f18264
/src/demo/parallel/MandelbrotSetTask.java
d0fbe8fb1ce3c20b4134ede9284f3e705cc213e1
[]
no_license
hulandianqing/RedisClient
582fe6f777320c28d78d11d9d5b5d31d956000aa
8d3ce554a1fa2d0fdfbebcbc2c8835d52a996e43
refs/heads/master
2021-06-13T21:20:36.980389
2017-02-06T15:19:48
2017-02-06T15:19:48
null
0
0
null
null
null
null
UTF-8
Java
false
false
12,337
java
/* * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * - Neither the name of Oracle nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package demo.parallel; import java.util.concurrent.atomic.AtomicInteger; import java.util.stream.IntStream; import javafx.concurrent.Task; import javafx.scene.image.PixelWriter; import javafx.scene.paint.Color; /** * Task to render Mandelbrot set using given parameters. See {@link * #MandelbrotRendererTask(boolean, PixelWriter, int, int, * double, double, double, double, double, double, double, double, boolean) * constructor} for parameters list. The task returns time in milliseconds as * its calculated value. * * <p><i> * This source code is provided to illustrate the usage of a given feature * or technique and has been deliberately simplified. Additional steps * required for a production-quality application, such as security checks, * input validation and proper error handling, might not be present in * this sample code.</i> * * @author Alexander Kouznetsov, Tristan Yan */ class MandelbrotSetTask extends Task<Long> { /** * Calculation times, deliberately choose it as 256 because we will use the * count to calculate Color */ private static final int CAL_MAX_COUNT = 256; /** * This is the square of max radius, Mandelbrot set contained in the closed * disk of radius 2 around the origin plus some area around, so * LENGTH_BOUNDARY is 6. */ private static final double LENGTH_BOUNDARY = 6d; /** * For antialiasing we break each pixel into 3x3 grid and interpolate * between values calculated on those grid positions */ private static final int ANTIALIASING_BASE = 3; /** * Sequential vs. parallel calculation mode */ private final boolean parallel; /** * Antialiased mode flag */ private final boolean antialiased; /** * Dimension of the area */ private final int width, height; /** * Rectangle range to exclude from calculations. Used to skip calculations * for parts of MandelbrotSet that are already calculated. */ private final double minX, minY, maxX, maxY; /** * Real and imaginary part of min and max number in the set we need * calculate */ private final double minR, minI, maxR, maxI; /** * Pixel writer to use for writing calculated pixels */ private final PixelWriter pixelWriter; /** * Flag indicating that some new pixels were calculated */ private volatile boolean hasUpdates; /** * Start time of the task in milliseconds */ private volatile long startTime = -1; /** * Total time of the task in milliseconds */ private volatile long taskTime = -1; /** * Progress of the task */ private final AtomicInteger progress = new AtomicInteger(0); /** * Creates a task to render a MandelBrot set into an image using given * PixelWriter with given dimensions of the image, given real and imaginary * values range and given rectangular area to skip. Also there is a switch * that disables more computational-extensive antialiasing mode. * @param parallel parallel vs. sequential switch * @param pixelWriter target to write pixels to * @param width width of the image area * @param height height of the image area * @param minR min real value of the area * @param minI min imaginary value of the area * @param maxR max real value of the area * @param maxI max imaginary value of the area * @param minX min x value of the rectangular area to skip * @param minY min y value of the rectangular area to skip * @param maxX max x value of the rectangular area to skip * @param maxY max y value of the rectangular area to skip * @param fast fast mode disables antialiasing */ public MandelbrotSetTask(boolean parallel, PixelWriter pixelWriter, int width, int height, double minR, double minI, double maxR, double maxI, double minX, double minY, double maxX, double maxY, boolean fast) { this.parallel = parallel; this.pixelWriter = pixelWriter; this.width = width; this.height = height; this.maxX = maxX; this.minX = minX; this.maxY = maxY; this.minY = minY; this.minR = minR; this.maxR = maxR; this.minI = minI; this.maxI = maxI; this.antialiased = !fast; updateProgress(0, 0); } /** * * @return whether new pixels were written to the image */ public boolean hasUpdates() { return hasUpdates; } /** * @return true if task is parallel */ public boolean isParallel() { return parallel; } /** * Clears the updates flag */ public void clearHasUpdates() { hasUpdates = false; } /** * {@inheritDoc} */ @Override protected void failed() { super.failed(); getException().printStackTrace(System.err); } /** * Returns current task execution time while task is running and total * task time when task is finished * @return task time in milliseconds */ public long getTime() { if (taskTime != -1) { return taskTime; } if (startTime == -1) { return 0; } return System.currentTimeMillis() - startTime; } /** * {@inheritDoc} */ @Override protected Long call() throws Exception { synchronized(pixelWriter) { // Prepares an image for (int x = 0; x < width; x++) { for (int y = 0; y < height; y++) { pixelWriter.setColor(x, y, Color.TRANSPARENT); } } } startTime = System.currentTimeMillis(); // We do horizontal lines in parallel when asked IntStream yStream = IntStream.range(0, height); if (parallel) { yStream = yStream.parallel(); } else { yStream = yStream.sequential(); } updateProgress(0, height); yStream.forEach((int y) -> { // We do pixels in horizontal lines always sequentially for (int x = 0; x < width; x++) { // Skip excluded rectangular area if (!(x >= maxX || x < minX || y >= maxY || y < minY)) { continue; } Color c; if (antialiased) { c = calcAntialiasedPixel(x, y); } else { c = calcPixel(x, y); } if (isCancelled()) { return; } synchronized(pixelWriter) { pixelWriter.setColor(x, y, c); } hasUpdates = true; } updateProgress(progress.incrementAndGet(), height); }); taskTime = getTime(); return taskTime; } /** * Calculates number of iterations a complex quadratic polynomials * stays within a disk of some finite radius for a given complex number. * * This number is used to choose a color for this pixel for precalculated * color tables. * * @param comp a complex number used for calculation * @return number of iterations a value stayed within a given disk. */ private int calc(Complex comp) { int count = 0; Complex c = new Complex(0, 0); do { c = c.times(c).plus(comp); count++; } while (count < CAL_MAX_COUNT && c.lengthSQ() < LENGTH_BOUNDARY); return count; } /** * Calculates a color of a given pixel on the image using * {@link #calc(Complex) } method. * @param x x coordinate of the pixel in the image * @param y y coordinate of the pixel in the image * @return calculated color of the pixel */ private Color calcPixel(double x, double y) { double re = (minR * (width - x) + x * maxR) / width; double im = (minI * (height - y) + y * maxI) / height; Complex calPixel = new Complex(re, im); return getColor(calc(calPixel)); } /** * Calculates antialised color of a given pixel on the image by dividing * real and imaginary value ranges of a pixel by {@link #ANTIALIASING_BASE} * and doing interpolation between calculated values * @param x x coordinate of the pixel in the image * @param y y coordinate of the pixel in the image * @return calculated color of the pixel */ private Color calcAntialiasedPixel(int x, int y) { double step = 1d / ANTIALIASING_BASE; double N = ANTIALIASING_BASE * ANTIALIASING_BASE; double r = 0, g = 0, b = 0; for (int i = 0; i < ANTIALIASING_BASE; i++) { for (int j = 0; j < ANTIALIASING_BASE; j++) { Color c = calcPixel(x + step * (i + 0.5) - 0.5, y + step * (j + 0.5) - 0.5); r += c.getRed() / N; g += c.getGreen() / N; b += c.getBlue() / N; } } return new Color(clamp(r), clamp(g), clamp(b), 1); } /** * Clamps the value in 0..1 interval * @param val value to clamp * @return value in 0..1 interval */ private double clamp(double val) { return val > 1 ? 1 : val < 0 ? 0 : val; } /** * Returns a color for a given iteration count. * @param count number of iterations return by * {@link #calc(Complex)} method * @return color from pre-calculated table */ private Color getColor(int count) { if (count >= colors.length) { return Color.BLACK; } return colors[count]; } /** * Pre-calculated colors table */ static final Color[] colors = new Color[256]; static { /** * Color stops for colors table: color values */ Color[] cc = { Color.rgb(40, 0, 0), Color.RED, Color.WHITE, Color.RED, Color.rgb(100, 0, 0), Color.RED, Color.rgb(50, 0, 0) }; /** * Color stops for colors table: relative position in the table */ double[] cp = { 0, 0.17, 0.25, 0.30, 0.5, 0.75, 1,}; /** * Color table population */ int j = 0; for (int i = 0; i < colors.length; i++) { double p = (double) i / (colors.length - 1); if (p > cp[j + 1]) { j++; } double val = (p - cp[j]) / (cp[j + 1] - cp[j]); colors[i] = cc[j].interpolate(cc[j + 1], val); } } }
[ "461473701@qq.com" ]
461473701@qq.com
e52df836f4fd6d04d5efcacf87a5e3a20373ce92
83bb1971f1ac911dd939387f0773041ab73841d5
/src/com/dst/hello/Hello.java
1fc23b7e81457daf75d6c6736f59117699c38d54
[]
no_license
destri8/GitHello
4ed05e10de17f7ab77520d1bb46eabc975872f2c
f104e8e0558bca1674ca07c6554af0f679a18ac0
refs/heads/master
2021-01-23T22:06:37.073618
2011-07-18T10:15:19
2011-07-18T10:15:19
2,065,530
0
0
null
null
null
null
UTF-8
Java
false
false
146
java
package com.dst.hello; public class Hello { public static void main(String args[]) { System.out.println("changed kedua kali"); } }
[ "wen_cian@yahoo.co.uk" ]
wen_cian@yahoo.co.uk
30d38d4f41489593581ae485c8b92d8f95587023
4282e9b93b867c1fe380344ac226c3fa2eb1d972
/src/test/java/packt/selenium/chap3_9/SearchGoogleTest.java
16a8e29c7570dd220c17f94c1654f979757964d6
[]
no_license
george2cc/chapter3_9
e668b3db047302f4ff4858cbcb650feb0569bc94
fbc19e3fd7af7b8cf1aad4c9e1ad6d2956e71d96
refs/heads/master
2020-04-10T02:45:42.822210
2018-12-07T02:59:44
2018-12-07T02:59:44
160,752,082
0
0
null
null
null
null
UTF-8
Java
false
false
1,328
java
package packt.selenium.chap3_9; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.ie.InternetExplorerDriver; import packt.selenium.chap3_9.pageobjects.Google; import packt.selenium.chap3_9.pageobjects.GoogleSearchPage; import java.util.concurrent.TimeUnit; /** * Created by Ripon on 11/19/2015. */ public class SearchGoogleTest { private WebDriver driver; public Google googlePage; public GoogleSearchPage searchPage; @Before public void setUp() throws Exception { System.setProperty("webdriver.chrome.driver", "./src/test/resources/drivers/chromedriver.exe"); //driver = new FirefoxDriver(); //driver = new InternetExplorerDriver(); driver = new ChromeDriver(); driver.manage().window().maximize(); driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS); } @After public void tearDown() throws Exception { driver.quit(); } @Test public void testGoogleSearch(){ googlePage = new Google(driver); searchPage = googlePage.goToSearchPage(); searchPage.getNumberOfResults(); } }
[ "george2c@optusnet.com.au" ]
george2c@optusnet.com.au
fea99256576fee4cb8355d25ef88c36039bf8cd7
d8cc40718b7af0193479a233a21ea2f03c792764
/aws-java-sdk-budgets/src/main/java/com/amazonaws/services/budgets/model/CreationLimitExceededException.java
a2e41aa3698d9206773487e577b52a4e05c0478d
[ "Apache-2.0" ]
permissive
chaoweimt/aws-sdk-java
1de8c0aeb9aa52931681268cd250ca2af59a83d9
f11d648b62f2615858e2f0c2e5dd69e77a91abd3
refs/heads/master
2021-01-22T03:18:33.038352
2017-05-24T22:40:24
2017-05-24T22:40:24
92,371,194
1
0
null
2017-05-25T06:13:36
2017-05-25T06:13:35
null
UTF-8
Java
false
false
1,310
java
/* * Copyright 2012-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.budgets.model; import javax.annotation.Generated; /** * The exception is thrown when customer tries to create a record (e.g. budget), but the number this record already * exceeds the limitation. */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreationLimitExceededException extends com.amazonaws.services.budgets.model.AWSBudgetsException { private static final long serialVersionUID = 1L; /** * Constructs a new CreationLimitExceededException with the specified error message. * * @param message * Describes the error encountered. */ public CreationLimitExceededException(String message) { super(message); } }
[ "" ]
8f9d5ab7252c8d8ad0c192f6d68b9f57394c1eca
d8940fb625f181ca081aecec8f1cc075802460b8
/src/main/java/by/epam/gym/command/client/DoPrepaymentCommand.java
3b9e4d13241bd4657717ee97dc2a7b25c8f75255
[]
no_license
Leclaire1941/finalTask-Gym
bcb48be374f89ea65ed04cbf586f7f9eea04bc65
0bdb64accf6427f01edc65e1cb13ac9e5143e53d
refs/heads/master
2020-04-01T17:24:26.819865
2018-10-17T10:40:07
2018-10-17T10:40:07
152,451,936
0
0
null
null
null
null
UTF-8
Java
false
false
3,914
java
package by.epam.gym.command.client; import by.epam.gym.command.Command; import by.epam.gym.exception.ServiceException; import by.epam.gym.model.Page; import by.epam.gym.model.user.User; import by.epam.gym.service.UserService; import by.epam.gym.utils.PrepaymentValidator; import org.apache.log4j.Logger; import javax.servlet.http.HttpServletRequest; import java.math.BigDecimal; import java.util.Optional; /** * Command to add money to users's account balance. * * @author Dzmitry Turko * @see User * @see UserService */ public class DoPrepaymentCommand implements Command { private static final Logger LOGGER = Logger.getLogger(DoPrepaymentCommand.class); private static final String ORDER_INFO_COMMAND = "/controller?command=client_orderInfo&userId="; private static final String USER_ID_ATTRIBUTE = "userId"; private static final String AMOUNT_ATTRIBUTE = "amount"; private static final String PREPAYMENT_SUCCESS_MESSAGE = "&prepaymentMessage=Prepayment was done successfully."; private static final String PREPAYMENT_FAILED_MESSAGE = "&prepaymentMessage=Prepayment is not possible. " + "Contact your administrator."; private static final String PREPAYMENT_ERROR_MESSAGE = "&prepaymentMessage=Prepayment is not possible. " + "Check your input data."; /** * Implementation of command to add money to user's account balance. * * @param request HttpServletRequest object. * @return Page with next command. * @throws ServiceException object if execution of method is failed. */ @Override public Page execute(HttpServletRequest request) throws ServiceException { String prepaymentValue = request.getParameter(AMOUNT_ATTRIBUTE); String userIdValue = request.getParameter(USER_ID_ATTRIBUTE); boolean isAmountValid = PrepaymentValidator.checkPrepayment(prepaymentValue); if (!isAmountValid) { String url = ORDER_INFO_COMMAND + userIdValue + PREPAYMENT_ERROR_MESSAGE; return new Page(url, true); } int userId = Integer.parseInt(userIdValue); User user = findUserById(userId); BigDecimal oldBalance = user.getAccountBalance(); BigDecimal increaseValue = new BigDecimal(prepaymentValue); BigDecimal newBalance = takePrepaymentById(userId, increaseValue); LOGGER.debug("ID:" + userIdValue + "Old balance - " + oldBalance + ", amount - " + increaseValue + ", new balance - " + newBalance); String paymentPrefix = newBalance.compareTo(oldBalance) > 0 ? PREPAYMENT_SUCCESS_MESSAGE : PREPAYMENT_FAILED_MESSAGE; String url = ORDER_INFO_COMMAND + userId + paymentPrefix; return new Page(url, true); } /** * The method finds user by ID and returns it's entity. * * @param userId the user's ID. * @return User. * @throws ServiceException object if execution of method is failed. */ private User findUserById(int userId) throws ServiceException { UserService userService = new UserService(); Optional<User> optionalUser = userService.findById(userId); if (optionalUser.isPresent()) { return optionalUser.get(); } else { throw new ServiceException("Couldn't build user for client information."); } } /** * The method updates user's account balance by ID and returns new balance. * * @param userId the user's ID. * @param increaseValue the value to increase balance. * @return BigDecimal. * @throws ServiceException object if execution of method is failed. */ private BigDecimal takePrepaymentById(int userId, BigDecimal increaseValue) throws ServiceException { UserService userService = new UserService(); return userService.takePrepaymentById(userId, increaseValue); } }
[ "t.dima89@mail.ru" ]
t.dima89@mail.ru
213ca216c8c6e70906adc8bd1fcc224edfa38cf3
161f43f1a738b94e21c3f4d66b3c1c1a02d29be1
/Algorithmen_Datenstrukturen_I/eclipse/src/IntegerListTest.java
922291dbfa91ff337b24764d11971bbf535d5b2d
[ "MIT" ]
permissive
macrozone/zhaw_aufgaben
b4f1f8c43176b263f5283bcbdf91ce348a4cac53
28afd56ec0c54439356c7362672fe49a480eb6ca
refs/heads/master
2021-01-15T15:04:51.948606
2013-12-10T13:23:42
2013-12-10T13:23:42
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,893
java
import static org.junit.Assert.*; import org.junit.Test; public class IntegerListTest { @Test public void testAddToTail() { IntegerList list = new IntegerList(5); list.addToTail(6); assertEquals(6, list.getTailValue()); assertEquals(5, list.getHeadValue()); } @Test public void testAddToHead() { IntegerList list = new IntegerList(5); list.addToHead(7); list.addToHead(6); assertEquals(6, list.getHeadValue()); assertEquals(5, list.getTailValue()); } @Test public void testGetHeadValue() { IntegerList list = new IntegerList(5); assertEquals(5, list.getHeadValue()); } @Test public void testGetTailValue() { IntegerList list = new IntegerList(5); list.addToTail(6); list.addToTail(7); assertEquals(7, list.getTailValue()); } @Test public void testGetSize() { IntegerList list = new IntegerList(5); list.addToTail(6); list.addToHead(7); list.addToTail(8); assertEquals(4, list.getSize()); } @Test public void testEqualsObjectEqual() { IntegerList list = new IntegerList(5); list.addToTail(6); list.addToHead(7); list.addToTail(8); IntegerList list2 = new IntegerList(5); list2.addToTail(6); list2.addToHead(7); list2.addToTail(8); assertTrue(list.equals(list2)); } @Test public void testEqualsObjectNotEqual() { IntegerList list = new IntegerList(5); list.addToTail(6); list.addToHead(7); list.addToTail(8); IntegerList list2 = new IntegerList(5); list2.addToHead(4); list2.addToHead(7); list2.addToTail(8); assertFalse(list.equals(list2)); } @Test public void testContains() { IntegerList list = new IntegerList(5); list.addToTail(6); list.addToHead(7); list.addToTail(8); assertTrue(list.contains(5)); assertTrue(list.contains(6)); assertTrue(list.contains(7)); assertTrue(list.contains(8)); assertFalse(list.contains(42)); } }
[ "macrozone@gmail.com" ]
macrozone@gmail.com
fb8ee13da725540e0f3fdeaf098a46bc23d5b6a1
9feee75684dc82069feefc45d535f6ef5c975848
/main/plugin_library/src/main/java/com/example/plugin_library/PluginProxyActivity.java
ba07c512ef3e7f1aa971a0344bf4c5d916f0f6ed
[]
no_license
Luozf12345/AndroidStudy
870de271674a5fae56e87a8790bc7fe44ad0397f
4793c8613a3b23c2fecc1c793a625047f6847670
refs/heads/master
2021-07-18T08:34:39.616149
2020-05-09T12:42:13
2020-05-09T12:42:13
245,978,107
0
1
null
null
null
null
UTF-8
Java
false
false
3,537
java
package com.example.plugin_library; import android.content.res.Resources; import android.os.Bundle; import androidx.annotation.Nullable; import androidx.appcompat.app.AppCompatActivity; /** * 插件界面 * @Author:luozf * @Date: 2020/4/13 */ public class PluginProxyActivity extends AppCompatActivity { /** * 插件路径 */ private String apkPath; /** * 插件Activity的名字 */ private String activityName; /** * 插件真正的Activity */ private IPluginActivity realActivity; @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); Bundle bundle = getIntent().getBundleExtra("bundle"); if (bundle != null){ apkPath = bundle.getString(PluginConst.APK_PATH); activityName = bundle.getString(PluginConst.REALLY_ACTIVITY_NAME); } initRealActivity(bundle); } /** * 初始化真正的Activity. * 1.通过反射创建对象 * 2.将代理类和真正类绑定 * 3.真正Activity的onCreate什么周期 * * @author luozf * @date 2020/4/17 */ private void initRealActivity(Bundle bundle) { PluginItem item = PluginManager.getInstance().getPluginItem(apkPath); if (item != null && item.getDexClassLoader() != null) { try { Class<?> clazz = item.getDexClassLoader().loadClass(activityName); realActivity = (IPluginActivity) clazz.newInstance(); realActivity.attach(this); bundle.putBoolean(PluginConst.isPlugin, true); realActivity.onCreate(bundle); } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } catch (InstantiationException e) { e.printStackTrace(); } } } @Override public ClassLoader getClassLoader() { PluginItem item = PluginManager.getInstance().getPluginItem(apkPath); if (item != null && item.getDexClassLoader() != null) { return item.getDexClassLoader(); } return super.getClassLoader(); } @Override public Resources getResources() { PluginItem item = PluginManager.getInstance().getPluginItem(apkPath); if (item != null && item.getResources() != null) { return item.getResources(); } return super.getResources(); } @Override protected void onStart() { if (realActivity != null) { realActivity.onStart(); } super.onStart(); } @Override protected void onRestart() { if (realActivity != null) { realActivity.onRestart(); } super.onRestart(); } @Override protected void onResume() { if (realActivity != null) { realActivity.onResume(); } super.onResume(); } @Override protected void onPause() { if (realActivity != null) { realActivity.onPause(); } super.onPause(); } @Override protected void onStop() { if (realActivity != null) { realActivity.onStop(); } super.onStop(); } @Override protected void onDestroy() { if (realActivity != null) { realActivity.onDestroy(); } super.onDestroy(); } }
[ "2515187986@qq.com" ]
2515187986@qq.com
29a025b9468b9b59bcbb3b42e3c4a84abaca1a28
b9be35086be50aee9c5e1880218ba3f5def5a521
/Common/src/main/java/xyz/zimuju/common/util/ImageUtil.java
14945b25d742bd6c1593282d313e704e0d1084d7
[ "Apache-2.0" ]
permissive
yibulaxi/YuanYuan
97297896810962a2f78df761946aeac6fa9028c7
16ac8db40a3bc4d31325521e388f347206ff2b80
refs/heads/master
2021-01-16T19:23:40.798776
2017-08-13T05:38:46
2017-08-13T05:38:46
null
0
0
null
null
null
null
UTF-8
Java
false
false
65,527
java
package xyz.zimuju.common.util; import android.annotation.SuppressLint; import android.annotation.TargetApi; import android.app.Activity; import android.content.Context; import android.content.res.Resources; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.ColorMatrix; import android.graphics.ColorMatrixColorFilter; import android.graphics.LinearGradient; import android.graphics.Matrix; import android.graphics.Paint; import android.graphics.PorterDuff; import android.graphics.PorterDuffColorFilter; import android.graphics.PorterDuffXfermode; import android.graphics.Rect; import android.graphics.RectF; import android.graphics.Shader; import android.graphics.drawable.Drawable; import android.media.ExifInterface; import android.os.Build; import android.renderscript.Allocation; import android.renderscript.Element; import android.renderscript.RenderScript; import android.renderscript.ScriptIntrinsicBlur; import android.util.Log; import android.view.View; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileDescriptor; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.URL; import java.util.HashMap; import java.util.Map; public class ImageUtil { private static String TAG = "ImageUtil"; /** * bitmap转byteArr * * @param bitmap bitmap对象 * @param format 格式 * @return 字节数组 */ public static byte[] bitmap2Bytes(Bitmap bitmap, Bitmap.CompressFormat format) { return ConvertUtil.bitmap2Bytes(bitmap, format); } /** * byteArr转bitmap * * @param bytes 字节数组 * @return bitmap */ public static Bitmap bytes2Bitmap(byte[] bytes) { return ConvertUtil.bytes2Bitmap(bytes); } /** * drawable转bitmap * * @param drawable drawable对象 * @return bitmap */ public static Bitmap drawable2Bitmap(Drawable drawable) { return ConvertUtil.drawable2Bitmap(drawable); } /** * bitmap转drawable * * @param res resources对象 * @param bitmap bitmap对象 * @return drawable */ public static Drawable bitmap2Drawable(Resources res, Bitmap bitmap) { return ConvertUtil.bitmap2Drawable(res, bitmap); } /** * drawable转byteArr * * @param drawable drawable对象 * @param format 格式 * @return 字节数组 */ public static byte[] drawable2Bytes(Drawable drawable, Bitmap.CompressFormat format) { return ConvertUtil.drawable2Bytes(drawable, format); } /** * byteArr转drawable * * @param res resources对象 * @param bytes 字节数组 * @return drawable */ public static Drawable bytes2Drawable(Resources res, byte[] bytes) { return ConvertUtil.bytes2Drawable(res, bytes); } /** * view转Bitmap * * @param view 视图 * @return bitmap */ public static Bitmap view2Bitmap(View view) { return ConvertUtil.view2Bitmap(view); } /** * 计算采样大小 * * @param options 选项 * @param maxWidth 最大宽度 * @param maxHeight 最大高度 * @return 采样大小 */ private static int calculateInSampleSize(BitmapFactory.Options options, int maxWidth, int maxHeight) { if (maxWidth == 0 || maxHeight == 0) return 1; int height = options.outHeight; int width = options.outWidth; int inSampleSize = 1; while ((height >>= 1) >= maxHeight && (width >>= 1) >= maxWidth) { inSampleSize <<= 1; } return inSampleSize; } /** * 获取bitmap * * @param file 文件 * @return bitmap */ public static Bitmap getBitmap(File file) { if (file == null) return null; InputStream is = null; try { is = new BufferedInputStream(new FileInputStream(file)); return BitmapFactory.decodeStream(is); } catch (FileNotFoundException e) { e.printStackTrace(); return null; } finally { CloseUtils.closeIO(is); } } /** * 获取bitmap * * @param file 文件 * @param maxWidth 最大宽度 * @param maxHeight 最大高度 * @return bitmap */ public static Bitmap getBitmap(File file, int maxWidth, int maxHeight) { if (file == null) return null; InputStream is = null; try { BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; is = new BufferedInputStream(new FileInputStream(file)); BitmapFactory.decodeStream(is, null, options); options.inSampleSize = calculateInSampleSize(options, maxWidth, maxHeight); options.inJustDecodeBounds = false; return BitmapFactory.decodeStream(is, null, options); } catch (FileNotFoundException e) { e.printStackTrace(); return null; } finally { CloseUtils.closeIO(is); } } /** * 获取bitmap * * @param filePath 文件路径 * @return bitmap */ public static Bitmap getBitmap(String filePath) { if (StringUtils.isSpace(filePath)) return null; return BitmapFactory.decodeFile(filePath); } /** * 获取bitmap * * @param filePath 文件路径 * @param maxWidth 最大宽度 * @param maxHeight 最大高度 * @return bitmap */ public static Bitmap getBitmap(String filePath, int maxWidth, int maxHeight) { if (StringUtils.isSpace(filePath)) return null; BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeFile(filePath, options); options.inSampleSize = calculateInSampleSize(options, maxWidth, maxHeight); options.inJustDecodeBounds = false; return BitmapFactory.decodeFile(filePath, options); } /** * 获取bitmap * * @param is 输入流 * @param maxWidth 最大宽度 * @param maxHeight 最大高度 * @return bitmap */ public static Bitmap getBitmap(InputStream is, int maxWidth, int maxHeight) { if (is == null) return null; BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeStream(is, null, options); options.inSampleSize = calculateInSampleSize(options, maxWidth, maxHeight); options.inJustDecodeBounds = false; return BitmapFactory.decodeStream(is, null, options); } /** * 获取bitmap * * @param data 数据 * @param offset 偏移量 * @param maxWidth 最大宽度 * @param maxHeight 最大高度 * @return bitmap */ public static Bitmap getBitmap(byte[] data, int offset, int maxWidth, int maxHeight) { if (data.length == 0) return null; BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeByteArray(data, offset, data.length, options); options.inSampleSize = calculateInSampleSize(options, maxWidth, maxHeight); options.inJustDecodeBounds = false; return BitmapFactory.decodeByteArray(data, offset, data.length, options); } /** * 获取bitmap * * @param res 资源对象 * @param id 资源id * @return bitmap */ public static Bitmap getBitmap(Resources res, int id) { if (res == null) return null; return BitmapFactory.decodeResource(res, id); } /** * 获取bitmap * * @param res 资源对象 * @param id 资源id * @param maxWidth 最大宽度 * @param maxHeight 最大高度 * @return bitmap */ public static Bitmap getBitmap(Resources res, int id, int maxWidth, int maxHeight) { if (res == null) return null; BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeResource(res, id, options); options.inSampleSize = calculateInSampleSize(options, maxWidth, maxHeight); options.inJustDecodeBounds = false; return BitmapFactory.decodeResource(res, id, options); } /** * 获取bitmap * * @param fd 文件描述 * @return bitmap */ public static Bitmap getBitmap(FileDescriptor fd) { if (fd == null) return null; return BitmapFactory.decodeFileDescriptor(fd); } /** * 获取bitmap * * @param fd 文件描述 * @param maxWidth 最大宽度 * @param maxHeight 最大高度 * @return bitmap */ public static Bitmap getBitmap(FileDescriptor fd, int maxWidth, int maxHeight) { if (fd == null) return null; BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeFileDescriptor(fd, null, options); options.inSampleSize = calculateInSampleSize(options, maxWidth, maxHeight); options.inJustDecodeBounds = false; return BitmapFactory.decodeFileDescriptor(fd, null, options); } /** * 缩放图片 * * @param src 源图片 * @param newWidth 新宽度 * @param newHeight 新高度 * @return 缩放后的图片 */ public static Bitmap scale(Bitmap src, int newWidth, int newHeight) { return scale(src, newWidth, newHeight, false); } /** * 缩放图片 * * @param src 源图片 * @param newWidth 新宽度 * @param newHeight 新高度 * @param recycle 是否回收 * @return 缩放后的图片 */ public static Bitmap scale(Bitmap src, int newWidth, int newHeight, boolean recycle) { if (isEmptyBitmap(src)) return null; Bitmap ret = Bitmap.createScaledBitmap(src, newWidth, newHeight, true); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 缩放图片 * * @param src 源图片 * @param scaleWidth 缩放宽度倍数 * @param scaleHeight 缩放高度倍数 * @return 缩放后的图片 */ public static Bitmap scale(Bitmap src, float scaleWidth, float scaleHeight) { return scale(src, scaleWidth, scaleHeight, false); } /** * 缩放图片 * * @param src 源图片 * @param scaleWidth 缩放宽度倍数 * @param scaleHeight 缩放高度倍数 * @param recycle 是否回收 * @return 缩放后的图片 */ public static Bitmap scale(Bitmap src, float scaleWidth, float scaleHeight, boolean recycle) { if (isEmptyBitmap(src)) return null; Matrix matrix = new Matrix(); matrix.setScale(scaleWidth, scaleHeight); Bitmap ret = Bitmap.createBitmap(src, 0, 0, src.getWidth(), src.getHeight(), matrix, true); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 裁剪图片 * * @param src 源图片 * @param x 开始坐标x * @param y 开始坐标y * @param width 裁剪宽度 * @param height 裁剪高度 * @return 裁剪后的图片 */ public static Bitmap clip(Bitmap src, int x, int y, int width, int height) { return clip(src, x, y, width, height, false); } /** * 裁剪图片 * * @param src 源图片 * @param x 开始坐标x * @param y 开始坐标y * @param width 裁剪宽度 * @param height 裁剪高度 * @param recycle 是否回收 * @return 裁剪后的图片 */ public static Bitmap clip(Bitmap src, int x, int y, int width, int height, boolean recycle) { if (isEmptyBitmap(src)) return null; Bitmap ret = Bitmap.createBitmap(src, x, y, width, height); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 倾斜图片 * * @param src 源图片 * @param kx 倾斜因子x * @param ky 倾斜因子y * @return 倾斜后的图片 */ public static Bitmap skew(Bitmap src, float kx, float ky) { return skew(src, kx, ky, 0, 0, false); } /** * 倾斜图片 * * @param src 源图片 * @param kx 倾斜因子x * @param ky 倾斜因子y * @param recycle 是否回收 * @return 倾斜后的图片 */ public static Bitmap skew(Bitmap src, float kx, float ky, boolean recycle) { return skew(src, kx, ky, 0, 0, recycle); } /** * 倾斜图片 * * @param src 源图片 * @param kx 倾斜因子x * @param ky 倾斜因子y * @param px 平移因子x * @param py 平移因子y * @return 倾斜后的图片 */ public static Bitmap skew(Bitmap src, float kx, float ky, float px, float py) { return skew(src, kx, ky, 0, 0, false); } /** * 倾斜图片 * * @param src 源图片 * @param kx 倾斜因子x * @param ky 倾斜因子y * @param px 平移因子x * @param py 平移因子y * @param recycle 是否回收 * @return 倾斜后的图片 */ public static Bitmap skew(Bitmap src, float kx, float ky, float px, float py, boolean recycle) { if (isEmptyBitmap(src)) return null; Matrix matrix = new Matrix(); matrix.setSkew(kx, ky, px, py); Bitmap ret = Bitmap.createBitmap(src, 0, 0, src.getWidth(), src.getHeight(), matrix, true); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 旋转图片 * * @param src 源图片 * @param degrees 旋转角度 * @param px 旋转点横坐标 * @param py 旋转点纵坐标 * @return 旋转后的图片 */ public static Bitmap rotate(Bitmap src, int degrees, float px, float py) { return rotate(src, degrees, px, py, false); } /** * 旋转图片 * * @param src 源图片 * @param degrees 旋转角度 * @param px 旋转点横坐标 * @param py 旋转点纵坐标 * @param recycle 是否回收 * @return 旋转后的图片 */ public static Bitmap rotate(Bitmap src, int degrees, float px, float py, boolean recycle) { if (isEmptyBitmap(src)) return null; if (degrees == 0) return src; Matrix matrix = new Matrix(); matrix.setRotate(degrees, px, py); Bitmap ret = Bitmap.createBitmap(src, 0, 0, src.getWidth(), src.getHeight(), matrix, true); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 获取图片旋转角度 * * @param filePath 文件路径 * @return 旋转角度 */ public static int getRotateDegree(String filePath) { int degree = 0; try { ExifInterface exifInterface = new ExifInterface(filePath); int orientation = exifInterface.getAttributeInt( ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL); switch (orientation) { default: case ExifInterface.ORIENTATION_ROTATE_90: degree = 90; break; case ExifInterface.ORIENTATION_ROTATE_180: degree = 180; break; case ExifInterface.ORIENTATION_ROTATE_270: degree = 270; break; } } catch (IOException e) { e.printStackTrace(); } return degree; } /** * 转为圆形图片 * * @param src 源图片 * @return 圆形图片 */ public static Bitmap toRound(Bitmap src) { return toRound(src, false); } /** * 转为圆形图片 * * @param src 源图片 * @param recycle 是否回收 * @return 圆形图片 */ public static Bitmap toRound(Bitmap src, boolean recycle) { if (isEmptyBitmap(src)) return null; int width = src.getWidth(); int height = src.getHeight(); int radius = Math.min(width, height) >> 1; Bitmap ret = Bitmap.createBitmap(width, height, src.getConfig()); Paint paint = new Paint(); Canvas canvas = new Canvas(ret); Rect rect = new Rect(0, 0, width, height); paint.setAntiAlias(true); canvas.drawARGB(0, 0, 0, 0); canvas.drawCircle(width >> 1, height >> 1, radius, paint); paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN)); canvas.drawBitmap(src, rect, rect, paint); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 转为圆角图片 * * @param src 源图片 * @param radius 圆角的度数 * @return 圆角图片 */ public static Bitmap toRoundCorner(Bitmap src, float radius) { return toRoundCorner(src, radius, false); } /** * 转为圆角图片 * * @param src 源图片 * @param radius 圆角的度数 * @param recycle 是否回收 * @return 圆角图片 */ public static Bitmap toRoundCorner(Bitmap src, float radius, boolean recycle) { if (null == src) return null; int width = src.getWidth(); int height = src.getHeight(); Bitmap ret = Bitmap.createBitmap(width, height, src.getConfig()); Paint paint = new Paint(); Canvas canvas = new Canvas(ret); Rect rect = new Rect(0, 0, width, height); paint.setAntiAlias(true); canvas.drawRoundRect(new RectF(rect), radius, radius, paint); paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN)); canvas.drawBitmap(src, rect, rect, paint); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 快速模糊 * <p>先缩小原图,对小图进行模糊,再放大回原先尺寸</p> * * @param context 上下文 * @param src 源图片 * @param scale 缩放比例(0...1) * @param radius 模糊半径 * @return 模糊后的图片 */ public static Bitmap fastBlur(Context context, Bitmap src, float scale, float radius) { return fastBlur(context, src, scale, radius, false); } /** * 快速模糊图片 * <p>先缩小原图,对小图进行模糊,再放大回原先尺寸</p> * * @param context 上下文 * @param src 源图片 * @param scale 缩放比例(0...1) * @param radius 模糊半径 * @param recycle 是否回收 * @return 模糊后的图片 */ public static Bitmap fastBlur(Context context, Bitmap src, float scale, float radius, boolean recycle) { if (isEmptyBitmap(src)) return null; int width = src.getWidth(); int height = src.getHeight(); int scaleWidth = (int) (width * scale + 0.5f); int scaleHeight = (int) (height * scale + 0.5f); if (scaleWidth == 0 || scaleHeight == 0) return null; Bitmap scaleBitmap = Bitmap.createScaledBitmap(src, scaleWidth, scaleHeight, true); Paint paint = new Paint(Paint.FILTER_BITMAP_FLAG | Paint.ANTI_ALIAS_FLAG); Canvas canvas = new Canvas(); PorterDuffColorFilter filter = new PorterDuffColorFilter( Color.TRANSPARENT, PorterDuff.Mode.SRC_ATOP); paint.setColorFilter(filter); canvas.scale(scale, scale); canvas.drawBitmap(scaleBitmap, 0, 0, paint); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { scaleBitmap = renderScriptBlur(context, scaleBitmap, radius); } else { scaleBitmap = stackBlur(scaleBitmap, (int) radius, recycle); } if (scale == 1) return scaleBitmap; Bitmap ret = Bitmap.createScaledBitmap(scaleBitmap, width, height, true); if (scaleBitmap != null && !scaleBitmap.isRecycled()) scaleBitmap.recycle(); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * renderScript模糊图片 * <p>API大于17</p> * * @param context 上下文 * @param src 源图片 * @param radius 模糊度(1...25) * @return 模糊后的图片 */ @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) public static Bitmap renderScriptBlur(Context context, Bitmap src, float radius) { if (isEmptyBitmap(src)) return null; RenderScript rs = null; try { rs = RenderScript.create(context); rs.setMessageHandler(new RenderScript.RSMessageHandler()); Allocation input = Allocation.createFromBitmap(rs, src, Allocation.MipmapControl.MIPMAP_NONE, Allocation .USAGE_SCRIPT); Allocation output = Allocation.createTyped(rs, input.getType()); ScriptIntrinsicBlur blurScript = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); if (radius > 25) { radius = 25.0f; } else if (radius <= 0) { radius = 1.0f; } blurScript.setInput(input); blurScript.setRadius(radius); blurScript.forEach(output); output.copyTo(src); } finally { if (rs != null) { rs.destroy(); } } return src; } /** * stack模糊图片 * * @param src 源图片 * @param radius 模糊半径 * @param recycle 是否回收 * @return stack模糊后的图片 */ public static Bitmap stackBlur(Bitmap src, int radius, boolean recycle) { Bitmap ret; if (recycle) { ret = src; } else { ret = src.copy(src.getConfig(), true); } if (radius < 1) { return null; } int w = ret.getWidth(); int h = ret.getHeight(); int[] pix = new int[w * h]; ret.getPixels(pix, 0, w, 0, 0, w, h); int wm = w - 1; int hm = h - 1; int wh = w * h; int div = radius + radius + 1; int r[] = new int[wh]; int g[] = new int[wh]; int b[] = new int[wh]; int rsum, gsum, bsum, x, y, i, p, yp, yi, yw; int vmin[] = new int[Math.max(w, h)]; int divsum = (div + 1) >> 1; divsum *= divsum; int dv[] = new int[256 * divsum]; for (i = 0; i < 256 * divsum; i++) { dv[i] = (i / divsum); } yw = yi = 0; int[][] stack = new int[div][3]; int stackpointer; int stackstart; int[] sir; int rbs; int r1 = radius + 1; int routsum, goutsum, boutsum; int rinsum, ginsum, binsum; for (y = 0; y < h; y++) { rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0; for (i = -radius; i <= radius; i++) { p = pix[yi + Math.min(wm, Math.max(i, 0))]; sir = stack[i + radius]; sir[0] = (p & 0xff0000) >> 16; sir[1] = (p & 0x00ff00) >> 8; sir[2] = (p & 0x0000ff); rbs = r1 - Math.abs(i); rsum += sir[0] * rbs; gsum += sir[1] * rbs; bsum += sir[2] * rbs; if (i > 0) { rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; } else { routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; } } stackpointer = radius; for (x = 0; x < w; x++) { r[yi] = dv[rsum]; g[yi] = dv[gsum]; b[yi] = dv[bsum]; rsum -= routsum; gsum -= goutsum; bsum -= boutsum; stackstart = stackpointer - radius + div; sir = stack[stackstart % div]; routsum -= sir[0]; goutsum -= sir[1]; boutsum -= sir[2]; if (y == 0) { vmin[x] = Math.min(x + radius + 1, wm); } p = pix[yw + vmin[x]]; sir[0] = (p & 0xff0000) >> 16; sir[1] = (p & 0x00ff00) >> 8; sir[2] = (p & 0x0000ff); rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; rsum += rinsum; gsum += ginsum; bsum += binsum; stackpointer = (stackpointer + 1) % div; sir = stack[(stackpointer) % div]; routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; rinsum -= sir[0]; ginsum -= sir[1]; binsum -= sir[2]; yi++; } yw += w; } for (x = 0; x < w; x++) { rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0; yp = -radius * w; for (i = -radius; i <= radius; i++) { yi = Math.max(0, yp) + x; sir = stack[i + radius]; sir[0] = r[yi]; sir[1] = g[yi]; sir[2] = b[yi]; rbs = r1 - Math.abs(i); rsum += r[yi] * rbs; gsum += g[yi] * rbs; bsum += b[yi] * rbs; if (i > 0) { rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; } else { routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; } if (i < hm) { yp += w; } } yi = x; stackpointer = radius; for (y = 0; y < h; y++) { // Preserve alpha channel: ( 0xff000000 & pix[yi] ) pix[yi] = (0xff000000 & pix[yi]) | (dv[rsum] << 16) | (dv[gsum] << 8) | dv[bsum]; rsum -= routsum; gsum -= goutsum; bsum -= boutsum; stackstart = stackpointer - radius + div; sir = stack[stackstart % div]; routsum -= sir[0]; goutsum -= sir[1]; boutsum -= sir[2]; if (x == 0) { vmin[y] = Math.min(y + r1, hm) * w; } p = x + vmin[y]; sir[0] = r[p]; sir[1] = g[p]; sir[2] = b[p]; rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; rsum += rinsum; gsum += ginsum; bsum += binsum; stackpointer = (stackpointer + 1) % div; sir = stack[stackpointer]; routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; rinsum -= sir[0]; ginsum -= sir[1]; binsum -= sir[2]; yi += w; } } ret.setPixels(pix, 0, w, 0, 0, w, h); return ret; } /** * 添加颜色边框 * * @param src 源图片 * @param borderWidth 边框宽度 * @param color 边框的颜色值 * @return 带颜色边框图 */ public static Bitmap addFrame(Bitmap src, int borderWidth, int color) { return addFrame(src, borderWidth, color, false); } /** * 添加颜色边框 * * @param src 源图片 * @param borderWidth 边框宽度 * @param color 边框的颜色值 * @param recycle 是否回收 * @return 带颜色边框图 */ public static Bitmap addFrame(Bitmap src, int borderWidth, int color, boolean recycle) { if (isEmptyBitmap(src)) return null; int doubleBorder = borderWidth << 1; int newWidth = src.getWidth() + doubleBorder; int newHeight = src.getHeight() + doubleBorder; Bitmap ret = Bitmap.createBitmap(newWidth, newHeight, src.getConfig()); Canvas canvas = new Canvas(ret); Rect rect = new Rect(0, 0, newWidth, newHeight); Paint paint = new Paint(); paint.setColor(color); paint.setStyle(Paint.Style.STROKE); // setStrokeWidth是居中画的,所以要两倍的宽度才能画,否则有一半的宽度是空的 paint.setStrokeWidth(doubleBorder); canvas.drawRect(rect, paint); canvas.drawBitmap(src, borderWidth, borderWidth, null); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 添加倒影 * * @param src 源图片的 * @param reflectionHeight 倒影高度 * @return 带倒影图片 */ public static Bitmap addReflection(Bitmap src, int reflectionHeight) { return addReflection(src, reflectionHeight, false); } /** * 添加倒影 * * @param src 源图片的 * @param reflectionHeight 倒影高度 * @param recycle 是否回收 * @return 带倒影图片 */ public static Bitmap addReflection(Bitmap src, int reflectionHeight, boolean recycle) { if (isEmptyBitmap(src)) return null; // 原图与倒影之间的间距 final int REFLECTION_GAP = 0; int srcWidth = src.getWidth(); int srcHeight = src.getHeight(); Matrix matrix = new Matrix(); matrix.preScale(1, -1); Bitmap reflectionBitmap = Bitmap.createBitmap(src, 0, srcHeight - reflectionHeight, srcWidth, reflectionHeight, matrix, false); Bitmap ret = Bitmap.createBitmap(srcWidth, srcHeight + reflectionHeight, src.getConfig()); Canvas canvas = new Canvas(ret); canvas.drawBitmap(src, 0, 0, null); canvas.drawBitmap(reflectionBitmap, 0, srcHeight + REFLECTION_GAP, null); Paint paint = new Paint(); paint.setAntiAlias(true); LinearGradient shader = new LinearGradient(0, srcHeight, 0, ret.getHeight() + REFLECTION_GAP, 0x70FFFFFF, 0x00FFFFFF, Shader.TileMode.MIRROR); paint.setShader(shader); paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_IN)); canvas.drawRect(0, srcHeight + REFLECTION_GAP, srcWidth, ret.getHeight(), paint); if (!reflectionBitmap.isRecycled()) reflectionBitmap.recycle(); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 添加文字水印 * * @param src 源图片 * @param content 水印文本 * @param textSize 水印字体大小 * @param color 水印字体颜色 * @param x 起始坐标x * @param y 起始坐标y * @return 带有文字水印的图片 */ public static Bitmap addTextWatermark(Bitmap src, String content, int textSize, int color, float x, float y) { return addTextWatermark(src, content, textSize, color, x, y, false); } /** * 添加文字水印 * * @param src 源图片 * @param content 水印文本 * @param textSize 水印字体大小 * @param color 水印字体颜色 * @param x 起始坐标x * @param y 起始坐标y * @param recycle 是否回收 * @return 带有文字水印的图片 */ public static Bitmap addTextWatermark(Bitmap src, String content, float textSize, int color, float x, float y, boolean recycle) { if (isEmptyBitmap(src) || content == null) return null; Bitmap ret = src.copy(src.getConfig(), true); Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG); Canvas canvas = new Canvas(ret); paint.setColor(color); paint.setTextSize(textSize); Rect bounds = new Rect(); paint.getTextBounds(content, 0, content.length(), bounds); canvas.drawText(content, x, y + textSize, paint); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 添加图片水印 * * @param src 源图片 * @param watermark 图片水印 * @param x 起始坐标x * @param y 起始坐标y * @param alpha 透明度 * @return 带有图片水印的图片 */ public static Bitmap addImageWatermark(Bitmap src, Bitmap watermark, int x, int y, int alpha) { return addImageWatermark(src, watermark, x, y, alpha, false); } /** * 添加图片水印 * * @param src 源图片 * @param watermark 图片水印 * @param x 起始坐标x * @param y 起始坐标y * @param alpha 透明度 * @param recycle 是否回收 * @return 带有图片水印的图片 */ public static Bitmap addImageWatermark(Bitmap src, Bitmap watermark, int x, int y, int alpha, boolean recycle) { if (isEmptyBitmap(src)) return null; Bitmap ret = src.copy(src.getConfig(), true); if (!isEmptyBitmap(watermark)) { Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG); Canvas canvas = new Canvas(ret); paint.setAlpha(alpha); canvas.drawBitmap(watermark, x, y, paint); } if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 转为alpha位图 * * @param src 源图片 * @return alpha位图 */ public static Bitmap toAlpha(Bitmap src) { return toAlpha(src, false); } /** * 转为alpha位图 * * @param src 源图片 * @param recycle 是否回收 * @return alpha位图 */ public static Bitmap toAlpha(Bitmap src, Boolean recycle) { if (isEmptyBitmap(src)) return null; Bitmap ret = src.extractAlpha(); if (recycle && !src.isRecycled()) src.recycle(); return ret; } /** * 转为灰度图片 * * @param src 源图片 * @return 灰度图 */ public static Bitmap toGray(Bitmap src) { return toGray(src, false); } /** * 转为灰度图片 * * @param src 源图片 * @param recycle 是否回收 * @return 灰度图 */ public static Bitmap toGray(Bitmap src, boolean recycle) { if (isEmptyBitmap(src)) return null; Bitmap grayBitmap = Bitmap.createBitmap(src.getWidth(), src.getHeight(), Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(grayBitmap); Paint paint = new Paint(); ColorMatrix colorMatrix = new ColorMatrix(); colorMatrix.setSaturation(0); ColorMatrixColorFilter colorMatrixColorFilter = new ColorMatrixColorFilter(colorMatrix); paint.setColorFilter(colorMatrixColorFilter); canvas.drawBitmap(src, 0, 0, paint); if (recycle && !src.isRecycled()) src.recycle(); return grayBitmap; } /** * 保存图片 * * @param src 源图片 * @param filePath 要保存到的文件路径 * @param format 格式 * @return {@code true}: 成功<br>{@code false}: 失败 */ public static boolean save(Bitmap src, String filePath, Bitmap.CompressFormat format) { return save(src, FileUtils.getFileByPath(filePath), format, false); } /** * 保存图片 * * @param src 源图片 * @param file 要保存到的文件 * @param format 格式 * @return {@code true}: 成功<br>{@code false}: 失败 */ public static boolean save(Bitmap src, File file, Bitmap.CompressFormat format) { return save(src, file, format, false); } /** * 保存图片 * * @param src 源图片 * @param filePath 要保存到的文件路径 * @param format 格式 * @param recycle 是否回收 * @return {@code true}: 成功<br>{@code false}: 失败 */ public static boolean save(Bitmap src, String filePath, Bitmap.CompressFormat format, boolean recycle) { return save(src, FileUtils.getFileByPath(filePath), format, recycle); } /** * 保存图片 * * @param src 源图片 * @param file 要保存到的文件 * @param format 格式 * @param recycle 是否回收 * @return {@code true}: 成功<br>{@code false}: 失败 */ public static boolean save(Bitmap src, File file, Bitmap.CompressFormat format, boolean recycle) { if (isEmptyBitmap(src) || !FileUtils.createOrExistsFile(file)) return false; System.out.println(src.getWidth() + ", " + src.getHeight()); OutputStream os = null; boolean ret = false; try { os = new BufferedOutputStream(new FileOutputStream(file)); ret = src.compress(format, 100, os); if (recycle && !src.isRecycled()) src.recycle(); } catch (IOException e) { e.printStackTrace(); } finally { CloseUtils.closeIO(os); } return ret; } /** * 根据文件名判断文件是否为图片 * * @param file  文件 * @return {@code true}: 是<br>{@code false}: 否 */ public static boolean isImage(File file) { return file != null && isImage(file.getPath()); } /** * 根据文件名判断文件是否为图片 * * @param filePath  文件路径 * @return {@code true}: 是<br>{@code false}: 否 */ public static boolean isImage(String filePath) { String path = filePath.toUpperCase(); return path.endsWith(".PNG") || path.endsWith(".JPG") || path.endsWith(".JPEG") || path.endsWith(".BMP") || path.endsWith(".GIF"); } /** * 获取图片类型 * * @param filePath 文件路径 * @return 图片类型 */ public static String getImageType(String filePath) { return getImageType(FileUtils.getFileByPath(filePath)); } /** * 获取图片类型 * * @param file 文件 * @return 图片类型 */ public static String getImageType(File file) { if (file == null) return null; InputStream is = null; try { is = new FileInputStream(file); return getImageType(is); } catch (IOException e) { e.printStackTrace(); return null; } finally { CloseUtils.closeIO(is); } } /** * 流获取图片类型 * * @param is 图片输入流 * @return 图片类型 */ public static String getImageType(InputStream is) { if (is == null) return null; try { byte[] bytes = new byte[8]; return is.read(bytes, 0, 8) != -1 ? getImageType(bytes) : null; } catch (IOException e) { e.printStackTrace(); return null; } } /** * 获取图片类型 * * @param bytes bitmap的前8字节 * @return 图片类型 */ public static String getImageType(byte[] bytes) { if (isJPEG(bytes)) return "JPEG"; if (isGIF(bytes)) return "GIF"; if (isPNG(bytes)) return "PNG"; if (isBMP(bytes)) return "BMP"; return null; } private static boolean isJPEG(byte[] b) { return b.length >= 2 && (b[0] == (byte) 0xFF) && (b[1] == (byte) 0xD8); } private static boolean isGIF(byte[] b) { return b.length >= 6 && b[0] == 'G' && b[1] == 'I' && b[2] == 'F' && b[3] == '8' && (b[4] == '7' || b[4] == '9') && b[5] == 'a'; } private static boolean isPNG(byte[] b) { return b.length >= 8 && (b[0] == (byte) 137 && b[1] == (byte) 80 && b[2] == (byte) 78 && b[3] == (byte) 71 && b[4] == (byte) 13 && b[5] == (byte) 10 && b[6] == (byte) 26 && b[7] == (byte) 10); } private static boolean isBMP(byte[] b) { return b.length >= 2 && (b[0] == 0x42) && (b[1] == 0x4d); } /** * 判断bitmap对象是否为空 * * @param src 源图片 * @return {@code true}: 是<br>{@code false}: 否 */ private static boolean isEmptyBitmap(Bitmap src) { return src == null || src.getWidth() == 0 || src.getHeight() == 0; } /** * 按缩放压缩 * * @param src 源图片 * @param newWidth 新宽度 * @param newHeight 新高度 * @return 缩放压缩后的图片 */ public static Bitmap compressByScale(Bitmap src, int newWidth, int newHeight) { return scale(src, newWidth, newHeight, false); } /** * 按缩放压缩 * * @param src 源图片 * @param newWidth 新宽度 * @param newHeight 新高度 * @param recycle 是否回收 * @return 缩放压缩后的图片 */ public static Bitmap compressByScale(Bitmap src, int newWidth, int newHeight, boolean recycle) { return scale(src, newWidth, newHeight, recycle); } /******************************~~~~~~~~~ 下方和压缩有关 ~~~~~~~~~******************************/ /** * 按缩放压缩 * * @param src 源图片 * @param scaleWidth 缩放宽度倍数 * @param scaleHeight 缩放高度倍数 * @return 缩放压缩后的图片 */ public static Bitmap compressByScale(Bitmap src, float scaleWidth, float scaleHeight) { return scale(src, scaleWidth, scaleHeight, false); } /** * 按缩放压缩 * * @param src 源图片 * @param scaleWidth 缩放宽度倍数 * @param scaleHeight 缩放高度倍数 * @param recycle 是否回收 * @return 缩放压缩后的图片 */ public static Bitmap compressByScale(Bitmap src, float scaleWidth, float scaleHeight, boolean recycle) { return scale(src, scaleWidth, scaleHeight, recycle); } /** * 按质量压缩 * * @param src 源图片 * @param quality 质量 * @return 质量压缩后的图片 */ public static Bitmap compressByQuality(Bitmap src, int quality) { return compressByQuality(src, quality, false); } /** * 按质量压缩 * * @param src 源图片 * @param quality 质量 * @param recycle 是否回收 * @return 质量压缩后的图片 */ public static Bitmap compressByQuality(Bitmap src, int quality, boolean recycle) { if (isEmptyBitmap(src) || quality < 0 || quality > 100) return null; ByteArrayOutputStream baos = new ByteArrayOutputStream(); src.compress(Bitmap.CompressFormat.JPEG, quality, baos); byte[] bytes = baos.toByteArray(); if (recycle && !src.isRecycled()) src.recycle(); return BitmapFactory.decodeByteArray(bytes, 0, bytes.length); } /** * 按质量压缩 * * @param src 源图片 * @param maxByteSize 允许最大值字节数 * @return 质量压缩压缩过的图片 */ public static Bitmap compressByQuality(Bitmap src, long maxByteSize) { return compressByQuality(src, maxByteSize, false); } /** * 按质量压缩 * * @param src 源图片 * @param maxByteSize 允许最大值字节数 * @param recycle 是否回收 * @return 质量压缩压缩过的图片 */ public static Bitmap compressByQuality(Bitmap src, long maxByteSize, boolean recycle) { if (isEmptyBitmap(src) || maxByteSize <= 0) return null; ByteArrayOutputStream baos = new ByteArrayOutputStream(); int quality = 100; src.compress(Bitmap.CompressFormat.JPEG, quality, baos); while (baos.toByteArray().length > maxByteSize && quality >= 0) { baos.reset(); src.compress(Bitmap.CompressFormat.JPEG, quality -= 5, baos); } if (quality < 0) return null; byte[] bytes = baos.toByteArray(); if (recycle && !src.isRecycled()) src.recycle(); return BitmapFactory.decodeByteArray(bytes, 0, bytes.length); } /** * 按采样大小压缩 * * @param src 源图片 * @param sampleSize 采样率大小 * @return 按采样率压缩后的图片 */ public static Bitmap compressBySampleSize(Bitmap src, int sampleSize) { return compressBySampleSize(src, sampleSize, false); } /** * 按采样大小压缩 * * @param src 源图片 * @param sampleSize 采样率大小 * @param recycle 是否回收 * @return 按采样率压缩后的图片 */ public static Bitmap compressBySampleSize(Bitmap src, int sampleSize, boolean recycle) { if (isEmptyBitmap(src)) return null; BitmapFactory.Options options = new BitmapFactory.Options(); options.inSampleSize = sampleSize; ByteArrayOutputStream baos = new ByteArrayOutputStream(); src.compress(Bitmap.CompressFormat.JPEG, 100, baos); byte[] bytes = baos.toByteArray(); if (recycle && !src.isRecycled()) src.recycle(); return BitmapFactory.decodeByteArray(bytes, 0, bytes.length, options); } /** * 缩放图像到指定尺寸 * * @param imageFile * @return */ public static Bitmap scaleImageFile(File imageFile, int width, int height, boolean isChat) { if (imageFile == null || !imageFile.isFile() || !imageFile.exists() || width <= 0 || height <= 0) { return null; } //imageFile.getAbsolutePath() Map<String, Integer> whMap = new HashMap<String, Integer>(); // Bitmap sourceBitmap = loadImageByStream(imageFile.getAbsolutePath(), width, height, whMap); Bitmap sourceBitmap = loadImageByFile(imageFile.getAbsolutePath(), width, height, whMap); //Bitmap sourceBitmap = loadImageByFile(imageFile.getAbsolutePath(), width, height, whMap); int rawPw = whMap.get("width"); int rawPh = whMap.get("height"); if (isChat && sourceBitmap != null) { Bitmap result = getScaleBitmap(sourceBitmap, rawPw, rawPh, width, height); if (sourceBitmap != result) {//刚好是640*640的图片时候返回是原图,不回收 setBitmapNull(sourceBitmap); } return result; } return sourceBitmap; } public static Bitmap scaleImageFileByKB(String path, boolean isChat) { try { FileInputStream fis = new FileInputStream(path); Bitmap bitmap = BitmapFactory.decodeStream(fis); ByteArrayOutputStream baos = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);//质量压缩方法,这里100表示不压缩,把压缩后的数据存放到baos中 int options = 100; while (baos.toByteArray().length / 1024 > 100) { //循环判断如果压缩后图片是否大于100kb,大于继续压缩 baos.reset();//重置baos即清空baos bitmap.compress(Bitmap.CompressFormat.JPEG, options, baos);//这里压缩options%,把压缩后的数据存放到baos中 options -= 10;//每次都减少10 } ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());//把压缩后的数据baos存放到ByteArrayInputStream中 Bitmap bitmap2 = BitmapFactory.decodeStream(isBm, null, null);//把ByteArrayInputStream数据生成图片 return bitmap2; } // catch (FileNotFoundException e) // { // // TODO Auto-generated catch block // e.printStackTrace(); // } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return null; } public static Bitmap loadImageByFile(String path, int width, int height, Map<String, Integer> whMap) { BitmapFactory.Options options = new BitmapFactory.Options(); // 先指定原始大小 options.inSampleSize = 1; // 只进行大小判断 options.inJustDecodeBounds = true; // 调用此方法得到options得到图片的大小 BitmapFactory.decodeFile(path, options); if (whMap != null) { int rawPw = options.outWidth; int rawPh = options.outHeight; whMap.put("width", rawPw); whMap.put("height", rawPh); } options.inSampleSize = calculateInSampleSize(options, width, height); // OK,我们得到了缩放的比例,现在开始正式读入BitMap数据 options.inJustDecodeBounds = false; options.inDither = false; options.inPreferredConfig = Bitmap.Config.RGB_565; // 根据options参数,减少所需要的内存 Bitmap sourceBitmap = null; try { sourceBitmap = BitmapFactory.decodeFile(path, options); } catch (OutOfMemoryError e) { System.gc(); } return sourceBitmap; } public static Bitmap loadImageByStream(String path, int width, int height, Map<String, Integer> whMap) { Bitmap bitmap = null; try { BufferedInputStream in = new BufferedInputStream(new FileInputStream(new File(path))); BitmapFactory.Options options = new BitmapFactory.Options(); //options.inSampleSize = 1; options.inJustDecodeBounds = true; BitmapFactory.decodeStream(in, null, options); in.close(); if (whMap != null) { int rawPw = options.outWidth; int rawPh = options.outHeight; whMap.put("width", rawPw); whMap.put("height", rawPh); } int i = 0; while (true) { if ((options.outWidth >> i <= width) && (options.outHeight >> i <= height)) { in = new BufferedInputStream(new FileInputStream(new File(path))); options.inSampleSize = (int) Math.pow(2.0D, i - 1); options.inJustDecodeBounds = false; //options.inDither = false; //options.inPreferredConfig = Bitmap.Config.RGB_565; bitmap = BitmapFactory.decodeStream(in, null, options); break; } i += 1; } } catch (OutOfMemoryError e) { System.gc(); } catch (Exception e) { System.gc(); } return bitmap; } public static Bitmap getScaleBitmap(Bitmap bitmap, int rawPw, int rawPh, int width, int height) { Bitmap result = null; boolean oom = false; try { if (rawPw > rawPh) {//横屏情况 int resizedPw = width; int resizedPh = width * rawPh / rawPw; result = Bitmap.createScaledBitmap(bitmap, resizedPw, resizedPh, true); } else { int resizedPh = height; int resizedPw = height * rawPw / rawPh; result = Bitmap.createScaledBitmap(bitmap, resizedPw, resizedPh, true); } } catch (OutOfMemoryError e) { System.gc(); oom = true; } if (oom) { return bitmap; } return result; } public static Bitmap rotaingImageView(int angle, Bitmap bitmap) { if (bitmap == null) { return null; } //旋转图片 动作 Matrix matrix = new Matrix(); matrix.postRotate(angle); Bitmap resizedBitmap = null; boolean oom = false; // 创建新的图片 try { resizedBitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true); } catch (OutOfMemoryError e) { System.gc(); oom = true; } if (oom) { return bitmap; } else { //bitmap.recycle(); setBitmapNull(bitmap); } return resizedBitmap; } public static int readPictureDegree(String path) { int degree = 0; try { ExifInterface exifInterface = new ExifInterface(path); int orientation = exifInterface.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL); switch (orientation) { case ExifInterface.ORIENTATION_ROTATE_90: degree = 90; break; case ExifInterface.ORIENTATION_ROTATE_180: degree = 180; break; case ExifInterface.ORIENTATION_ROTATE_270: degree = 270; break; } } catch (IOException e) { e.printStackTrace(); } return degree; } public static void compressSaveImageFile(String file_path, Bitmap bitmap) { File f = new File(file_path); FileOutputStream fOut = null; try { fOut = new FileOutputStream(f); bitmap.compress(Bitmap.CompressFormat.JPEG, 90, fOut); fOut.flush(); fOut.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if (bitmap != null && !bitmap.isRecycled()) { bitmap.recycle(); System.gc(); } // System.gc(); // bitmap.recycle(); } } public static void scaleBitmap(File file, int width, int height, int rotate, String fileName) { // if (scale) { Bitmap bitmap = scaleImageFile(file, width, height, true); if (bitmap == null) { return; } if (rotate != 0) { bitmap = rotaingImageView(rotate, bitmap); } compressSaveImageFile(fileName, bitmap); // } } public static void scaleBitmapByKB(String path, int rotate, String fileName) { // if (scale) { Bitmap bitmap = scaleImageFileByKB(path, true); if (bitmap == null) { return; } if (rotate != 0) { bitmap = rotaingImageView(rotate, bitmap); } compressSaveImageFile(fileName, bitmap); // } } public static void setBitmapNull(Bitmap bitmap) { if (bitmap != null && !bitmap.isRecycled()) { bitmap.recycle(); bitmap = null; System.gc(); } } public static Bitmap getNetBitmap(String url) { Bitmap bitmap = null; InputStream in = null; BufferedOutputStream out = null; try { in = new BufferedInputStream(new URL(url).openStream(), 4 * 2014); final ByteArrayOutputStream dataStream = new ByteArrayOutputStream(); out = new BufferedOutputStream(dataStream, 4 * 2014); byte[] b = new byte[4 * 2014]; int read; while ((read = in.read(b)) != -1) { out.write(b, 0, read); } out.flush(); byte[] data = dataStream.toByteArray(); bitmap = BitmapFactory.decodeByteArray(data, 0, data.length); data = null; } catch (OutOfMemoryError e) { e.printStackTrace(); System.gc(); } catch (IOException e) { e.printStackTrace(); } return bitmap; } // public static Map<String, String> getLocalSelectImg (Uri uri) { // MyApplication app = MyApplication.getInstance(); // Context ctx = app.getApplicationContext(); // // Cursor cursor = ctx.getContentResolver().query(uri, null, null, null,null); // try { // int rotateIndex = 0; // if (cursor != null) { // rotateIndex = cursor.getColumnIndex(MediaStore.Images.Media.ORIENTATION); // if (cursor.moveToFirst()) { // int rotate = 0; // String path = cursor.getString(1); // if (rotateIndex > 0) { // rotate = cursor.getInt(rotateIndex); // } // Map<String, String> map = new HashMap<String, String>(); // map.put("rotate", rotate + ""); // map.put("path", path); // return map; // } // } // } catch ( Exception e ) { // e.printStackTrace(); // } finally { // if (cursor != null && !cursor.isClosed()) { // cursor.close(); // } // } // return null; // } @SuppressLint("NewApi") public static Bitmap fastblur(Context context, Bitmap sentBitmap, int radius) { if (Build.VERSION.SDK_INT > 16) { Bitmap bitmap = sentBitmap.copy(sentBitmap.getConfig(), true); final RenderScript rs = RenderScript.create(context); final Allocation input = Allocation.createFromBitmap(rs, sentBitmap, Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); final Allocation output = Allocation.createTyped(rs, input.getType()); final ScriptIntrinsicBlur script = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs)); script.setRadius(radius /* e.g. 3.f */); script.setInput(input); script.forEach(output); output.copyTo(bitmap); return bitmap; } Bitmap bitmap = sentBitmap.copy(sentBitmap.getConfig(), true); if (radius < 1) { return (null); } int w = bitmap.getWidth(); int h = bitmap.getHeight(); int[] pix = new int[w * h]; Log.e("pix", w + " " + h + " " + pix.length); bitmap.getPixels(pix, 0, w, 0, 0, w, h); int wm = w - 1; int hm = h - 1; int wh = w * h; int div = radius + radius + 1; int r[] = new int[wh]; int g[] = new int[wh]; int b[] = new int[wh]; int rsum, gsum, bsum, x, y, i, p, yp, yi, yw; int vmin[] = new int[Math.max(w, h)]; int divsum = (div + 1) >> 1; divsum *= divsum; int dv[] = new int[256 * divsum]; for (i = 0; i < 256 * divsum; i++) { dv[i] = (i / divsum); } yw = yi = 0; int[][] stack = new int[div][3]; int stackpointer; int stackstart; int[] sir; int rbs; int r1 = radius + 1; int routsum, goutsum, boutsum; int rinsum, ginsum, binsum; for (y = 0; y < h; y++) { rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0; for (i = -radius; i <= radius; i++) { p = pix[yi + Math.min(wm, Math.max(i, 0))]; sir = stack[i + radius]; sir[0] = (p & 0xff0000) >> 16; sir[1] = (p & 0x00ff00) >> 8; sir[2] = (p & 0x0000ff); rbs = r1 - Math.abs(i); rsum += sir[0] * rbs; gsum += sir[1] * rbs; bsum += sir[2] * rbs; if (i > 0) { rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; } else { routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; } } stackpointer = radius; for (x = 0; x < w; x++) { r[yi] = dv[rsum]; g[yi] = dv[gsum]; b[yi] = dv[bsum]; rsum -= routsum; gsum -= goutsum; bsum -= boutsum; stackstart = stackpointer - radius + div; sir = stack[stackstart % div]; routsum -= sir[0]; goutsum -= sir[1]; boutsum -= sir[2]; if (y == 0) { vmin[x] = Math.min(x + radius + 1, wm); } p = pix[yw + vmin[x]]; sir[0] = (p & 0xff0000) >> 16; sir[1] = (p & 0x00ff00) >> 8; sir[2] = (p & 0x0000ff); rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; rsum += rinsum; gsum += ginsum; bsum += binsum; stackpointer = (stackpointer + 1) % div; sir = stack[(stackpointer) % div]; routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; rinsum -= sir[0]; ginsum -= sir[1]; binsum -= sir[2]; yi++; } yw += w; } for (x = 0; x < w; x++) { rinsum = ginsum = binsum = routsum = goutsum = boutsum = rsum = gsum = bsum = 0; yp = -radius * w; for (i = -radius; i <= radius; i++) { yi = Math.max(0, yp) + x; sir = stack[i + radius]; sir[0] = r[yi]; sir[1] = g[yi]; sir[2] = b[yi]; rbs = r1 - Math.abs(i); rsum += r[yi] * rbs; gsum += g[yi] * rbs; bsum += b[yi] * rbs; if (i > 0) { rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; } else { routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; } if (i < hm) { yp += w; } } yi = x; stackpointer = radius; for (y = 0; y < h; y++) { // Preserve alpha channel: ( 0xff000000 & pix[yi] ) pix[yi] = (0xff000000 & pix[yi]) | (dv[rsum] << 16) | (dv[gsum] << 8) | dv[bsum]; rsum -= routsum; gsum -= goutsum; bsum -= boutsum; stackstart = stackpointer - radius + div; sir = stack[stackstart % div]; routsum -= sir[0]; goutsum -= sir[1]; boutsum -= sir[2]; if (x == 0) { vmin[y] = Math.min(y + r1, hm) * w; } p = x + vmin[y]; sir[0] = r[p]; sir[1] = g[p]; sir[2] = b[p]; rinsum += sir[0]; ginsum += sir[1]; binsum += sir[2]; rsum += rinsum; gsum += ginsum; bsum += binsum; stackpointer = (stackpointer + 1) % div; sir = stack[stackpointer]; routsum += sir[0]; goutsum += sir[1]; boutsum += sir[2]; rinsum -= sir[0]; ginsum -= sir[1]; binsum -= sir[2]; yi += w; } } bitmap.setPixels(pix, 0, w, 0, 0, w, h); return (bitmap); } public static Bitmap takeScreenShot(Activity activity) { // View是你需要截图的View View view = activity.getWindow().getDecorView(); view.setDrawingCacheEnabled(true); view.buildDrawingCache(); Bitmap b1 = view.getDrawingCache(); // 获取状态栏高度 Rect frame = new Rect(); activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame); int statusBarHeight = frame.top; // 获取屏幕长和高 int width = activity.getWindowManager().getDefaultDisplay().getWidth(); int height = activity.getWindowManager().getDefaultDisplay().getHeight(); // 去掉标题栏 Bitmap b = Bitmap.createBitmap(b1, 0, statusBarHeight, width, height - statusBarHeight); view.destroyDrawingCache(); return b; } /** * 获取bitmap * * @param is 输入流 * @return bitmap */ public Bitmap getBitmap(InputStream is) { if (is == null) return null; return BitmapFactory.decodeStream(is); } /** * 获取bitmap * * @param data 数据 * @param offset 偏移量 * @return bitmap */ public Bitmap getBitmap(byte[] data, int offset) { if (data.length == 0) return null; return BitmapFactory.decodeByteArray(data, offset, data.length); } }
[ "nathanwriting@126.com" ]
nathanwriting@126.com
bbfbb20074b305744882c128a98eb7e19a72c250
d0536669bb37019e766766461032003ad045665b
/jdk1.4.2_src/org/omg/CORBA/UNKNOWN.java
4c70c0ed7c8b1f0c95265bba0d2334cd53e890e3
[]
no_license
eagle518/jdk-source-code
c0d60f0762bce0221c7eeb1654aa1a53a3877313
91b771140de051fb843af246ab826dd6ff688fe3
refs/heads/master
2021-01-18T19:51:07.988541
2010-09-09T06:36:02
2010-09-09T06:36:02
38,047,470
11
23
null
null
null
null
UTF-8
Java
false
false
2,570
java
/* * @(#)UNKNOWN.java 1.30 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package org.omg.CORBA; /** * This exception is raised if an operation implementation * throws a non-CORBA exception (such as an exception * specific to the implementation's programming language), * or if an operation raises a user exception that does not * appear in the operation's raises expression. UNKNOWN is * also raised if the server returns a system exception that * is unknown to the client. (This can happen if the server * uses a later version of CORBA than the client and new system * exceptions have been added to the later version.)<P> * It contains a minor code, which gives more detailed information about * what caused the exception, and a completion status. It may also contain * a string describing the exception. * <P> * See the section <A href="../../../../guide/idl/jidlExceptions.html#minorcodemeanings">Minor * Code Meanings</A> to see the minor codes for this exception. * * @see <A href="../../../../guide/idl/jidlExceptions.html">documentation on * Java&nbsp;IDL exceptions</A> * @version 1.10 07 Nov 1996 */ public final class UNKNOWN extends SystemException { /** * Constructs an <code>UNKNOWN</code> exception with a default minor code * of 0, a completion state of CompletionStatus.COMPLETED_NO, * and a null description. */ public UNKNOWN() { this(""); } /** * Constructs an <code>UNKNOWN</code> exception with the specified description message, * a minor code of 0, and a completion state of COMPLETED_NO. * @param s the String containing a detail message */ public UNKNOWN(String s) { this(s, 0, CompletionStatus.COMPLETED_NO); } /** * Constructs an <code>UNKNOWN</code> exception with the specified * minor code and completion status. * @param minor the minor code * @param completed the completion status */ public UNKNOWN(int minor, CompletionStatus completed) { this("", minor, completed); } /** * Constructs an <code>UNKNOWN</code> exception with the specified description * message, minor code, and completion status. * @param s the String containing a description message * @param minor the minor code * @param completed the completion status */ public UNKNOWN(String s, int minor, CompletionStatus completed) { super(s, minor, completed); } }
[ "kzhaicn@e8197d6f-d431-fb3f-3203-916d138821fd" ]
kzhaicn@e8197d6f-d431-fb3f-3203-916d138821fd
9467e8ef6019249e3b3100a8d6015c5a5d17167e
8ba9269c283d3795aae36997e63968de89c514cd
/app/src/main/java/com/darkweb/genesisvpn/application/serverManager/server_model.java
eb5c173ba24d1c64782f700ba3b45a9e4b1999eb
[]
no_license
bigkingvpn/Genesis-VPN-Android
0f421ac1869a7650e5335e0f1c0cfbfe3265925e
9fae2c09db54b6d45901a71d6b07a7c8a4acbb04
refs/heads/master
2022-02-15T22:04:00.804950
2019-08-26T20:39:49
2019-08-26T20:39:49
263,023,067
2
0
null
2020-05-11T11:29:03
2020-05-11T11:29:02
null
UTF-8
Java
false
false
577
java
package com.darkweb.genesisvpn.application.serverManager; public class server_model { /*INSTANCE DECLARATIONS*/ private server_controller serverInstance; /*INITIALIZATIONS*/ private static final server_model ourInstance = new server_model(); public static server_model getInstance() { return ourInstance; } /*INSTANCE GETTERS SETTERS*/ server_controller getServerInstance(){ return serverInstance; } void setServerInstance(server_controller serverInstance){ this.serverInstance = serverInstance; } }
[ "msmannan00@gmail.com" ]
msmannan00@gmail.com
b678b615e325edbbcd8c179f3c3ca86e76f9e54f
6eff420de7317d53477161123635f92782482e5c
/src/me/versache/core/special/key/sale/KeySaleListener.java
39c0fc85ad6d14dba36490396c70a0825b91f2ab
[]
no_license
VersachePvP/cLife
df6a29c78c25535ea5cdf25e4eda5c70262cde94
cc15889bf9dd19d10da7329668512f4835efc7ec
refs/heads/master
2020-05-22T21:59:17.089236
2019-05-14T03:42:44
2019-05-14T03:42:44
186,539,321
0
0
null
null
null
null
UTF-8
Java
false
false
1,696
java
package me.versache.core.special.key.sale; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.event.Listener; import org.bukkit.scheduler.BukkitRunnable; import me.versache.core.Base; public class KeySaleListener implements Listener { private RebootRunnable rebootRunnable; Base plugin; public boolean cancel() { if (this.rebootRunnable != null) { this.rebootRunnable.cancel(); this.rebootRunnable = null; return true; } return false; } public void start(long millis) { if (this.rebootRunnable == null) { this.rebootRunnable = new RebootRunnable(this, millis); this.rebootRunnable.runTaskLater(Base.getPlugin(), millis / 50L); } } public static class RebootRunnable extends BukkitRunnable { private KeySaleListener rebootTimer; private long startMillis; private static long endMillis; @SuppressWarnings("static-access") public RebootRunnable(KeySaleListener rebootTimer, long duration) { this.rebootTimer = rebootTimer; this.startMillis = System.currentTimeMillis(); this.endMillis = this.startMillis + duration; } public long getRemaining() { return endMillis - System.currentTimeMillis(); } @Override public void run() { this.cancel(); this.rebootTimer.rebootRunnable = null; } } public RebootRunnable getRebootRunnable() { return rebootRunnable; } public long getRemaining() { return RebootRunnable.endMillis - System.currentTimeMillis(); } }
[ "46875705+VersachePvP@users.noreply.github.com" ]
46875705+VersachePvP@users.noreply.github.com
c66bc0d4904fcc62ff8b825f1903152fe74bd543
fa7f7928734d2439e8abf7ce4aefc814254dfe92
/src/main/java/com/example/kafka0809_1/listener/IKafkaListener.java
3bd91584a3c53ffe76f03bb79d09514596a48428
[]
no_license
xuecode666/BeanPostProcessor_kafka
c2a129846e6f36e04dfc8728162a2b6cfdaf9069
44386768675b767bbc418b1841b6d1963b81fc32
refs/heads/master
2023-07-16T14:12:45.824149
2021-08-19T03:38:16
2021-08-19T03:38:16
397,806,092
1
0
null
null
null
null
UTF-8
Java
false
false
186
java
package com.example.kafka0809_1.listener; import org.apache.kafka.clients.consumer.ConsumerRecord; public interface IKafkaListener { void listener(ConsumerRecord<?, ?> record); }
[ "460279795@qq.com" ]
460279795@qq.com
04eca4807e17572e0b2c207cf48f8f95bd538bdc
3a0736313f0443c7aec6ad623628b0866cc468ff
/app/src/main/java/com/emproducciones/papy/botoneraCargaNumerosFragment.java
95353ac07fb0823e9acbe8179357792f5fbe0311
[]
no_license
emproducciones2257/papy
ccbebd46f4bbef46b374cc1d7aa152aedacf75cc
a44be027208b4a00a5bcbf4ad0bf38098cfc58b7
refs/heads/master
2020-12-27T08:55:53.738116
2020-02-02T21:52:29
2020-02-02T21:52:29
237,842,371
0
0
null
null
null
null
UTF-8
Java
false
false
4,381
java
package com.emproducciones.papy; import android.support.v4.app.Fragment; import android.view.View; import android.widget.*; import org.androidannotations.annotations.*; import org.androidannotations.annotations.res.ColorRes; import java.util.ArrayList; @EFragment(R.layout.fragment_botonera_carga_numeros) public class botoneraCargaNumerosFragment extends Fragment { @ViewById static TextView edtN1,edtN2,edtN3; @ColorRes(R.color.primaryColor) static int primaryColor; @ColorRes(R.color.rojoError) static int error; static ArrayList<Button> botonesSeleccionados = new ArrayList<>(); static Boolean estado=true; @Click(R.id.btnBorrarNumeros) void borrarNumeros(){borrarNumerosIngresadosIncorrectos();} @Click({R.id.btn00,R.id.btn01,R.id.btn02,R.id.btn03,R.id.btn04,R.id.btn05,R.id.btn06,R.id.btn07,R.id.btn08,R.id.btn09, R.id.btn10,R.id.btn11,R.id.btn12,R.id.btn13,R.id.btn14,R.id.btn15,R.id.btn16,R.id.btn17,R.id.btn18,R.id.btn19, R.id.btn20,R.id.btn21,R.id.btn22,R.id.btn23,R.id.btn24}) void btn00(View view){ escribirNumero(view); } public void borrarNumerosIngresadosIncorrectos(){ if(!(edtN3.getText().equals("N° 3"))){ habilitarBoton(edtN3.getText().toString()); edtN3.setText("N° 3"); }else if(!(edtN2.getText().equals("N° 2"))){ habilitarBoton(edtN2.getText().toString()); edtN2.setText("N° 2"); }else { habilitarBoton(edtN1.getText().toString()); edtN1.setText("N° 1"); } } public void escribirNumero (View v){ Button btnTemporal = (Button) v; if (edtN1.getText().equals("N° 1")){ edtN1.setText(btnTemporal.getText()); }else if (edtN2.getText().equals("N° 2")) { edtN2.setText(btnTemporal.getText()); }else if (edtN3.getText().equals("N° 3")) { edtN3.setText(btnTemporal.getText()); }else return; v.setEnabled(false); cargarBotonesSeleccionados(btnTemporal); } ArrayList<Button> getBotonesSeleccionados(){ return botonesSeleccionados; } void cargarBotonesSeleccionados(Button temporal){ botonesSeleccionados.add(temporal); } static void habilitarBoton (String b){ for (Button e : botonesSeleccionados){ if (e.getText().equals(b)){ e.setEnabled(true); } } } static void desabilitarBoton (String b){ for (Button e : botonesSeleccionados){ if (e.getText().equals(b)){ e.setEnabled(false); } } } static Boolean verificacion(){ if(edtN1.getText().equals("N° 1")){ edtN1.setError("Agregar Numero"); estado=false; edtN1.setTextColor(error); return estado; }else { edtN1.setError(null); estado=true; edtN1.setTextColor(primaryColor); } if(edtN2.getText().equals("N° 2")){ edtN2.setError("Agregar Numero"); estado=false; edtN2.setTextColor(error); return estado; }else { edtN2.setError(null); edtN2.setTextColor(primaryColor); estado=true; } if(edtN3.getText().equals("N° 3")){ edtN3.setError("Agregar Numero"); edtN3.setTextColor(error); estado=false; return estado; }else { edtN3.setError(null); edtN3.setTextColor(primaryColor); estado=true; } return estado; } static Boolean verificacionUltimaJugada(){ if(edtN1.getText().equals("N° 1")){ edtN1.setError("Agregar Numero"); estado=false; edtN1.setTextColor(error); return estado; }else { edtN1.setError(null); estado=true; edtN1.setTextColor(primaryColor); } return estado; } static void limpiarComponentes (){ edtN1.setText("N° 1"); edtN2.setText("N° 2"); edtN3.setText("N° 3"); } static void habilitarBotonesDesabilitados (){ for (Button e : botonesSeleccionados){ e.setEnabled(true); } } }
[ "emproducciones2257@gmail.com" ]
emproducciones2257@gmail.com
5c7f0a2b62a93676d32631cfb8dcba52e5dfd891
5be7bd0f51d1e62a949c7fdb35ac96aeecd23c45
/six_seven/SpringFreshFruitsStore/src_test/it/freshfruits/domain/vo/ContactInformationUnitTest.java
345ae93204fffc60f22f09a6297abf71f4c38855
[]
no_license
desmax74/Spring_2.5_Aspect_Oriented_Programming_book
db4e4176d04206679fcc54114999247669537ae7
6db9396aec31799f2c4d03af1c80f51d98f31597
refs/heads/master
2020-12-24T16:05:57.643175
2014-05-02T12:45:03
2014-05-02T12:45:03
19,339,505
0
1
null
null
null
null
UTF-8
Java
false
false
1,512
java
package it.freshfruits.domain.vo; import static org.junit.Assert.assertEquals; import it.freshfruits.domain.vo.ContactInformation; import it.freshfruits.domain.vo.ContactInformationImpl; import org.junit.Test; public class ContactInformationUnitTest { @Test public void testConstructorCorrect() { ContactInformation contact = new ContactInformationImpl.Builder("+39070123456", "3391234567", "", "foo[at]yahoo[dot]it").build(); assertEquals(contact.getEmail(), "foo[at]yahoo[dot]it"); assertEquals(contact.getFaxNumber(), ""); assertEquals(contact.getMobilePhoneNumber(), "3391234567"); assertEquals(contact.getPhoneNumber(), "+39070123456"); } @Test(expected = IllegalArgumentException.class) public void testNullEmail() { new ContactInformationImpl.Builder("+39070123456", "3391234567", "", null).build(); } @Test(expected = IllegalArgumentException.class) public void testNullPhoneNumber() { new ContactInformationImpl.Builder(null, "3391234567", "", "foo[at]yahoo[dot]it").build(); } @Test(expected = IllegalArgumentException.class) public void testNullMobilePhoneNumber() { new ContactInformationImpl.Builder("+39070123456", null, "", "foo[at]yahoo[dot]it").build(); } @Test(expected = IllegalArgumentException.class) public void testNullFaxNumber() { new ContactInformationImpl.Builder("+39070123456", "3391234567", null, "foo[at]yahoo[dot]it").build(); } }
[ "desmax74[remove]@[remove]yahoo[remove].[remove]it" ]
desmax74[remove]@[remove]yahoo[remove].[remove]it
d7c8a9076431e82294563ca0f20e03bea5508072
ea8c1c69a607ad48ba963272801b3bc4c032124b
/src/main/java/cn/julong/algorithm/leetcode/LC647.java
f45694bf3ba550e5078b702548f5d74780013e9e
[]
no_license
weicm/java
fcb958a8e30bb5840f03a7d295e1576f4edf0033
72d761bc5913447fb52e9c399beafa0e93e1ef55
refs/heads/master
2023-07-04T11:33:36.332858
2023-06-16T03:26:19
2023-06-16T03:26:19
93,813,847
1
0
null
2022-11-16T02:58:10
2017-06-09T03:11:54
Java
UTF-8
Java
false
false
1,395
java
package cn.julong.algorithm.leetcode; public class LC647 { public static void main(String[] args) { System.out.println(countSubstrings("aaa")); } public static int countSubstrings(String s) { // return violence(s); return dynamicPlan(s); } private static int violence(String s) { if (s.length() == 1) { return 1; } int len = s.length(); int ans = 0; for (int i = 1; i <= len; i++) { for (int j = 0; j <= len - i; j++) { if (check(s.substring(j, j + i))) { ans++; } } } return ans; } private static int dynamicPlan(String s) { int len = s.length(), ans = 0; int[][] dp = new int[len][len]; for (int i = len - 1; i >= 0; i--) { for (int j = i; j < len; j++) { if (s.charAt(i) == s.charAt(j)) { if (j - i <= 1 || dp[i + 1][j - 1] == 1) { dp[i][j] = 1; ans++; } } } } return ans; } static boolean check(String s) { for (int i = 0, j = s.length() - 1; i <= j; i++, j--) { if (s.charAt(i) != s.charAt(j)) { return false; } } return true; } }
[ "weichangming@hualala.com" ]
weichangming@hualala.com
eb22a601198bb8ff007b5894297f293dc7713b56
49b4cb79c910a17525b59d4b497a09fa28a9e3a8
/parserValidCheck/src/main/java/com/ke/css/cimp/ffm/ffm8/Rule_AWB.java
efddd355a6a92373fc3a0f76d9708248eb7d4eae
[]
no_license
ganzijo/koreanair
a7d750b62cec2647bfb2bed4ca1bf8648d9a447d
e980fb11bc4b8defae62c9d88e5c70a659bef436
refs/heads/master
2021-04-26T22:04:17.478461
2018-03-06T05:59:32
2018-03-06T05:59:32
124,018,887
0
0
null
null
null
null
UTF-8
Java
false
false
182,260
java
package com.ke.css.cimp.ffm.ffm8; /* ----------------------------------------------------------------------------- * Rule_AWB.java * ----------------------------------------------------------------------------- * * Producer : com.parse2.aparse.Parser 2.5 * Produced : Fri Feb 23 10:57:44 KST 2018 * * ----------------------------------------------------------------------------- */ import java.util.ArrayList; final public class Rule_AWB extends Rule { public Rule_AWB(String spelling, ArrayList<Rule> rules) { super(spelling, rules); } public Object accept(Visitor visitor) { return visitor.visit(this); } public static Rule_AWB parse(ParserContext context) { context.push("AWB"); boolean parsed = true; int s0 = context.index; ParserAlternative a0 = new ParserAlternative(s0); ArrayList<ParserAlternative> as1 = new ArrayList<ParserAlternative>(); parsed = false; { int s1 = context.index; ParserAlternative a1 = new ParserAlternative(s1); parsed = true; if (parsed) { boolean f1 = true; int c1 = 0; for (int i1 = 0; i1 < 1 && f1; i1++) { int g1 = context.index; ArrayList<ParserAlternative> as2 = new ArrayList<ParserAlternative>(); parsed = false; { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f2 = rule != null)) { a2.add(rule, context.index); c2++; } } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { Rule rule = Rule_DIM.parse(context); if ((f2 = rule != null)) { a2.add(rule, context.index); c2++; } } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { Rule rule = Rule_CMI.parse(context); if ((f2 = rule != null)) { a2.add(rule, context.index); c2++; } } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { Rule rule = Rule_OSI.parse(context); if ((f2 = rule != null)) { a2.add(rule, context.index); c2++; } } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { Rule rule = Rule_COR.parse(context); if ((f2 = rule != null)) { a2.add(rule, context.index); c2++; } } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { Rule rule = Rule_OCI.parse(context); if ((f2 = rule != null)) { a2.add(rule, context.index); c2++; } } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } { int s2 = context.index; ParserAlternative a2 = new ParserAlternative(s2); parsed = true; if (parsed) { boolean f2 = true; int c2 = 0; for (int i2 = 0; i2 < 1 && f2; i2++) { int g2 = context.index; ArrayList<ParserAlternative> as3 = new ArrayList<ParserAlternative>(); parsed = false; { int s3 = context.index; ParserAlternative a3 = new ParserAlternative(s3); parsed = true; if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_Grp_AWB.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_DIM.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_CMI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OSI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_COR.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { boolean f3 = true; int c3 = 0; for (int i3 = 0; i3 < 1 && f3; i3++) { Rule rule = Rule_OCI.parse(context); if ((f3 = rule != null)) { a3.add(rule, context.index); c3++; } } parsed = c3 == 1; } if (parsed) { as3.add(a3); } context.index = s3; } ParserAlternative b = ParserAlternative.getBest(as3); parsed = b != null; if (parsed) { a2.add(b.rules, b.end); context.index = b.end; } f2 = context.index > g2; if (parsed) c2++; } parsed = c2 == 1; } if (parsed) { as2.add(a2); } context.index = s2; } ParserAlternative b = ParserAlternative.getBest(as2); parsed = b != null; if (parsed) { a1.add(b.rules, b.end); context.index = b.end; } f1 = context.index > g1; if (parsed) c1++; } parsed = c1 == 1; } if (parsed) { as1.add(a1); } context.index = s1; } ParserAlternative b = ParserAlternative.getBest(as1); parsed = b != null; if (parsed) { a0.add(b.rules, b.end); context.index = b.end; } Rule rule = null; if (parsed) { rule = new Rule_AWB(context.text.substring(a0.start, a0.end), a0.rules); } else { context.index = s0; } context.pop("AWB", parsed); return (Rule_AWB)rule; } } /* ----------------------------------------------------------------------------- * eof * ----------------------------------------------------------------------------- */
[ "wrjo@wrjo-PC" ]
wrjo@wrjo-PC
631bedf45c28466571b8722f10fbe1927e33bcb4
26a09243d5184300d96de113f9b4a1cdf2a4c853
/Socket Programming/src/Client.java
ddef8577f586625ea8b649ec44fd5d2d4df6c36a
[]
no_license
cskone/Data-Communications
909e31d295eda973cc16b83540870f2df699baa7
31870bc5b7922f482fc497c728d4a7f27412a0d3
refs/heads/master
2023-06-27T20:18:06.332691
2021-07-30T23:25:27
2021-07-30T23:25:27
253,101,602
0
0
null
null
null
null
UTF-8
Java
false
false
2,205
java
import java.io.*; import java.net.*; public class Client { public static void main(String[] args) throws IOException{ String serverHostname = new String ("127.0.0.1"); String fileToSend = "C:\\Programming\\CSCI3401\\Socket Programming\\Client Folder\\ClientFile.txt"; if (args.length > 0) serverHostname = args[0]; System.out.println ("Attemping to connect to host " + serverHostname + " on port 12345."); Socket echoSocket = null; PrintWriter out = null; BufferedReader in = null; FileInputStream fis = null; try { // echoSocket = new Socket("taranis", 7); echoSocket = new Socket(serverHostname,12345); out = new PrintWriter(echoSocket.getOutputStream(), true); in = new BufferedReader(new InputStreamReader( echoSocket.getInputStream())); } catch (UnknownHostException e) { System.err.println("Don't know about host: " + serverHostname); System.exit(1); } catch (IOException e) { System.err.println("Couldn't get I/O for " + "the connection to: " + serverHostname); System.exit(1); } BufferedReader stdIn = new BufferedReader( new InputStreamReader(System.in)); String userInput = null; System.out.print ("input: "); while ((userInput = stdIn.readLine()) != null ) { out.println(userInput); try{ if(in.readLine().equals("ALOHA!")) { System.out.println("Received"); } else if(userInput.equalsIgnoreCase("Bye")) {System.out.println("Socket will be closed!");break;} } catch (Exception e) { System.out.println("Socket Closed!"); break; } System.out.print ("input: "); } out.close(); in.close(); stdIn.close(); echoSocket.close(); } }
[ "cskone@my.hpu.edu" ]
cskone@my.hpu.edu
fc7fd54d092bde936f45d603ad90ca005ccc5498
424e640f07a93ccc7af10fde30f388b7fbb232d7
/src/test/java/com/example/cry/DemoApplicationTests.java
28f638e868663813ce7ff1b4ec258140a0d03dc6
[]
no_license
QuisEgoSum/cry
acc102e91b21f8c81eaae367f08b5b4d6223db3e
282763d2c70130b2166c32383eca79887bb8322d
refs/heads/main
2023-03-25T16:41:12.104622
2021-03-22T09:55:29
2021-03-22T09:55:29
346,699,319
0
0
null
null
null
null
UTF-8
Java
false
false
205
java
package com.example.cry; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest class DemoApplicationTests { @Test void contextLoads() { } }
[ "main.personal@mail.ru" ]
main.personal@mail.ru
5ea66308d6265955867adb99abcb643ac545af1a
d1e97e51920dc240e1b592c32c00eb18d324605b
/ExpressionTree/src/Main.java
23ceb5fec8342c12fed864d158fc5ab6f738b719
[]
no_license
IrNesterova/KHUSNUTDINOV_11_702
5951fe26fe5fbf0d912e2734f551badfb4093937
8dd21962754b1e660d11f5e160343167ce1c7e69
refs/heads/master
2020-04-08T13:13:40.309181
2018-11-27T07:42:08
2018-11-27T07:42:08
null
0
0
null
null
null
null
UTF-8
Java
false
false
848
java
public class Main { public static void main(String[] args) { //String input = "(((2+4)*7)+3*4-2))"; String input = "2 + 2 * 4"; /*String[] inputChr = input.split(""); ExpressionTree tree = new ExpressionTree(); for (String symbol : inputChr){ if (symbol.equals("(") ){ tree.createLeft(); }else if (Character.isDigit(symbol.charAt(0))){ tree.insertDigit(symbol); }else if (symbol.equals("+") || symbol.equals("-") || symbol.equals("*") || symbol.equals("/")){ tree.insertOperation(symbol); }else if (symbol.equals(")")){ tree.jumpToParent(); } }*/ UpgradedExpressionTree tree = new UpgradedExpressionTree(input); System.out.println(tree); } }
[ "khusnut99@gmail.com" ]
khusnut99@gmail.com
b5b7fc7f04f6455fbf3f53cba8a0365dbe7d0f88
8a61ff7ae831db3f7f1fde4bf5e0d13afe986621
/Test2/NextNumber.java
0396733c75d58d50563fa5a5277728c38a782b76
[]
no_license
PranavKapoor28/CodingNinjas_2020-DataStructures-In-JAVA
be89a76194b4fc642981bc4553c26b255ac85610
0b94fb2e11946efd6f8611dc8ab8941332182357
refs/heads/master
2022-10-27T16:03:28.126134
2020-06-17T08:57:57
2020-06-17T08:57:57
265,260,389
2
1
null
null
null
null
UTF-8
Java
false
false
1,630
java
/*************** * Following is the Node class already written class LinkedListNode<T> { T data; LinkedListNode<T> next; public LinkedListNode(T data) { this.data = data; } } ***************/ public class Solution { public static LinkedListNode<Integer> newNode(int data){ LinkedListNode<Integer> new_node = new LinkedListNode<Integer>(data); new_node.data = data; new_node.next = null; return new_node; } public static LinkedListNode<Integer> reverse(LinkedListNode<Integer> head){ LinkedListNode<Integer> prev = null; LinkedListNode<Integer> current = head; LinkedListNode<Integer> next = null; while (current != null) { next = current.next; current.next = prev; prev = current; current = next; } return prev; } public static LinkedListNode<Integer> addOne(LinkedListNode<Integer> head){ LinkedListNode<Integer> res = head; LinkedListNode<Integer> temp = null; LinkedListNode<Integer> prev = null; int sum, carry = 1; while (head != null) { sum = carry+head.data; carry = (sum >= 10)? 1 : 0; sum = sum % 10; head.data = sum; temp = head; head = head.next; } if (carry > 0) { temp.next = newNode(carry); } return res; } public static LinkedListNode<Integer> nextLargeNumber(LinkedListNode<Integer> head) { if (head == null){ return null; } head = reverse(head); head = addOne(head); return reverse(head); } }
[ "noreply@github.com" ]
noreply@github.com
6a0ddb0ca90df027943607a94c49fdd92f4b3263
d03c0dd0e7402d3c80eff1558843886712748e73
/src/main/java/org/example/config/AppConfig.java
bf5e993cccfccf48223c130179a797f1eb6294aa
[]
no_license
CatalinZamfir/online_shop
9fb300013e4a301d6b1aff911b35aa8227f1fe73
dfb1b9858fde0a2d3d312a37b27ffd855b84c45d
refs/heads/master
2023-01-23T19:57:10.623119
2020-12-03T18:24:34
2020-12-03T18:24:34
314,350,235
0
0
null
null
null
null
UTF-8
Java
false
false
638
java
package org.example.config; import org.example.beans.MyClass3; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Import; @SpringBootApplication @ComponentScan("org.example") @Import({DatabaseConfig.class, WebConfig.class}) public class AppConfig { @Bean("dbConnection1") public MyClass3 createMyClass3() { return new MyClass3(); } @Bean("dbConnection2") public MyClass3 createMyClass4() { return new MyClass3(); } }
[ "catalin_provideo@yahoo.com" ]
catalin_provideo@yahoo.com
6cd426df82bace5e8ac16bfec2af4dbbc567ed71
8f25a7598b8b0a03c69c8cf823ca38a1c853f5f8
/Circular Linked List/Circular Linked List Deletion.java
07e608441bfc6972a5b3b4753c8f8f73d27c29ce
[]
no_license
Kritika1300/dsa
ff5610dd4571600747a9b6f8e734db423d2245db
50756da908a509b636142fcf71dbd6b51efcfb3b
refs/heads/main
2023-03-30T20:07:26.237671
2021-04-01T18:31:31
2021-04-01T18:31:31
334,443,292
0
0
null
null
null
null
UTF-8
Java
false
false
2,043
java
import java.util.*; class Node{ int data; Node next; } class CircularLinkedList{ Node last; private void insertInEmpty(int data){ Node newNode = new Node(); newNode.data = data; if(last == null){ last = newNode; newNode.next = newNode; } } public void insertAtStart(int data){ Node newNode = new Node(); newNode.data = data; if(last == null){ insertInEmpty(data); } else{ newNode.next = last.next; last.next = newNode; } } public void insertAtLast(int data){ Node newNode = new Node(); newNode.data = data; if(last == null){ insertInEmpty(data); } else{ newNode.next = last.next; last.next = newNode; last = newNode; } } public void show(){ Node n =last; boolean start = true; while(n != last || start){ start = false; n = n.next; System.out.println(n.data); } } public void deleteAtStart(){ if(last == null){ return; } else if(last.next == last){ last = null; } else{ last.next = last.next.next; } } public void deleteAtLast(){ if(last == null){ return; } else if(last.next == last){ last = null; } else{ Node n = last; while(n.next != last){ n = n.next; } n.next = last.next; last = n; } } + } public class Main{ public static void main(String[] args){ CircularLinkedList list = new CircularLinkedList(); list.insertAtStart(1); list.insertAtLast(2); list.insertAtLast(3); list.insertAtLast(4); list.deleteNodeWithVal(5); list.show(); } }
[ "kaur.kritika.kritika@gmail.com" ]
kaur.kritika.kritika@gmail.com
42f881a5dd4f471bb4bd871382f96dbc8202f1b5
45cf27c9c8f7857e7d7f66fda95dc77fe7595c0c
/app/src/main/java/com/htc/ciberrateestimator/model/response/VersionResponse.java
4273264de20135957deffe6d21e8a4b198e67f5c
[]
no_license
MohanNarasimman/Ciber_Rate_Estimator
431a696720eaf22edc78ec978c5975bb02426fc4
2a6af2603ecc80f0adb9549a33559264d2520ca1
refs/heads/master
2021-02-09T12:54:01.724060
2020-03-05T09:09:35
2020-03-05T09:09:35
244,285,024
0
0
null
null
null
null
UTF-8
Java
false
false
1,407
java
package com.htc.ciberrateestimator.model.response; import java.util.ArrayList; import java.util.List; public class VersionResponse { private List<Data> data = new ArrayList<>(); public List<Data> getData() { return data; } public void setData(List<Data> value) { this.data = value; } @Override public String toString() { return "VersionResponse{" + "data=" + data + '}'; } public VersionResponse(List<Data> data) { this.data = data; } public class Data { private long versionID; private String lastUpdatedDateTime; public long getVersionID() { return versionID; } public void setVersionID(long value) { this.versionID = value; } public String getLastUpdatedDateTime() { return lastUpdatedDateTime; } public void setLastUpdatedDateTime(String value) { this.lastUpdatedDateTime = value; } public Data(String lastUpdatedDateTime) { this.lastUpdatedDateTime = lastUpdatedDateTime; } @Override public String toString() { return "Data{" + "versionID=" + versionID + ", lastUpdatedDateTime='" + lastUpdatedDateTime + '\'' + '}'; } } }
[ "nmohan1995@gmail.com" ]
nmohan1995@gmail.com
e7b8e2e5e3890af938a2a56ce6e08baac5dcbee1
66e5a6ea7c98ff503b672418016d113a456a4243
/src/main/java/com/tsibulko/finaltask/filter/AuthenticationFilter.java
b07d08ac9feff2cb6812ceb32c0e8f35e5da5476
[]
no_license
MaximTsubylko/Maxim_Tsibulko_Barmen
5dd31de32b5ddfc3f05c1918416e8072e5c74395
a9dcbd1a385b28dd286e9b1c37df55df58647ce6
refs/heads/master
2020-04-23T06:53:48.006036
2019-03-27T07:13:53
2019-03-27T07:13:53
170,982,014
0
0
null
null
null
null
UTF-8
Java
false
false
2,199
java
package com.tsibulko.finaltask.filter; import com.tsibulko.finaltask.bean.Customer; import com.tsibulko.finaltask.bean.UserRole; import com.tsibulko.finaltask.command.AccessLevel; import com.tsibulko.finaltask.command.CommandEnum; import com.tsibulko.finaltask.command.Page; import com.tsibulko.finaltask.util.AppConstant; import javax.servlet.*; import javax.servlet.annotation.WebFilter; import javax.servlet.http.HttpServletRequest; import java.io.IOException; import java.util.Arrays; @WebFilter(filterName = "AuthenticationFilter") public class AuthenticationFilter implements Filter { @Override public void init(FilterConfig filterConfig) throws ServletException { } @Override public void destroy() { } @Override public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { HttpServletRequest httpServletRequest = (HttpServletRequest) request; Customer customer = (Customer) httpServletRequest.getSession().getAttribute(AppConstant.SESSION_ATTRIBUTE); String command = request.getParameter(AppConstant.COMMAND_PARAMETER); if (command == null && customer != null) { request.getRequestDispatcher(CommandEnum.MAIN.useCommand()).forward(request, response); } else if (command == null) { request.getRequestDispatcher(Page.LOG_IN.getRout()).forward(request, response); } else if (customer == null && Arrays.stream(CommandEnum.getByName(command). getLevels()). noneMatch((ob) -> ob == AccessLevel.VISITOR || ob == AccessLevel.ALL)) { request.getRequestDispatcher(Page.LOG_IN.getRout()).forward(request, response); } else if (customer != null && Arrays.stream (CommandEnum.getByName(command).getLevels()). noneMatch((ob) -> UserRole.getRoleById(customer.getRole_id()).toString().equals(ob.toString()) || ob == AccessLevel.ALL)) { request.getRequestDispatcher(CommandEnum.MAIN.useCommand()).forward(request, response); } else { chain.doFilter(request, response); } } }
[ "maxim.tsibulko@gmail.com" ]
maxim.tsibulko@gmail.com
7c9dfc15128dfbc9600a7f687daef4b2f8f99551
02a1c39f38a7878314ff35a6abd0f69dcc891506
/SignupEventOrgActivity.java
bcdfab26f88649a461dcf12fd49eb92d16a15b13
[]
no_license
heyimsanjeev/basic_setup
7f530e7c654f3d925433908b4cf15155a3d339e3
bc3fdde987fd948cc0fac7a24eb59c648bfeff04
refs/heads/master
2020-03-28T06:39:22.994681
2018-11-26T05:57:35
2018-11-26T05:57:35
147,850,566
0
0
null
null
null
null
UTF-8
Java
false
false
20,068
java
package com.app.motiv.ui.authenticate; import android.Manifest; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.database.Cursor; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Matrix; import android.media.ExifInterface; import android.net.Uri; import android.os.Bundle; import android.os.Environment; import android.os.StrictMode; import android.provider.MediaStore; import android.support.annotation.NonNull; import android.support.v7.app.AlertDialog; import android.view.View; import android.widget.CheckBox; import android.widget.EditText; import android.widget.ImageView; import android.widget.RelativeLayout; import android.widget.TextView; import android.widget.Toast; import com.app.motiv.R; import com.app.motiv.data.model.SignupModel; import com.app.motiv.data.shared.DataResponse; import com.app.motiv.ui.authenticate.base.BaseAuthenticateActivity; import com.app.motiv.ui.authenticate.contract.EmailExistContract; import com.app.motiv.ui.authenticate.contract.SignupContract; import com.app.motiv.ui.authenticate.contract.SocialSigninContract; import com.app.motiv.ui.authenticate.presentorImpl.EmailExistPresentorImpl; import com.app.motiv.ui.authenticate.presentorImpl.SignupPresentorImpl; import com.app.motiv.ui.authenticate.presentorImpl.SocialSigninPresentorImpl; import com.app.motiv.ui.main.normalUser.publicInterest.PublicActivity; import com.app.motiv.utils.CommonMethods; import com.app.motiv.utils.CompressImage; import com.app.motiv.utils.Constants; import com.app.motiv.utils.ToastUtils; import com.app.motiv.utils.Validators; import com.app.motiv.utils.helpers.SharedPreferenceHelper; import com.squareup.picasso.Picasso; import java.io.File; import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnClick; import de.hdodenhof.circleimageview.CircleImageView; import permissions.dispatcher.NeedsPermission; import permissions.dispatcher.OnNeverAskAgain; import permissions.dispatcher.OnPermissionDenied; import permissions.dispatcher.OnShowRationale; import permissions.dispatcher.PermissionRequest; import permissions.dispatcher.RuntimePermissions; @RuntimePermissions public class SignupEventOrgActivity extends BaseAuthenticateActivity implements SignupContract.View, SocialSigninContract.View, EmailExistContract.View { ButterKnife butterKnife; @BindView(R.id.iv_back) public ImageView ivBack; @BindView(R.id.tv_header) public TextView tvHeader; @BindView(R.id.iv_user) public CircleImageView ivUser; @BindView(R.id.iv_select_image) public ImageView ivSelectImage; @BindView(R.id.et_name) public EditText etName; @BindView(R.id.et_email) public EditText etEmail; @BindView(R.id.et_pwd) public EditText etPwd; @BindView(R.id.et_confirm_pwd) public EditText etConfirmPwd; @BindView(R.id.et_phone_num) public EditText etPhoneNum; @BindView(R.id.et_age) public EditText etAGe; @BindView(R.id.rl_referral_code) public RelativeLayout rlReferralCode; @BindView(R.id.et_referal_code) public EditText etReferralCode; @BindView(R.id.rl_confirm_pwd) public RelativeLayout rlConfirmPwd; @BindView(R.id.rl_pwd) public RelativeLayout rlPwd; @BindView(R.id.et_user_name) public EditText etUserName; @BindView(R.id.chk_touch_id) public CheckBox chkEnableTouchId; Validators validators; String signupType = ""; String name = "", userName = "", email = "", password = "", confirmPassword = "", phoneNumber = "", age = "", referralCode = ""; protected static final int GALLERY_PICTURE = 1; protected static final int CAMERA_REQUEST = 0; Bitmap bitmap; String selectedImagePath; String selectedImageUri = ""; CompressImage compressImage; EmailExistContract.Presentor presentorEmailExist; boolean isEmailExist; private SignupContract.Presentor presentor; private SocialSigninContract.Presentor presentorSocialSignIn; SignupModel signupModel, modelForSignup; String type = ""; public static void start(Context context, String signupType, String type, SignupModel signupModel) { Intent intent = new Intent(context, SignupEventOrgActivity.class); intent.putExtra(Constants.SIGNUP_TYPE, signupType); intent.putExtra(Constants.TYPE, type); intent.putExtra(Constants.SIGNUP_MODEL, signupModel); context.startActivity(intent); } @Override protected int getContentId() { return R.layout.activity_signup_event_org; } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); butterKnife.bind(this); SharedPreferenceHelper.getInstance().savePref(Constants.TOUCH_ID, "disabled"); // this is for nougat file uri esposed clipdata exception StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder(); StrictMode.setVmPolicy(builder.build()); initViews(); initToolbar(); getSignupType(); if (signupType.equalsIgnoreCase(Constants.NORMAL_USER)) { rlReferralCode.setVisibility(View.VISIBLE); } else { rlReferralCode.setVisibility(View.GONE); } } @OnClick(R.id.chk_touch_id) public void touchId() { if (chkEnableTouchId.isChecked()) { SharedPreferenceHelper.getInstance().savePref(Constants.TOUCH_ID, "enabled"); } else { SharedPreferenceHelper.getInstance().savePref(Constants.TOUCH_ID, "disabled"); } // setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() // { // @Override // public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) // { // if ( isChecked ) // { // // perform logic // // } // else{ // // } // // } // }); } private void initViews() { rlPwd.setVisibility(View.VISIBLE); rlConfirmPwd.setVisibility(View.VISIBLE); // this is for nougat file uri esposed clipdata exception StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder(); StrictMode.setVmPolicy(builder.build()); ivBack.setVisibility(View.VISIBLE); tvHeader.setText(getString(R.string.signup)); Intent intent = getIntent(); type = intent.getStringExtra(Constants.TYPE); if (type.equalsIgnoreCase(Constants.SOCIAL)) { rlPwd.setVisibility(View.GONE); rlConfirmPwd.setVisibility(View.GONE); modelForSignup = (SignupModel) intent.getSerializableExtra(Constants.SIGNUP_MODEL); if (!modelForSignup.getName().equals("") && modelForSignup.getName() != null) { etName.setText(modelForSignup.getName()); } if (!modelForSignup.getEmail().equals("") && modelForSignup.getEmail() != null) { etEmail.setText(modelForSignup.getEmail()); } if (!modelForSignup.getImagePath().equals("") && modelForSignup.getImagePath() != null) { SharedPreferenceHelper.getInstance().saveImagePath(modelForSignup.getImagePath()); Picasso.with(this).load(modelForSignup.getImagePath()) .error(R.mipmap.ic_user) .into(ivUser); } // etEmail.setEnabled(false); // etEmail.setFocusable(false); } } private void initToolbar() { validators = new Validators(this); compressImage = new CompressImage(); presentorEmailExist = new EmailExistPresentorImpl(this); presentor = new SignupPresentorImpl(this); presentorSocialSignIn = new SocialSigninPresentorImpl(this); } private void getSignupType() { Intent intent = getIntent(); signupType = intent.getStringExtra(Constants.SIGNUP_TYPE); } @OnClick(R.id.iv_back) public void onClickBack() { onBackPressed(); } @OnClick(R.id.iv_select_image) public void onClickSelectImage() { SignupEventOrgActivityPermissionsDispatcher.selectImageWithPermissionCheck(this); } @OnClick(R.id.rl_sign_up) public void onClickSignup() { getInputData(); if (type.equals(Constants.SOCIAL)) { password = "12345678"; confirmPassword = "12345678"; } if (validators.isValidSignupData(name, userName, email, password, confirmPassword, phoneNumber, age)) { showProgress(); presentorEmailExist.checkEmailExist(email); } } // getting input data private void getInputData() { name = etName.getText().toString().trim(); userName = etUserName.getText().toString().trim(); email = etEmail.getText().toString().trim(); password = etPwd.getText().toString().trim(); confirmPassword = etConfirmPwd.getText().toString().trim(); phoneNumber = etPhoneNum.getText().toString().trim(); age = etAGe.getText().toString().trim(); if (signupType.equalsIgnoreCase(Constants.NORMAL_USER)) { referralCode = etReferralCode.getText().toString().trim(); } } // for selecting image form gallery and camera @NeedsPermission({Manifest.permission.CAMERA, Manifest.permission.WRITE_EXTERNAL_STORAGE}) public void selectImage() { final CharSequence[] items = {getString(R.string.take_photo), getString(R.string.choose_from_library), getString(R.string.cancel)}; AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle(getString(R.string.add_photo)); builder.setCancelable(false); builder.setItems(items, new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int item) { if (items[item].equals(getString(R.string.take_photo))) { Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); File f = new File(android.os.Environment.getExternalStorageDirectory(), getString(R.string.temp_jpg)); intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(f)); startActivityForResult(intent, CAMERA_REQUEST); } else if (items[item].equals(getString(R.string.choose_from_library))) { Intent pictureActionIntent = null; pictureActionIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(pictureActionIntent, GALLERY_PICTURE); } else if (items[item].equals(getString(R.string.cancel))) { dialog.dismiss(); } } }); builder.show(); } @OnShowRationale({Manifest.permission.CAMERA, Manifest.permission.WRITE_EXTERNAL_STORAGE}) void showRationaleForCamera(final PermissionRequest request) { CommonMethods.showRotaionalPermissionDialog(this, request); } @OnPermissionDenied({Manifest.permission.CAMERA, Manifest.permission.WRITE_EXTERNAL_STORAGE}) void showDeniedForCamera() { ToastUtils.longToast(R.string.permission_denied); } @OnNeverAskAgain({Manifest.permission.CAMERA, Manifest.permission.WRITE_EXTERNAL_STORAGE}) void showNeverAskForCamera() { CommonMethods.showSettingActivityPermissionDialog(this); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); bitmap = null; selectedImagePath = null; if (resultCode == RESULT_OK && requestCode == CAMERA_REQUEST) { File file = new File(Environment.getExternalStorageDirectory().toString()); for (File temp : file.listFiles()) { if (temp.getName().equals(getString(R.string.temp_jpg))) { file = temp; break; } } if (!file.exists()) { Toast.makeText(this, getString(R.string.error_while_capturing_image), Toast.LENGTH_LONG).show(); return; } try { selectedImagePath = file.getAbsolutePath(); if (selectedImagePath != null) { File file1 = new File(selectedImagePath); selectedImageUri = Uri.fromFile(file1).toString(); compressImage.compressYourImage(selectedImageUri, this); } bitmap = BitmapFactory.decodeFile(file.getAbsolutePath()); bitmap = Bitmap.createScaledBitmap(bitmap, 400, 400, true); int rotate = 0; try { ExifInterface exif = new ExifInterface(file.getAbsolutePath()); int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL); switch (orientation) { case ExifInterface.ORIENTATION_ROTATE_270: rotate = 270; break; case ExifInterface.ORIENTATION_ROTATE_180: rotate = 180; break; case ExifInterface.ORIENTATION_ROTATE_90: rotate = 90; break; } } catch (Exception e) { e.printStackTrace(); } Matrix matrix = new Matrix(); matrix.postRotate(rotate); bitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true); ivUser.setImageBitmap(bitmap); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } } else if (resultCode == RESULT_OK && requestCode == GALLERY_PICTURE) { if (data != null) { Uri selectedImage = data.getData(); String[] filePath = {MediaStore.Images.Media.DATA}; Cursor c = this.getContentResolver().query(selectedImage, filePath, null, null, null); c.moveToFirst(); int columnIndex = c.getColumnIndex(filePath[0]); selectedImagePath = c.getString(columnIndex); if (selectedImagePath != null) { File file2 = new File(selectedImagePath); selectedImageUri = Uri.fromFile(file2).toString(); compressImage.compressYourImage(selectedImageUri, this); } c.close(); bitmap = BitmapFactory.decodeFile(selectedImagePath); ivUser.setImageBitmap(bitmap); } else { Toast.makeText(this, getString(R.string.cancelled), Toast.LENGTH_SHORT).show(); } } } @Override public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); SignupEventOrgActivityPermissionsDispatcher.onRequestPermissionsResult(this, requestCode, grantResults); } @Override public void onSuccessEventOrganizer(DataResponse dataResponse) { hideProgress(); if (isFinishing()) { return; } ToastUtils.longToast(getString(R.string.signup_successfully)); SharedPreferenceHelper.getInstance().saveImagePath(""); LoginActivity.start(this); } @Override public void goNext() { hideProgress(); if (isFinishing()) { return; } if (SharedPreferenceHelper.getInstance().getIsSocial()) { SharedPreferenceHelper.getInstance().saveIsSocial(false); ToastUtils.shortToast(getString(R.string.sign_up_successfully)); SharedPreferenceHelper.getInstance().saveImagePath(""); LoginActivity.start(this); } else { ToastUtils.longToast(getString(R.string.signup_successfully)); SharedPreferenceHelper.getInstance().saveImagePath(""); LoginActivity.start(this); } } @Override public void onFailure(String message) { hideProgress(); if (isFinishing()) { return; } ToastUtils.longToast(message); } @Override public void onSuccessEmailExist(DataResponse response) { hideProgress(); if (signupType.equalsIgnoreCase(Constants.NORMAL_USER)) { getInputData(); if (type.equals(Constants.SOCIAL)) { password = "12345678"; confirmPassword = "12345678"; } if (validators.isValidSignupData(name, userName, email, password, confirmPassword, phoneNumber, age)) { signupModel = new SignupModel(SharedPreferenceHelper.getInstance().getImagePath(), name, userName, email, password, phoneNumber, age); signupModel.setReferralCode(referralCode); if (type.equals(Constants.SOCIAL)) { signupModel.setSocialId(modelForSignup.getSocialId()); signupModel.setSocialSignupType(modelForSignup.getSocialSignupType()); signupModel.setUserType(modelForSignup.getUserType()); signupModel.setSignupType(modelForSignup.getSignupType()); } PublicActivity.start(this, Constants.NORMAL_USER, type, signupModel); } } else if (signupType.equalsIgnoreCase(Constants.EVENT_ORGANIZER)) { getInputData(); if (type.equals(Constants.SOCIAL)) { password = "12345678"; confirmPassword = "12345678"; } if (validators.isValidSignupData(name, userName, email, password, confirmPassword, phoneNumber, age)) { showProgress(); if (type.equalsIgnoreCase(Constants.SOCIAL)) { signupModel = new SignupModel(SharedPreferenceHelper.getInstance().getImagePath(), name, userName, email, password, phoneNumber, age); presentorSocialSignIn.facebookLoginEventOrganizer(signupModel.getImagePath(), signupModel.getName(), signupModel.getUserName(), signupModel.getEmail(), signupModel.getPassword(), signupModel.getPhoneNum(), signupModel.getAge(), modelForSignup.getSignupType(), modelForSignup.getUserType(), modelForSignup.getSocialSignupType(), modelForSignup.getSocialId()); } else if (type.equalsIgnoreCase(Constants.SIMPLE)) { presentor.signupEventOrganizer(SharedPreferenceHelper.getInstance().getImagePath(), name, userName, email, password, phoneNumber, age); } } } } @Override public void onFailreEmailExist(String message) { hideProgress(); ToastUtils.longToast(message); } }
[ "noreply@github.com" ]
noreply@github.com
4849d03067f59c960e1d51a9791fccf27ef16675
ce09ad474948d43729a23f4d1b7cb0310b589450
/app/src/main/java/com/example/ans_likelion/MainActivity.java
e508d611387cb96e37b6a87abbe5031b5ce51bc2
[]
no_license
Parksanghee22/ANS_LikeLion_SH
add03d50d281e50fc5d98653ab04b871957f5f97
f97d78cb00d8887c7bf38055ab33ea59fb8f1622
refs/heads/master
2022-11-18T06:01:34.334593
2020-07-17T09:09:28
2020-07-17T09:09:28
280,379,295
0
0
null
null
null
null
UTF-8
Java
false
false
767
java
package com.example.ans_likelion; import androidx.annotation.RequiresApi; import androidx.appcompat.app.AppCompatActivity; import android.content.Context; import android.os.Build; import android.os.Bundle; import android.os.VibrationEffect; import android.os.Vibrator; import android.view.View; public class MainActivity extends AppCompatActivity { Vibrator vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); @RequiresApi(api = Build.VERSION_CODES.O) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Vibrator vibrator = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); vibrator.vibrate(3000); } }
[ "parksh990521@gmail.com" ]
parksh990521@gmail.com
645221951e26d301ffe60766daaa505d73bc55f3
7c264e6f811abd3497ce70aa9a2636f3f220ec75
/Task2_Chopik/src/by/tc/speq/view/view.java
2778b98efcff504c00b271cae09b046e6c071172
[]
no_license
Kriket/Java11_16_Chopik
43acb20c6a941a87b437706672f8327c0e16bc0c
2985c82bb06c58254aea1e6aecef5ad84bcae8d0
refs/heads/master
2021-01-11T21:05:08.667108
2017-06-09T08:31:02
2017-06-09T08:31:02
79,242,159
0
2
null
2017-01-28T15:11:49
2017-01-17T15:37:00
Java
UTF-8
Java
false
false
845
java
package by.tc.speq.view; import by.tc.speq.controller.Controller; /** * Created by User on 17.01.2017. */ public class view { public static void main(String[] args) { Controller controller = new Controller(); System.out.println(controller.executeTask("STOCK_INFO")); System.out.println(controller.executeTask("RENT_INFO")); System.out.println(controller.executeTask("RENT Boots SNOWBOARDING 30")); System.out.println(controller.executeTask("RENT_INFO")); System.out.println(controller.executeTask("REGISTRATION Kri kriket")); System.out.println(controller.executeTask("SIGN_IN Kri kriket")); System.out.println(controller.executeTask("IS_CONSIST Boots SNOWBOARDING 30")); // Wrong_REQUEST System.out.println(controller.executeTask("RENT_INFOw")); } }
[ "Kriket267@gmail.com" ]
Kriket267@gmail.com
77bd0f0d26511228d523b61bd45c244d8fce8b1f
fa29414ee857e1624887dd603e340ac37001438e
/app/src/main/java/com/example/puza/mobileui/fragments/ShopItemsFragment.java
74ca5ee0adf9ac4c60033d23c846a87b9da3655a
[]
no_license
puja-shrestha/Biztray
c4f4bcf9dd63b93f4ba3fd2ecd704c6b251b8d17
bfcc18eca9dd1cefad1fadfe78cdca83b941a540
refs/heads/master
2020-03-18T04:28:23.582824
2018-06-07T07:12:00
2018-06-07T07:12:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,821
java
package com.example.puza.mobileui.fragments; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.RatingBar; import android.widget.Spinner; import android.widget.TextView; import android.widget.Toast; import com.example.puza.mobileui.R; /** * A simple {@link Fragment} subclass. */ public class ShopItemsFragment extends Fragment{ RatingBar ratingBar; TextView value; public ShopItemsFragment() { // Required empty public constructor } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.shop_item_layout, container, false); Spinner spinner = (Spinner) view.findViewById(R.id.spinner); //container that hold the values and integrate them with the spinner ArrayAdapter<String> myAdapter = new ArrayAdapter<String>(getContext(), android.R.layout.simple_list_item_1, getResources().getStringArray(R.array.unit)); myAdapter.setDropDownViewResource(R.layout.support_simple_spinner_dropdown_item); spinner.setAdapter(myAdapter); //rating Bar ratingBar = (RatingBar) view.findViewById(R.id.ratingBar); value = (TextView) view.findViewById(R.id.value); ratingBar.setOnRatingBarChangeListener(new RatingBar.OnRatingBarChangeListener() { @Override public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) { value.setText("value is"+ rating); } }); return view; } }
[ "shresthaa.puza@gmail.com" ]
shresthaa.puza@gmail.com
9c4a6ebb72c4828322e4a96984cdb1ad3e46d3f8
7c293f08523936f468027c64bd514f9a10d79f01
/src/test/java/browser/Firefox.java
5f68260ad4c3a2213ba09a4bf472ed7de5c94497
[]
no_license
giovi-hub/automation-VulnerabilityOwas
e96606bb1567c88bdcdd189688d5fa1faf43edb1
c33c183f803602bbe983124d4c9503b405945e01
refs/heads/main
2022-12-25T13:41:43.078298
2020-10-10T19:59:27
2020-10-10T19:59:27
302,977,836
0
0
null
null
null
null
UTF-8
Java
false
false
175
java
package browser; import org.openqa.selenium.WebDriver; public class Firefox implements IBrowser{ @Override public WebDriver create() { return null; } }
[ "Password1!github" ]
Password1!github
5252ba4fedf78a17f1e0b267dabba9bab902e1f5
57d91f7fd71ac0e9990f8fa59b4560f47095aff8
/src/SPOK/CEK_SPOK.java
01d41a55d781419c7212b0fe8657091593a1ba0a
[]
no_license
PutriAW/Simple-SPOK-Parser
59271514c8f53d67aa497377823dfaed602b2e28
32be6c477b5685ea8a4c31bb98b089ae00b78840
refs/heads/master
2021-04-20T05:29:46.262916
2020-03-24T09:00:24
2020-03-24T09:00:24
249,658,655
0
0
null
null
null
null
UTF-8
Java
false
false
3,771
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 SPOK; import java.util.ArrayList; import java.util.List; import java.util.Scanner; /** * * @author PUTRI */ public class CEK_SPOK { private String[] data = {"saya","kamu","mereka","kita","dia","pergi","pulang","makan","minum","membaca", "apel","jus","bakso","novel","cerita","kemarin","sekarang","nanti","besok","lusa"}; private List<Object> stack = new ArrayList<>(); private int idx = -1; public char cekKata(String w){ int i = 0,j,k =0, count= 0; char hasil = 0; while (count != 1 && i < data.length){ if (data[i].length() == w.length()){ j = 0; while(j < data[i].length()){ if(data[i].charAt(j) == w.charAt(j)){ k++; } j++; } } if (k == w.length()){ count = 1; } k = 0; i++; } i = i - 1; if (count == 1){ if (i > 14 && i <=19){ hasil = 'K'; }else if (i > 9 && i<=14){ hasil = 'O'; }else if(i> 4 && i <= 9){ hasil = 'P'; }else if(i >= 0 && i <= 4){ hasil = 'S'; } }else{ hasil = 'E'; } return hasil; } public void push(Object a){ stack.add(a); idx++; } public Object pop(){ Object hs = stack.remove(idx); idx--; return hs; } public void cekValidasi(char[] rs){ int i = 0; String hasil; push('#'); push('B'); if (rs[i] == 'S'){ pop(); push('S'); i++; if (rs[i] == 'P'){ pop(); push('P'); i++; hasil = "VALID"; if(rs[i] == 'O'){ pop(); push('O'); hasil = "VALID"; i++; if (rs[i] == 'K'){ pop(); push('K'); hasil = "VALID"; } }else if(rs[i] == 'K'){ pop(); push('K'); hasil = "VALID"; }else{ hasil = "INVALID"; } if (hasil == "VALID"){ pop(); System.out.println(hasil); }else{ ///System.out.println("INVALID"); System.out.println(hasil); } }else{ System.out.println("INVALID"); } }else{ System.out.println("INVALID"); } } public static void main(String[] args) { String[] kata = null; char result[] = new char[4]; Scanner sc = new Scanner(System.in); String kalimat = null; System.out.print("Masukkan Kata :"); kalimat = sc.nextLine(); kata = kalimat.split("\\s"); CEK_SPOK ck = new CEK_SPOK(); for (int i = 0; i < kata.length; i++) { result[i] = ck.cekKata(kata[i]); System.out.print(ck.cekKata(kata[i])+" "); } System.out.println(""); ck.cekValidasi(result); } }
[ "noreply@github.com" ]
noreply@github.com
1823a5489464e271bac4182b2b3852aeb8fa1dcf
11007b48b9a93aa21f146f66e867e1d76da8e934
/spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/Not.java
953cd4e792d7034671d597c0c2dafebecfe42f8d
[ "Apache-2.0" ]
permissive
lovelace-mmqs2020/spring-data-jdbc-mmqs
02613c162f330dca456881900d25747d6494831f
b66d64ce9d3d1869dee65b0e36bfb52676faeafd
refs/heads/master
2023-02-18T05:36:33.553705
2021-01-21T23:56:15
2021-01-21T23:56:15
323,690,674
0
0
null
null
null
null
UTF-8
Java
false
false
1,529
java
/* * Copyright 2019-2020 the original author or authors. * * 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.data.relational.core.sql; /** * @author Jens Schauder * @since 1.1 */ public class Not extends AbstractSegment implements Condition { private final Condition condition; Not(Condition condition) { super(condition); this.condition = condition; } /* * (non-Javadoc) * @see org.springframework.data.relational.core.sql.Condition#not() */ @Override public Condition not() { return condition; } /* * (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { return "NOT " + condition.toString(); } @Override public boolean equals(Object obj) { if (obj == null) return false; if (this.getClass() != obj.getClass()) return false; Not other = (Not) obj; return condition.equals(other.condition); } @Override public int hashCode() { return condition.hashCode() * condition.hashCode(); } }
[ "alexmik95@gmail.com" ]
alexmik95@gmail.com
c330932a58b92720fb124f7255a00016c71769bc
cce6ec533056516cc14e9d486d4bd663d2269a25
/src/test/exam/SuyeonKIM/boardQuery.java
daa184ba6e2f217eb3a485740fbb09586ee17ba1
[]
no_license
BruceYi119/java
bd4b75797dd865e855721312c609218d941a5150
3b33a1d745144c331d2e902c1bf4e63317132b92
refs/heads/master
2023-03-20T01:23:32.297062
2021-03-10T02:43:49
2021-03-10T02:43:49
346,209,866
0
0
null
null
null
null
UTF-8
Java
false
false
219
java
create table board( no number(4) not null, writer varchar2(100) not null, title varchar2(300) not null, content varchar2(3000) not null, writeDate Date default sysdate, hit number(10) default 0); select * from board;
[ "pirates119@gmail.com" ]
pirates119@gmail.com
c56786e2a8236c432e1c7f451ed57b42c362be4f
6ac8cd98e28451a6e61c3173117ef0e1584e7d2a
/capitulo17/src/capitulo17/ThreadLabNew.java
06b0aa8099eceac91a93d2619b981d50ef6a039d
[]
no_license
edsonrjunior/ImpactaJavaProgrammer
d5da034b64d1e1447bc2f9fd21333ef670d9f38d
6d66aa3a6b85af7801abf0a1a233c7d457f81ea1
refs/heads/master
2020-05-18T15:22:53.743578
2019-08-19T01:35:16
2019-08-19T01:35:16
184,496,462
0
0
null
null
null
null
UTF-8
Java
false
false
507
java
package capitulo17; public class ThreadLabNew extends Thread { public ThreadLabNew(String name) { super(name); } public void run() { for (int i = 0; i < 100000; i++) { metodoAuxiliar(); } } private synchronized void metodoAuxiliar() { System.out.println(Thread.currentThread().getName()); // try { // Thread.sleep(500); // } catch (InterruptedException e) { // e.printStackTrace(); // } } }
[ "edsonkjr@gmail.com" ]
edsonkjr@gmail.com
e8809188014ac788af97522e697b44e7f08d3133
2eda7e705de6897baa2078b8313d783c32c37a3b
/CampChallenge_java/CampChallenge_java/011.メソッド/Java11-4.java
9fbe87ad868707224ec301f9fc67bdb6694b16d5
[]
no_license
maka343noshi/GEEKJOB_Challenge
0c7ddb7a6eb9fc7a9d76ac597ffc506495dfb9c3
5c1771553d6978518bc062800e293b83e5923251
refs/heads/master
2021-07-16T14:53:58.716021
2018-09-01T12:10:09
2018-09-01T12:10:09
125,009,719
0
0
null
null
null
null
UTF-8
Java
false
false
2,225
java
package org.mypackage.sample; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class mesod4 extends HttpServlet { //メソッドの定義 boolean reTrue(){ return true; } protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html;charset=UTF-8"); try (PrintWriter out = response.getWriter()) { //メソッドの呼び出し if(reTrue()){ out.print("この処理は正しく実行できました。"); } else { out.print("正しく実行できませんでした。"); } } } // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code."> /** * Handles the HTTP <code>GET</code> method. * * @param request servlet request * @param response servlet response * @throws ServletException if a servlet-specific error occurs * @throws IOException if an I/O error occurs */ @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { processRequest(request, response); } /** * Handles the HTTP <code>POST</code> method. * * @param request servlet request * @param response servlet response * @throws ServletException if a servlet-specific error occurs * @throws IOException if an I/O error occurs */ @Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { processRequest(request, response); } /** * Returns a short description of the servlet. * * @return a String containing servlet description */ @Override public String getServletInfo() { return "Short description"; }// </editor-fold> }
[ "maka343noshi@gmail.com" ]
maka343noshi@gmail.com
c7c941b3fb954c54755daaf6e45105b01d3ce940
e2937cf018c16509dcf1d0f76af2fd33695b6c19
/build/generated/source/r/debug/com/app/campeonatovirtualdefutebol/R.java
6047d9a3ef11618472513232bc9996782822b9f4
[]
no_license
msoliver32/App
0ce196b88f7b15fed34c95b2d9a7450b6d136372
7cfc3b87d7660bd11d0039ba178472e71b365202
refs/heads/master
2021-01-01T06:51:05.910727
2015-03-06T04:18:55
2015-03-06T04:18:55
31,751,896
0
0
null
null
null
null
UTF-8
Java
false
false
309,001
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.app.campeonatovirtualdefutebol; 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_slide_in_bottom=0x7f040002; public static final int abc_slide_in_top=0x7f040003; public static final int abc_slide_out_bottom=0x7f040004; public static final int abc_slide_out_top=0x7f040005; } 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=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 actionBarItemBackground=0x7f01005b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=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>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarSplitStyle=0x7f010056; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarStyle=0x7f010055; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f010050; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010051; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTheme=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 actionBarWidgetTheme=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 actionButtonStyle=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 actionDropDownStyle=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 actionLayout=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 actionMenuTextAppearance=0x7f01005c; /** <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=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 actionModeBackground=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 actionModeCloseButtonStyle=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 actionModeCloseDrawable=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 actionModeCopyDrawable=0x7f010064; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionModeFindDrawable=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 actionModePasteDrawable=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 actionModePopupWindowStyle=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 actionModeSelectAllDrawable=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 actionModeShareDrawable=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 actionModeSplitBackground=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 actionModeStyle=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 actionModeWebSearchDrawable=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 actionOverflowButtonStyle=0x7f010052; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f010053; /** <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=0x7f01002e; /** <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=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 activityChooserViewStyle=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 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 dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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 barSize=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 buttonBarButtonStyle=0x7f010074; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarStyle=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 closeIcon=0x7f010035; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int 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=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 collapseIcon=0x7f0100a3; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int color=0x7f010020; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorAccent=0x7f010094; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorButtonNormal=0x7f010098; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlActivated=0x7f010096; /** <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=0x7f010097; /** <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=0x7f010095; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=0x7f010092; /** <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=0x7f010093; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorSwitchThumbNormal=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 commitIcon=0x7f010039; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int 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 customNavigationLayout=0x7f01000f; /** <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 disableChildrenWhenDisabled=0x7f010040; /** <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=0x7f010078; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=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 dividerVertical=0x7f010077; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=0x7f010022; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int 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=0x7f01008a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=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 editTextBackground=0x7f01007f; /** <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=0x7f01007e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=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 goIcon=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 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=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 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=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 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=0x7f010032; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f010091; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f01008b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=0x7f010085; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=0x7f010087; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightSmall=0x7f010086; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingLeft=0x7f010088; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=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 logo=0x7f01000a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=0x7f0100a1; /** <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=0x7f010028; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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 middleBarArrowSize=0x7f010025; /** <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=0x7f0100a6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a5; /** <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=0x7f010030; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=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 paddingStart=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 panelBackground=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 panelMenuListTheme=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 panelMenuListWidth=0x7f01008f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 popupPromptView=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 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=0x7f01007d; /** <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=0x7f01002f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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 prompt=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 queryBackground=0x7f01003b; /** <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=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 searchIcon=0x7f010037; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchViewStyle=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 selectableItemBackground=0x7f010075; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f010076; /** <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=0x7f01002b; /** <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=0x7f010029; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int showText=0x7f010047; /** <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=0x7f010021; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010070; /** <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>dialog</code></td><td>0</td><td></td></tr> <tr><td><code>dropdown</code></td><td>1</td><td></td></tr> </table> */ public static final int spinnerMode=0x7f01003e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006f; /** <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=0x7f010046; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_above_anchor=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 submitBackground=0x7f01003c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static 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=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 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=0x7f01003a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchMinWidth=0x7f010044; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=0x7f010045; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010080; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=0x7f010043; /** <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=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 textAppearanceLargePopupMenu=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 textAppearanceListItem=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 textAppearanceListItemSmall=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 textAppearanceSearchResultSubtitle=0x7f010082; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=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 textAppearanceSmallPopupMenu=0x7f01006c; /** <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=0x7f010083; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int theme=0x7f0100a2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=0x7f010027; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=0x7f010042; /** <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=0x7f0100a0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginEnd=0x7f01009e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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=0x7f01009d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginTop=0x7f01009f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargins=0x7f01009c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 toolbarStyle=0x7f01007a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or 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 topBottomBarArrowSize=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 track=0x7f010041; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010038; /** <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=0x7f010048; /** <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=0x7f010049; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionModeOverlay=0x7f01004a; /** <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=0x7f01004e; /** <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=0x7f01004c; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>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=0x7f01004b; /** <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=0x7f01004d; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f050000; public static final int abc_action_bar_embed_tabs_pre_jb=0x7f050001; public static final int abc_action_bar_expanded_action_views_exclusive=0x7f050002; public static final int abc_config_actionMenuItemAllCaps=0x7f050003; public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f050004; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f050005; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f060031; public static final int abc_background_cache_hint_selector_material_light=0x7f060032; public static final int abc_input_method_navigation_guard=0x7f060000; public static final int abc_primary_text_disable_only_material_dark=0x7f060033; public static final int abc_primary_text_disable_only_material_light=0x7f060034; public static final int abc_primary_text_material_dark=0x7f060035; public static final int abc_primary_text_material_light=0x7f060036; public static final int abc_search_url_text=0x7f060037; public static final int abc_search_url_text_normal=0x7f060001; public static final int abc_search_url_text_pressed=0x7f060002; public static final int abc_search_url_text_selected=0x7f060003; public static final int abc_secondary_text_material_dark=0x7f060038; public static final int abc_secondary_text_material_light=0x7f060039; public static final int accent_material_dark=0x7f060004; public static final int accent_material_light=0x7f060005; public static final int background_floating_material_dark=0x7f060006; public static final int background_floating_material_light=0x7f060007; public static final int background_material_dark=0x7f060008; public static final int background_material_light=0x7f060009; public static final int bright_foreground_disabled_material_dark=0x7f06000a; public static final int bright_foreground_disabled_material_light=0x7f06000b; public static final int bright_foreground_inverse_material_dark=0x7f06000c; public static final int bright_foreground_inverse_material_light=0x7f06000d; public static final int bright_foreground_material_dark=0x7f06000e; public static final int bright_foreground_material_light=0x7f06000f; public static final int button_material_dark=0x7f060010; public static final int button_material_light=0x7f060011; public static final int dim_foreground_disabled_material_dark=0x7f060012; public static final int dim_foreground_disabled_material_light=0x7f060013; public static final int dim_foreground_material_dark=0x7f060014; public static final int dim_foreground_material_light=0x7f060015; public static final int highlighted_text_material_dark=0x7f060016; public static final int highlighted_text_material_light=0x7f060017; public static final int hint_foreground_material_dark=0x7f060018; public static final int hint_foreground_material_light=0x7f060019; public static final int link_text_material_dark=0x7f06001a; public static final int link_text_material_light=0x7f06001b; public static final int material_blue_grey_800=0x7f06001c; public static final int material_blue_grey_900=0x7f06001d; public static final int material_blue_grey_950=0x7f06001e; public static final int material_deep_teal_200=0x7f06001f; public static final int material_deep_teal_500=0x7f060020; public static final int primary_dark_material_dark=0x7f060021; public static final int primary_dark_material_light=0x7f060022; public static final int primary_material_dark=0x7f060023; public static final int primary_material_light=0x7f060024; public static final int primary_text_default_material_dark=0x7f060025; public static final int primary_text_default_material_light=0x7f060026; public static final int primary_text_disabled_material_dark=0x7f060027; public static final int primary_text_disabled_material_light=0x7f060028; public static final int ripple_material_dark=0x7f060029; public static final int ripple_material_light=0x7f06002a; public static final int secondary_text_default_material_dark=0x7f06002b; public static final int secondary_text_default_material_light=0x7f06002c; public static final int secondary_text_disabled_material_dark=0x7f06002d; public static final int secondary_text_disabled_material_light=0x7f06002e; public static final int switch_thumb_normal_material_dark=0x7f06002f; public static final int switch_thumb_normal_material_light=0x7f060030; } public static final class dimen { public static final int abc_action_bar_default_height_material=0x7f070000; public static final int abc_action_bar_default_padding_material=0x7f070001; public static final int abc_action_bar_icon_vertical_padding_material=0x7f070002; public static final int abc_action_bar_progress_bar_size=0x7f070003; public static final int abc_action_bar_stacked_max_height=0x7f070004; public static final int abc_action_bar_stacked_tab_max_width=0x7f070005; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070006; public static final int abc_action_bar_subtitle_top_margin_material=0x7f070007; public static final int abc_action_button_min_height_material=0x7f070008; public static final int abc_action_button_min_width_material=0x7f070009; public static final int abc_action_button_min_width_overflow_material=0x7f07000a; public static final int abc_config_prefDialogWidth=0x7f07000b; public static final int abc_control_inset_material=0x7f07000c; public static final int abc_control_padding_material=0x7f07000d; public static final int abc_dropdownitem_icon_width=0x7f07000e; public static final int abc_dropdownitem_text_padding_left=0x7f07000f; public static final int abc_dropdownitem_text_padding_right=0x7f070010; public static final int abc_panel_menu_list_width=0x7f070011; public static final int abc_search_view_preferred_width=0x7f070012; public static final int abc_search_view_text_min_width=0x7f070013; public static final int abc_text_size_body_1_material=0x7f070014; public static final int abc_text_size_body_2_material=0x7f070015; public static final int abc_text_size_button_material=0x7f070016; public static final int abc_text_size_caption_material=0x7f070017; public static final int abc_text_size_display_1_material=0x7f070018; public static final int abc_text_size_display_2_material=0x7f070019; public static final int abc_text_size_display_3_material=0x7f07001a; public static final int abc_text_size_display_4_material=0x7f07001b; public static final int abc_text_size_headline_material=0x7f07001c; public static final int abc_text_size_large_material=0x7f07001d; public static final int abc_text_size_medium_material=0x7f07001e; public static final int abc_text_size_menu_material=0x7f07001f; public static final int abc_text_size_small_material=0x7f070020; public static final int abc_text_size_subhead_material=0x7f070021; public static final int abc_text_size_subtitle_material_toolbar=0x7f070022; public static final int abc_text_size_title_material=0x7f070023; public static final int abc_text_size_title_material_toolbar=0x7f070024; public static final int activity_horizontal_margin=0x7f070025; public static final int activity_vertical_margin=0x7f070026; public static final int dialog_fixed_height_major=0x7f070027; public static final int dialog_fixed_height_minor=0x7f070028; public static final int dialog_fixed_width_major=0x7f070029; public static final int dialog_fixed_width_minor=0x7f07002a; public static final int disabled_alpha_material_dark=0x7f07002b; public static final int disabled_alpha_material_light=0x7f07002c; } public static final class drawable { public static final int abc_ab_share_pack_holo_dark=0x7f020000; public static final int abc_ab_share_pack_holo_light=0x7f020001; public static final int abc_btn_check_material=0x7f020002; public static final int abc_btn_check_to_on_mtrl_000=0x7f020003; public static final int abc_btn_check_to_on_mtrl_015=0x7f020004; public static final int abc_btn_radio_material=0x7f020005; public static final int abc_btn_radio_to_on_mtrl_000=0x7f020006; public static final int abc_btn_radio_to_on_mtrl_015=0x7f020007; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f020008; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f020009; public static final int abc_cab_background_internal_bg=0x7f02000a; public static final int abc_cab_background_top_material=0x7f02000b; public static final int abc_cab_background_top_mtrl_alpha=0x7f02000c; public static final int abc_edit_text_material=0x7f02000d; public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f02000e; public static final int abc_ic_clear_mtrl_alpha=0x7f02000f; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020010; public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020011; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020012; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020013; public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f020014; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f020015; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f020016; public static final int abc_ic_menu_share_mtrl_alpha=0x7f020017; public static final int abc_ic_search_api_mtrl_alpha=0x7f020018; public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020019; public static final int abc_item_background_holo_dark=0x7f02001a; public static final int abc_item_background_holo_light=0x7f02001b; public static final int abc_list_divider_mtrl_alpha=0x7f02001c; public static final int abc_list_focused_holo=0x7f02001d; public static final int abc_list_longpressed_holo=0x7f02001e; public static final int abc_list_pressed_holo_dark=0x7f02001f; public static final int abc_list_pressed_holo_light=0x7f020020; public static final int abc_list_selector_background_transition_holo_dark=0x7f020021; public static final int abc_list_selector_background_transition_holo_light=0x7f020022; public static final int abc_list_selector_disabled_holo_dark=0x7f020023; public static final int abc_list_selector_disabled_holo_light=0x7f020024; public static final int abc_list_selector_holo_dark=0x7f020025; public static final int abc_list_selector_holo_light=0x7f020026; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020027; public static final int abc_popup_background_mtrl_mult=0x7f020028; public static final int abc_spinner_mtrl_am_alpha=0x7f020029; public static final int abc_switch_thumb_material=0x7f02002a; public static final int abc_switch_track_mtrl_alpha=0x7f02002b; public static final int abc_tab_indicator_material=0x7f02002c; public static final int abc_tab_indicator_mtrl_alpha=0x7f02002d; public static final int abc_textfield_activated_mtrl_alpha=0x7f02002e; public static final int abc_textfield_default_mtrl_alpha=0x7f02002f; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020030; public static final int abc_textfield_search_default_mtrl_alpha=0x7f020031; public static final int abc_textfield_search_material=0x7f020032; public static final int ic_launcher=0x7f020033; } public static final class id { public static final int action_bar=0x7f080031; public static final int action_bar_activity_content=0x7f080000; public static final int action_bar_container=0x7f080030; public static final int action_bar_root=0x7f08002c; public static final int action_bar_spinner=0x7f080001; public static final int action_bar_subtitle=0x7f08001f; public static final int action_bar_title=0x7f08001e; public static final int action_context_bar=0x7f080032; public static final int action_menu_divider=0x7f080002; public static final int action_menu_presenter=0x7f080003; public static final int action_mode_bar=0x7f08002e; public static final int action_mode_bar_stub=0x7f08002d; public static final int action_mode_close_button=0x7f080020; public static final int action_settings=0x7f08004d; public static final int activity_chooser_view_content=0x7f080021; public static final int always=0x7f080016; public static final int beginning=0x7f080013; public static final int btn_adicionarCompetidor=0x7f080046; public static final int btn_adicionarCompetidores=0x7f08004a; public static final int btn_alterarCompetidores=0x7f08004b; public static final int btn_campeonatosMenu=0x7f080041; public static final int btn_cancelarCompetidor=0x7f080047; public static final int btn_competidoresMenu=0x7f08003f; public static final int btn_timeMenu=0x7f080040; public static final int checkbox=0x7f080029; public static final int collapseActionView=0x7f080017; public static final int decor_content_parent=0x7f08002f; public static final int default_activity_button=0x7f080024; public static final int dialog=0x7f08001b; public static final int disableHome=0x7f08000c; public static final int dropdown=0x7f08001c; public static final int edit_query=0x7f080033; public static final int edt_nomeApelidoCompetidor=0x7f080044; public static final int edt_nomeApelidoCompetidores=0x7f080049; public static final int edt_timeCompetidor=0x7f080045; public static final int end=0x7f080014; public static final int expand_activities_button=0x7f080022; public static final int expanded_menu=0x7f080028; public static final int gridview=0x7f08004c; public static final int home=0x7f080004; public static final int homeAsUp=0x7f08000d; public static final int icon=0x7f080026; public static final int ifRoom=0x7f080018; public static final int image=0x7f080023; public static final int imgbtn_voltaMenuCompetidoresCompetidor=0x7f080042; public static final int imgbtn_voltaMenuPrincipalCompetidores=0x7f080048; public static final int listMode=0x7f080009; public static final int list_item=0x7f080025; public static final int middle=0x7f080015; public static final int never=0x7f080019; public static final int none=0x7f08000e; public static final int normal=0x7f08000a; public static final int progress_circular=0x7f080005; public static final int progress_horizontal=0x7f080006; public static final int radio=0x7f08002b; public static final int search_badge=0x7f080035; public static final int search_bar=0x7f080034; public static final int search_button=0x7f080036; public static final int search_close_btn=0x7f08003b; public static final int search_edit_frame=0x7f080037; public static final int search_go_btn=0x7f08003d; public static final int search_mag_icon=0x7f080038; public static final int search_plate=0x7f080039; public static final int search_src_text=0x7f08003a; public static final int search_voice_btn=0x7f08003e; public static final int shortcut=0x7f08002a; public static final int showCustom=0x7f08000f; public static final int showHome=0x7f080010; public static final int showTitle=0x7f080011; public static final int split_action_bar=0x7f080007; public static final int submit_area=0x7f08003c; public static final int tabMode=0x7f08000b; public static final int textView1=0x7f080043; public static final int title=0x7f080027; public static final int up=0x7f080008; public static final int useLogo=0x7f080012; public static final int withText=0x7f08001a; public static final int wrap_content=0x7f08001d; } public static final class integer { public static final int abc_max_action_buttons=0x7f090000; } 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_include=0x7f030008; public static final int abc_activity_chooser_view_list_item=0x7f030009; public static final int abc_expanded_menu_layout=0x7f03000a; public static final int abc_list_menu_item_checkbox=0x7f03000b; public static final int abc_list_menu_item_icon=0x7f03000c; public static final int abc_list_menu_item_layout=0x7f03000d; public static final int abc_list_menu_item_radio=0x7f03000e; public static final int abc_popup_menu_item_layout=0x7f03000f; public static final int abc_screen_content_include=0x7f030010; public static final int abc_screen_simple=0x7f030011; public static final int abc_screen_simple_overlay_action_mode=0x7f030012; public static final int abc_screen_toolbar=0x7f030013; public static final int abc_search_dropdown_item_icons_2line=0x7f030014; public static final int abc_search_view=0x7f030015; public static final int abc_simple_dropdown_hint=0x7f030016; public static final int activity_main=0x7f030017; public static final int competidor=0x7f030018; public static final int competidores=0x7f030019; public static final int support_simple_spinner_dropdown_item=0x7f03001a; public static final int teste=0x7f03001b; } public static final class menu { public static final int main=0x7f0c0000; } public static final class string { public static final int abc_action_bar_home_description=0x7f0a0000; public static final int abc_action_bar_home_description_format=0x7f0a0001; public static final int abc_action_bar_home_subtitle_description_format=0x7f0a0002; public static final int abc_action_bar_up_description=0x7f0a0003; public static final int abc_action_menu_overflow_description=0x7f0a0004; public static final int abc_action_mode_done=0x7f0a0005; public static final int abc_activity_chooser_view_see_all=0x7f0a0006; public static final int abc_activitychooserview_choose_application=0x7f0a0007; public static final int abc_searchview_description_clear=0x7f0a0008; public static final int abc_searchview_description_query=0x7f0a0009; public static final int abc_searchview_description_search=0x7f0a000a; public static final int abc_searchview_description_submit=0x7f0a000b; public static final int abc_searchview_description_voice=0x7f0a000c; public static final int abc_shareactionprovider_share_with=0x7f0a000d; public static final int abc_shareactionprovider_share_with_application=0x7f0a000e; public static final int abc_toolbar_collapse_description=0x7f0a000f; public static final int action_settings=0x7f0a0010; public static final int app_name=0x7f0a0011; public static final int hello_world=0x7f0a0012; } public static final class style { /** Theme customizations available in newer API levels can go in res/values-vXX/styles.xml, while customizations related to backward-compatibility can go here. API 11 theme customizations can go here. API 14 theme customizations can go here. */ public static final int AppBaseTheme=0x7f0b0000; /** All customizations that are NOT specific to a particular API-level can go here. */ public static final int AppTheme=0x7f0b0001; public static final int Base_TextAppearance_AppCompat=0x7f0b0002; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b0003; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b0004; public static final int Base_TextAppearance_AppCompat_Button=0x7f0b0005; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b0006; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b0007; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b0008; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b0009; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b000a; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b000b; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b000c; public static final int Base_TextAppearance_AppCompat_Large=0x7f0b000d; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b000e; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b000f; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0010; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b0011; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b0012; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b0013; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b0014; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0015; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b0016; public static final int Base_TextAppearance_AppCompat_Small=0x7f0b0017; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b0018; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b0019; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b001a; public static final int Base_TextAppearance_AppCompat_Title=0x7f0b001b; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b001c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b001d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b001e; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b001f; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0020; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0021; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0022; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0023; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0024; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0025; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0026; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b0027; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0028; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0029; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b002a; public static final int Base_Theme_AppCompat=0x7f0b002b; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b002c; public static final int Base_Theme_AppCompat_Dialog=0x7f0b002d; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b002e; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b002f; public static final int Base_Theme_AppCompat_Light=0x7f0b0030; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b0031; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b0032; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b0033; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0034; public static final int Base_ThemeOverlay_AppCompat=0x7f0b0035; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b0036; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b0037; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b0038; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b0039; public static final int Base_V11_Theme_AppCompat=0x7f0b00e1; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b00e2; public static final int Base_V11_Theme_AppCompat_Light=0x7f0b00e3; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b00e4; public static final int Base_V14_Theme_AppCompat=0x7f0b00e5; public static final int Base_V14_Theme_AppCompat_Dialog=0x7f0b00e6; public static final int Base_V14_Theme_AppCompat_Light=0x7f0b00e7; public static final int Base_V14_Theme_AppCompat_Light_Dialog=0x7f0b00e8; public static final int Base_V21_Theme_AppCompat=0x7f0b00e9; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b00ea; public static final int Base_V21_Theme_AppCompat_Light=0x7f0b00eb; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b00ec; public static final int Base_V7_Theme_AppCompat=0x7f0b003a; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b003b; public static final int Base_V7_Theme_AppCompat_Light=0x7f0b003c; public static final int Base_Widget_AppCompat_ActionBar=0x7f0b003d; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b003e; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b003f; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b0040; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b0041; public static final int Base_Widget_AppCompat_ActionButton=0x7f0b0042; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0043; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b0044; public static final int Base_Widget_AppCompat_ActionMode=0x7f0b0045; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b0046; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0047; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b0048; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b0049; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b004a; public static final int Base_Widget_AppCompat_EditText=0x7f0b004b; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b004c; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b004d; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b004e; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b004f; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0050; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0051; public static final int Base_Widget_AppCompat_Light_ActivityChooserView=0x7f0b0052; public static final int Base_Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0053; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b0054; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0055; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b0056; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b0057; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b0058; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b0059; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b005a; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b005b; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b005c; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b005d; public static final int Base_Widget_AppCompat_SearchView=0x7f0b005e; public static final int Base_Widget_AppCompat_Spinner=0x7f0b005f; public static final int Base_Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0060; public static final int Base_Widget_AppCompat_Toolbar=0x7f0b0061; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0062; public static final int Platform_AppCompat=0x7f0b0063; public static final int Platform_AppCompat_Dialog=0x7f0b0064; public static final int Platform_AppCompat_Light=0x7f0b0065; public static final int Platform_AppCompat_Light_Dialog=0x7f0b0066; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b0067; public static final int RtlOverlay_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0068; public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b0069; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b006a; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b006b; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b006c; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b006d; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b006e; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b006f; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b0070; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b0071; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b0072; public static final int TextAppearance_AppCompat=0x7f0b0073; public static final int TextAppearance_AppCompat_Body1=0x7f0b0074; public static final int TextAppearance_AppCompat_Body2=0x7f0b0075; public static final int TextAppearance_AppCompat_Button=0x7f0b0076; public static final int TextAppearance_AppCompat_Caption=0x7f0b0077; public static final int TextAppearance_AppCompat_Display1=0x7f0b0078; public static final int TextAppearance_AppCompat_Display2=0x7f0b0079; public static final int TextAppearance_AppCompat_Display3=0x7f0b007a; public static final int TextAppearance_AppCompat_Display4=0x7f0b007b; public static final int TextAppearance_AppCompat_Headline=0x7f0b007c; public static final int TextAppearance_AppCompat_Inverse=0x7f0b007d; public static final int TextAppearance_AppCompat_Large=0x7f0b007e; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b007f; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b0080; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b0081; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0082; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0083; public static final int TextAppearance_AppCompat_Medium=0x7f0b0084; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b0085; public static final int TextAppearance_AppCompat_Menu=0x7f0b0086; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0087; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b0088; public static final int TextAppearance_AppCompat_Small=0x7f0b0089; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b008a; public static final int TextAppearance_AppCompat_Subhead=0x7f0b008b; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b008c; public static final int TextAppearance_AppCompat_Title=0x7f0b008d; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b008e; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b008f; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0090; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0091; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0092; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0093; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0094; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0095; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0096; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b0097; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0098; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0099; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b009a; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b009b; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b009c; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b009d; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b009e; public static final int Theme_AppCompat=0x7f0b009f; public static final int Theme_AppCompat_CompactMenu=0x7f0b00a0; public static final int Theme_AppCompat_Dialog=0x7f0b00a1; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b00a2; public static final int Theme_AppCompat_Light=0x7f0b00a3; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b00a4; public static final int Theme_AppCompat_Light_Dialog=0x7f0b00a5; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b00a6; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b00a7; public static final int Theme_AppCompat_NoActionBar=0x7f0b00a8; public static final int ThemeOverlay_AppCompat=0x7f0b00a9; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b00aa; public static final int ThemeOverlay_AppCompat_Dark=0x7f0b00ab; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b00ac; public static final int ThemeOverlay_AppCompat_Light=0x7f0b00ad; public static final int Widget_AppCompat_ActionBar=0x7f0b00ae; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b00af; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b00b0; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b00b1; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b00b2; public static final int Widget_AppCompat_ActionButton=0x7f0b00b3; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b00b4; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b00b5; public static final int Widget_AppCompat_ActionMode=0x7f0b00b6; public static final int Widget_AppCompat_ActivityChooserView=0x7f0b00b7; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b00b8; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b00b9; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b00ba; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b00bb; public static final int Widget_AppCompat_EditText=0x7f0b00bc; public static final int Widget_AppCompat_Light_ActionBar=0x7f0b00bd; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b00be; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b00bf; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b00c0; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b00c1; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b00c2; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b00c3; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b00c4; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b00c5; public static final int Widget_AppCompat_Light_ActionButton=0x7f0b00c6; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b00c7; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b00c8; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b00c9; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b00ca; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b00cb; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b00cc; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b00cd; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b00ce; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b00cf; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b00d0; public static final int Widget_AppCompat_Light_SearchView=0x7f0b00d1; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b00d2; public static final int Widget_AppCompat_ListPopupWindow=0x7f0b00d3; public static final int Widget_AppCompat_ListView_DropDown=0x7f0b00d4; public static final int Widget_AppCompat_ListView_Menu=0x7f0b00d5; public static final int Widget_AppCompat_PopupMenu=0x7f0b00d6; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b00d7; public static final int Widget_AppCompat_PopupWindow=0x7f0b00d8; public static final int Widget_AppCompat_ProgressBar=0x7f0b00d9; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b00da; public static final int Widget_AppCompat_SearchView=0x7f0b00db; public static final int Widget_AppCompat_Spinner=0x7f0b00dc; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b00dd; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b00de; public static final int Widget_AppCompat_Toolbar=0x7f0b00df; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b00e0; } 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.app.campeonatovirtualdefutebol:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.app.campeonatovirtualdefutebol:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.app.campeonatovirtualdefutebol:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.app.campeonatovirtualdefutebol:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.app.campeonatovirtualdefutebol:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.app.campeonatovirtualdefutebol:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.app.campeonatovirtualdefutebol:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.app.campeonatovirtualdefutebol:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.app.campeonatovirtualdefutebol:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.app.campeonatovirtualdefutebol:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.app.campeonatovirtualdefutebol:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.app.campeonatovirtualdefutebol:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.app.campeonatovirtualdefutebol:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.app.campeonatovirtualdefutebol:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.app.campeonatovirtualdefutebol:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.app.campeonatovirtualdefutebol:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.app.campeonatovirtualdefutebol:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.app.campeonatovirtualdefutebol:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.app.campeonatovirtualdefutebol:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.app.campeonatovirtualdefutebol:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.app.campeonatovirtualdefutebol:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.app.campeonatovirtualdefutebol:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.app.campeonatovirtualdefutebol:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.app.campeonatovirtualdefutebol:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.app.campeonatovirtualdefutebol:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.app.campeonatovirtualdefutebol:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.app.campeonatovirtualdefutebol: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, 0x7f010071 }; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:elevation */ public static final int ActionBar_elevation = 24; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 26; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:popupTheme */ public static final int ActionBar_popupTheme = 25; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.app.campeonatovirtualdefutebol:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.app.campeonatovirtualdefutebol:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.app.campeonatovirtualdefutebol:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.app.campeonatovirtualdefutebol:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a CompatTextView. <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 #CompatTextView_textAllCaps com.app.campeonatovirtualdefutebol:textAllCaps}</code></td><td></td></tr> </table> @see #CompatTextView_textAllCaps */ public static final int[] CompatTextView = { 0x7f01001f }; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.R.attr#textAllCaps} attribute's value can be found in the {@link #CompatTextView} 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.app.campeonatovirtualdefutebol:textAllCaps */ public static final int CompatTextView_textAllCaps = 0; /** 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_barSize com.app.campeonatovirtualdefutebol:barSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.app.campeonatovirtualdefutebol:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.app.campeonatovirtualdefutebol:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.app.campeonatovirtualdefutebol:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_middleBarArrowSize com.app.campeonatovirtualdefutebol:middleBarArrowSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.app.campeonatovirtualdefutebol:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.app.campeonatovirtualdefutebol:thickness}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_topBottomBarArrowSize com.app.campeonatovirtualdefutebol:topBottomBarArrowSize}</code></td><td></td></tr> </table> @see #DrawerArrowToggle_barSize @see #DrawerArrowToggle_color @see #DrawerArrowToggle_drawableSize @see #DrawerArrowToggle_gapBetweenBars @see #DrawerArrowToggle_middleBarArrowSize @see #DrawerArrowToggle_spinBars @see #DrawerArrowToggle_thickness @see #DrawerArrowToggle_topBottomBarArrowSize */ public static final int[] DrawerArrowToggle = { 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027 }; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.R.attr#barSize} 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.app.campeonatovirtualdefutebol:barSize */ public static final int DrawerArrowToggle_barSize = 6; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.R.attr#middleBarArrowSize} 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.app.campeonatovirtualdefutebol:middleBarArrowSize */ public static final int DrawerArrowToggle_middleBarArrowSize = 5; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.R.attr#topBottomBarArrowSize} 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.app.campeonatovirtualdefutebol:topBottomBarArrowSize */ public static final int DrawerArrowToggle_topBottomBarArrowSize = 4; /** 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.app.campeonatovirtualdefutebol:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.app.campeonatovirtualdefutebol:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.app.campeonatovirtualdefutebol:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.app.campeonatovirtualdefutebol: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, 0x7f010028, 0x7f010029, 0x7f01002a }; /** <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.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.app.campeonatovirtualdefutebol:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol: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, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol: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, 0x7f01002f }; /** <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.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x7f010030 }; /** <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.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f010031 }; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol: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.app.campeonatovirtualdefutebol:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.app.campeonatovirtualdefutebol:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.app.campeonatovirtualdefutebol:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.app.campeonatovirtualdefutebol:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.app.campeonatovirtualdefutebol:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.app.campeonatovirtualdefutebol:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.app.campeonatovirtualdefutebol:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.app.campeonatovirtualdefutebol:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.app.campeonatovirtualdefutebol:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.app.campeonatovirtualdefutebol:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.app.campeonatovirtualdefutebol: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_goIcon @see #SearchView_iconifiedByDefault @see #SearchView_layout @see #SearchView_queryBackground @see #SearchView_queryHint @see #SearchView_searchIcon @see #SearchView_submitBackground @see #SearchView_suggestionRowLayout @see #SearchView_voiceIcon */ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c }; /** <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.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:closeIcon */ public static final int SearchView_closeIcon = 7; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:commitIcon */ public static final int SearchView_commitIcon = 11; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:goIcon */ public static final int SearchView_goIcon = 8; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:queryBackground */ public static final int SearchView_queryBackground = 13; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:searchIcon */ public static final int SearchView_searchIcon = 9; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:submitBackground */ public static final int SearchView_submitBackground = 14; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 12; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:voiceIcon */ public static final int SearchView_voiceIcon = 10; /** 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_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_dropDownSelector android:dropDownSelector}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_disableChildrenWhenDisabled com.app.campeonatovirtualdefutebol:disableChildrenWhenDisabled}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupPromptView com.app.campeonatovirtualdefutebol:popupPromptView}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_prompt com.app.campeonatovirtualdefutebol:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_spinnerMode com.app.campeonatovirtualdefutebol:spinnerMode}</code></td><td></td></tr> </table> @see #Spinner_android_background @see #Spinner_android_dropDownHorizontalOffset @see #Spinner_android_dropDownSelector @see #Spinner_android_dropDownVerticalOffset @see #Spinner_android_dropDownWidth @see #Spinner_android_gravity @see #Spinner_android_popupBackground @see #Spinner_disableChildrenWhenDisabled @see #Spinner_popupPromptView @see #Spinner_prompt @see #Spinner_spinnerMode */ public static final int[] Spinner = { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #Spinner} array. @attr name android:background */ public static final int Spinner_android_background = 1; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownHorizontalOffset */ public static final int Spinner_android_dropDownHorizontalOffset = 5; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownSelector} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownSelector */ public static final int Spinner_android_dropDownSelector = 2; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownVerticalOffset */ public static final int Spinner_android_dropDownVerticalOffset = 6; /** <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 = 4; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Spinner} array. @attr name android:gravity */ public static final int Spinner_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 3; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.R.attr#disableChildrenWhenDisabled} attribute's value can be found in the {@link #Spinner} 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.app.campeonatovirtualdefutebol:disableChildrenWhenDisabled */ public static final int Spinner_disableChildrenWhenDisabled = 10; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.R.attr#popupPromptView} 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.app.campeonatovirtualdefutebol:popupPromptView */ public static final int Spinner_popupPromptView = 9; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.R.attr#prompt} 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.app.campeonatovirtualdefutebol:prompt */ public static final int Spinner_prompt = 7; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.R.attr#spinnerMode} attribute's value can be found in the {@link #Spinner} 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>dialog</code></td><td>0</td><td></td></tr> <tr><td><code>dropdown</code></td><td>1</td><td></td></tr> </table> @attr name com.app.campeonatovirtualdefutebol:spinnerMode */ public static final int Spinner_spinnerMode = 8; /** 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.app.campeonatovirtualdefutebol:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.app.campeonatovirtualdefutebol:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.app.campeonatovirtualdefutebol:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.app.campeonatovirtualdefutebol:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.app.campeonatovirtualdefutebol:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.app.campeonatovirtualdefutebol:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.app.campeonatovirtualdefutebol: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, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 }; /** <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.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:showText */ public static final int SwitchCompat_showText = 9; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:splitTrack */ public static final int SwitchCompat_splitTrack = 8; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 6; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:switchPadding */ public static final int SwitchCompat_switchPadding = 7; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 5; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 4; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:track */ public static final int SwitchCompat_track = 3; /** 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.app.campeonatovirtualdefutebol:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarItemBackground com.app.campeonatovirtualdefutebol:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarPopupTheme com.app.campeonatovirtualdefutebol:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarSize com.app.campeonatovirtualdefutebol:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarSplitStyle com.app.campeonatovirtualdefutebol:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarStyle com.app.campeonatovirtualdefutebol:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabBarStyle com.app.campeonatovirtualdefutebol:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabStyle com.app.campeonatovirtualdefutebol:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabTextStyle com.app.campeonatovirtualdefutebol:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTheme com.app.campeonatovirtualdefutebol:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarWidgetTheme com.app.campeonatovirtualdefutebol:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionButtonStyle com.app.campeonatovirtualdefutebol:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionDropDownStyle com.app.campeonatovirtualdefutebol:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionMenuTextAppearance com.app.campeonatovirtualdefutebol:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionMenuTextColor com.app.campeonatovirtualdefutebol:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeBackground com.app.campeonatovirtualdefutebol:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCloseButtonStyle com.app.campeonatovirtualdefutebol:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCloseDrawable com.app.campeonatovirtualdefutebol:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCopyDrawable com.app.campeonatovirtualdefutebol:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCutDrawable com.app.campeonatovirtualdefutebol:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeFindDrawable com.app.campeonatovirtualdefutebol:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModePasteDrawable com.app.campeonatovirtualdefutebol:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModePopupWindowStyle com.app.campeonatovirtualdefutebol:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeSelectAllDrawable com.app.campeonatovirtualdefutebol:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeShareDrawable com.app.campeonatovirtualdefutebol:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeSplitBackground com.app.campeonatovirtualdefutebol:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeStyle com.app.campeonatovirtualdefutebol:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeWebSearchDrawable com.app.campeonatovirtualdefutebol:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionOverflowButtonStyle com.app.campeonatovirtualdefutebol:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionOverflowMenuStyle com.app.campeonatovirtualdefutebol:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_activityChooserViewStyle com.app.campeonatovirtualdefutebol:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarButtonStyle com.app.campeonatovirtualdefutebol:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarStyle com.app.campeonatovirtualdefutebol:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorAccent com.app.campeonatovirtualdefutebol:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorButtonNormal com.app.campeonatovirtualdefutebol:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlActivated com.app.campeonatovirtualdefutebol:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlHighlight com.app.campeonatovirtualdefutebol:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlNormal com.app.campeonatovirtualdefutebol:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorPrimary com.app.campeonatovirtualdefutebol:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorPrimaryDark com.app.campeonatovirtualdefutebol:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorSwitchThumbNormal com.app.campeonatovirtualdefutebol:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dividerHorizontal com.app.campeonatovirtualdefutebol:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dividerVertical com.app.campeonatovirtualdefutebol:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dropDownListViewStyle com.app.campeonatovirtualdefutebol:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.app.campeonatovirtualdefutebol:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextBackground com.app.campeonatovirtualdefutebol:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextColor com.app.campeonatovirtualdefutebol:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_homeAsUpIndicator com.app.campeonatovirtualdefutebol:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.app.campeonatovirtualdefutebol:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPopupWindowStyle com.app.campeonatovirtualdefutebol:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeight com.app.campeonatovirtualdefutebol:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeightLarge com.app.campeonatovirtualdefutebol:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeightSmall com.app.campeonatovirtualdefutebol:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemPaddingLeft com.app.campeonatovirtualdefutebol:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemPaddingRight com.app.campeonatovirtualdefutebol:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelBackground com.app.campeonatovirtualdefutebol:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelMenuListTheme com.app.campeonatovirtualdefutebol:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelMenuListWidth com.app.campeonatovirtualdefutebol:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #Theme_popupMenuStyle com.app.campeonatovirtualdefutebol:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_popupWindowStyle com.app.campeonatovirtualdefutebol:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_searchViewStyle com.app.campeonatovirtualdefutebol:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_selectableItemBackground com.app.campeonatovirtualdefutebol:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_selectableItemBackgroundBorderless com.app.campeonatovirtualdefutebol:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #Theme_spinnerDropDownItemStyle com.app.campeonatovirtualdefutebol:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_spinnerStyle com.app.campeonatovirtualdefutebol:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_switchStyle com.app.campeonatovirtualdefutebol:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceLargePopupMenu com.app.campeonatovirtualdefutebol:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceListItem com.app.campeonatovirtualdefutebol:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceListItemSmall com.app.campeonatovirtualdefutebol:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle com.app.campeonatovirtualdefutebol:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSearchResultTitle com.app.campeonatovirtualdefutebol:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu com.app.campeonatovirtualdefutebol:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textColorSearchUrl com.app.campeonatovirtualdefutebol:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #Theme_toolbarNavigationButtonStyle com.app.campeonatovirtualdefutebol:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_toolbarStyle com.app.campeonatovirtualdefutebol:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionBar com.app.campeonatovirtualdefutebol:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionBarOverlay com.app.campeonatovirtualdefutebol:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionModeOverlay com.app.campeonatovirtualdefutebol:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedHeightMajor com.app.campeonatovirtualdefutebol:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedHeightMinor com.app.campeonatovirtualdefutebol:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedWidthMajor com.app.campeonatovirtualdefutebol:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedWidthMinor com.app.campeonatovirtualdefutebol:windowFixedWidthMinor}</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_android_windowIsFloating @see #Theme_buttonBarButtonStyle @see #Theme_buttonBarStyle @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_dividerHorizontal @see #Theme_dividerVertical @see #Theme_dropDownListViewStyle @see #Theme_dropdownListPreferredItemHeight @see #Theme_editTextBackground @see #Theme_editTextColor @see #Theme_homeAsUpIndicator @see #Theme_listChoiceBackgroundIndicator @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_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_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 */ public static final int[] Theme = { 0x01010057, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099 }; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarDivider */ public static final int Theme_actionBarDivider = 19; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarItemBackground */ public static final int Theme_actionBarItemBackground = 20; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarPopupTheme */ public static final int Theme_actionBarPopupTheme = 13; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarSize */ public static final int Theme_actionBarSize = 18; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarSplitStyle */ public static final int Theme_actionBarSplitStyle = 15; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarStyle */ public static final int Theme_actionBarStyle = 14; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarTabBarStyle */ public static final int Theme_actionBarTabBarStyle = 9; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarTabStyle */ public static final int Theme_actionBarTabStyle = 8; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarTabTextStyle */ public static final int Theme_actionBarTabTextStyle = 10; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarTheme */ public static final int Theme_actionBarTheme = 16; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionBarWidgetTheme */ public static final int Theme_actionBarWidgetTheme = 17; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionButtonStyle */ public static final int Theme_actionButtonStyle = 43; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionDropDownStyle */ public static final int Theme_actionDropDownStyle = 38; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionMenuTextAppearance */ public static final int Theme_actionMenuTextAppearance = 21; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionMenuTextColor */ public static final int Theme_actionMenuTextColor = 22; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeBackground */ public static final int Theme_actionModeBackground = 25; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeCloseButtonStyle */ public static final int Theme_actionModeCloseButtonStyle = 24; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeCloseDrawable */ public static final int Theme_actionModeCloseDrawable = 27; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeCopyDrawable */ public static final int Theme_actionModeCopyDrawable = 29; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeCutDrawable */ public static final int Theme_actionModeCutDrawable = 28; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeFindDrawable */ public static final int Theme_actionModeFindDrawable = 33; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModePasteDrawable */ public static final int Theme_actionModePasteDrawable = 30; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModePopupWindowStyle */ public static final int Theme_actionModePopupWindowStyle = 35; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeSelectAllDrawable */ public static final int Theme_actionModeSelectAllDrawable = 31; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeShareDrawable */ public static final int Theme_actionModeShareDrawable = 32; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeSplitBackground */ public static final int Theme_actionModeSplitBackground = 26; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeStyle */ public static final int Theme_actionModeStyle = 23; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionModeWebSearchDrawable */ public static final int Theme_actionModeWebSearchDrawable = 34; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionOverflowButtonStyle */ public static final int Theme_actionOverflowButtonStyle = 11; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:actionOverflowMenuStyle */ public static final int Theme_actionOverflowMenuStyle = 12; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:activityChooserViewStyle */ public static final int Theme_activityChooserViewStyle = 50; /** <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.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:buttonBarButtonStyle */ public static final int Theme_buttonBarButtonStyle = 45; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:buttonBarStyle */ public static final int Theme_buttonBarStyle = 44; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:colorAccent */ public static final int Theme_colorAccent = 77; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:colorButtonNormal */ public static final int Theme_colorButtonNormal = 81; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:colorControlActivated */ public static final int Theme_colorControlActivated = 79; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:colorControlHighlight */ public static final int Theme_colorControlHighlight = 80; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:colorControlNormal */ public static final int Theme_colorControlNormal = 78; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:colorPrimary */ public static final int Theme_colorPrimary = 75; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:colorPrimaryDark */ public static final int Theme_colorPrimaryDark = 76; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:colorSwitchThumbNormal */ public static final int Theme_colorSwitchThumbNormal = 82; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:dividerHorizontal */ public static final int Theme_dividerHorizontal = 49; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:dividerVertical */ public static final int Theme_dividerVertical = 48; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:dropDownListViewStyle */ public static final int Theme_dropDownListViewStyle = 67; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:dropdownListPreferredItemHeight */ public static final int Theme_dropdownListPreferredItemHeight = 39; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:editTextBackground */ public static final int Theme_editTextBackground = 56; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:editTextColor */ public static final int Theme_editTextColor = 55; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:homeAsUpIndicator */ public static final int Theme_homeAsUpIndicator = 42; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:listChoiceBackgroundIndicator */ public static final int Theme_listChoiceBackgroundIndicator = 74; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:listPopupWindowStyle */ public static final int Theme_listPopupWindowStyle = 68; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:listPreferredItemHeight */ public static final int Theme_listPreferredItemHeight = 62; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:listPreferredItemHeightLarge */ public static final int Theme_listPreferredItemHeightLarge = 64; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:listPreferredItemHeightSmall */ public static final int Theme_listPreferredItemHeightSmall = 63; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:listPreferredItemPaddingLeft */ public static final int Theme_listPreferredItemPaddingLeft = 65; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:listPreferredItemPaddingRight */ public static final int Theme_listPreferredItemPaddingRight = 66; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:panelBackground */ public static final int Theme_panelBackground = 71; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:panelMenuListTheme */ public static final int Theme_panelMenuListTheme = 73; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:panelMenuListWidth */ public static final int Theme_panelMenuListWidth = 72; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:popupMenuStyle */ public static final int Theme_popupMenuStyle = 53; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:popupWindowStyle */ public static final int Theme_popupWindowStyle = 54; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:searchViewStyle */ public static final int Theme_searchViewStyle = 61; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:selectableItemBackground */ public static final int Theme_selectableItemBackground = 46; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:selectableItemBackgroundBorderless */ public static final int Theme_selectableItemBackgroundBorderless = 47; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:spinnerDropDownItemStyle */ public static final int Theme_spinnerDropDownItemStyle = 41; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:spinnerStyle */ public static final int Theme_spinnerStyle = 40; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:switchStyle */ public static final int Theme_switchStyle = 57; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:textAppearanceLargePopupMenu */ public static final int Theme_textAppearanceLargePopupMenu = 36; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:textAppearanceListItem */ public static final int Theme_textAppearanceListItem = 69; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:textAppearanceListItemSmall */ public static final int Theme_textAppearanceListItemSmall = 70; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:textAppearanceSearchResultSubtitle */ public static final int Theme_textAppearanceSearchResultSubtitle = 59; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:textAppearanceSearchResultTitle */ public static final int Theme_textAppearanceSearchResultTitle = 58; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:textAppearanceSmallPopupMenu */ public static final int Theme_textAppearanceSmallPopupMenu = 37; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:textColorSearchUrl */ public static final int Theme_textColorSearchUrl = 60; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:toolbarNavigationButtonStyle */ public static final int Theme_toolbarNavigationButtonStyle = 52; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:toolbarStyle */ public static final int Theme_toolbarStyle = 51; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:windowActionBar */ public static final int Theme_windowActionBar = 1; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:windowActionBarOverlay */ public static final int Theme_windowActionBarOverlay = 2; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:windowActionModeOverlay */ public static final int Theme_windowActionModeOverlay = 3; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:windowFixedHeightMajor */ public static final int Theme_windowFixedHeightMajor = 7; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:windowFixedHeightMinor */ public static final int Theme_windowFixedHeightMinor = 5; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:windowFixedWidthMajor */ public static final int Theme_windowFixedWidthMajor = 4; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:windowFixedWidthMinor */ public static final int Theme_windowFixedWidthMinor = 6; /** 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.app.campeonatovirtualdefutebol:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.app.campeonatovirtualdefutebol:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.app.campeonatovirtualdefutebol:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.app.campeonatovirtualdefutebol:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.app.campeonatovirtualdefutebol:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.app.campeonatovirtualdefutebol:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.app.campeonatovirtualdefutebol:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.app.campeonatovirtualdefutebol:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.app.campeonatovirtualdefutebol:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.app.campeonatovirtualdefutebol:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.app.campeonatovirtualdefutebol:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.app.campeonatovirtualdefutebol:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_theme com.app.campeonatovirtualdefutebol:theme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.app.campeonatovirtualdefutebol:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.app.campeonatovirtualdefutebol:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.app.campeonatovirtualdefutebol:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.app.campeonatovirtualdefutebol:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.app.campeonatovirtualdefutebol:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.app.campeonatovirtualdefutebol:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.app.campeonatovirtualdefutebol:titleTextAppearance}</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_maxButtonHeight @see #Toolbar_navigationContentDescription @see #Toolbar_navigationIcon @see #Toolbar_popupTheme @see #Toolbar_subtitle @see #Toolbar_subtitleTextAppearance @see #Toolbar_theme @see #Toolbar_title @see #Toolbar_titleMarginBottom @see #Toolbar_titleMarginEnd @see #Toolbar_titleMarginStart @see #Toolbar_titleMarginTop @see #Toolbar_titleMargins @see #Toolbar_titleTextAppearance */ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6 }; /** <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.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 19; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:collapseIcon */ public static final int Toolbar_collapseIcon = 18; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 5; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 6; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:contentInsetRight */ public static final int Toolbar_contentInsetRight = 7; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:contentInsetStart */ public static final int Toolbar_contentInsetStart = 4; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 16; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 21; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:navigationIcon */ public static final int Toolbar_navigationIcon = 20; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:popupTheme */ public static final int Toolbar_popupTheme = 8; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 10; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.R.attr#theme} 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.app.campeonatovirtualdefutebol:theme */ public static final int Toolbar_theme = 17; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 15; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 13; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:titleMarginStart */ public static final int Toolbar_titleMarginStart = 12; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:titleMarginTop */ public static final int Toolbar_titleMarginTop = 14; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:titleMargins */ public static final int Toolbar_titleMargins = 11; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 9; /** 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_paddingEnd com.app.campeonatovirtualdefutebol:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.app.campeonatovirtualdefutebol:paddingStart}</code></td><td></td></tr> </table> @see #View_android_focusable @see #View_paddingEnd @see #View_paddingStart */ public static final int[] View = { 0x010100da, 0x7f0100a7, 0x7f0100a8 }; /** <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 = 0; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:paddingEnd */ public static final int View_paddingEnd = 2; /** <p>This symbol is the offset where the {@link com.app.campeonatovirtualdefutebol.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.app.campeonatovirtualdefutebol:paddingStart */ public static final int View_paddingStart = 1; /** 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; }; }
[ "moacir.oliveira@fatec.sp.gov.br" ]
moacir.oliveira@fatec.sp.gov.br
89cd6e86f0ae119f5aa2c5aaa04711a317de05aa
e57e030d7c9cbd48820e2334d7bc9db6e7a9139c
/src/test/java/ru/stqa/training/selenium/TestUserLogin.java
7e0442ea3e0449b48bc9c4dde2e831ea68d8b4c3
[ "Apache-2.0" ]
permissive
Margaret-Kurbanava/selenium-project-repository
4eb81794c0a922390445fd33a1581b7c02cd8971
7bf71d5e06a2fdfe7d646a80e4e26620e1ca2884
refs/heads/main
2023-02-26T04:00:36.653534
2021-01-25T15:45:07
2021-01-25T15:45:07
321,954,801
0
0
null
null
null
null
UTF-8
Java
false
false
1,128
java
package ru.stqa.training.selenium; import org.junit.Test; import pages.CreateAccountPage; import pages.LitecartMain; public class TestUserLogin extends TestBase { @Test public void testNewUserCreation() throws InterruptedException { //openLitecart LitecartMain litecartMain = new LitecartMain(driver); litecartMain.openLitecart(); //click 'New customers click here' to open create Account Page CreateAccountPage createAccountPage = litecartMain.openCreateAccountLink(); //add random email createAccountPage.enterEmail(); //fill in required fields createAccountPage.fillInName(); createAccountPage.fillInAddress(); createAccountPage.fillInPhone(); createAccountPage.fillInPassword(); createAccountPage.confirmPassword(); //click Create Account createAccountPage.clickCreateAccount(); //log out createAccountPage.logOut(); //log in createAccountPage.enterEmail(); createAccountPage.fillInPassword(); createAccountPage.logIn(); } }
[ "63010566+Margaret-Kurbanava@users.noreply.github.com" ]
63010566+Margaret-Kurbanava@users.noreply.github.com
738bcd6412f321565d9c10a22f35315d006f9dd7
8412ee09fdfd97189b041a94da416164e3a54507
/src/com/test/beans/ShoppingCartBean.java
040f3acf84488d97285e0f84d4fcbc3986e68955
[ "MIT" ]
permissive
kanaparthikiran/SCWCDPreparation
3e06ca34dfdcbf7b802c7d37e9d6c8ecddb20019
bf1ac202b6416f84c7a38986f447963330a79966
refs/heads/master
2021-01-10T08:47:18.099287
2018-09-29T18:52:16
2018-09-29T18:52:16
49,028,450
0
0
null
2018-09-29T18:52:17
2016-01-04T23:00:01
Java
UTF-8
Java
false
false
1,179
java
/** * */ package com.test.beans; import java.io.Serializable; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; /** * @author kkanaparthi * */ public class ShoppingCartBean implements Serializable { /** * */ public ShoppingCartBean() { super(); List<ProductItemBean> prodList = new CopyOnWriteArrayList<ProductItemBean>(); ProductItemBean p1 = new ProductItemBean("1","Rug","Vintage Rug"); ProductItemBean p2 = new ProductItemBean("2","Chair","Wooden Chair"); ProductItemBean p3 = new ProductItemBean("3","Sofa","Leather Rug"); prodList.add(p1);prodList.add(p2);prodList.add(p3); setProductItemsList(productItemsList); } /** * */ private static final long serialVersionUID = -2484559029220494862L; private CopyOnWriteArrayList<ProductItemBean> productItemsList; /** * @return the productItemsList */ public CopyOnWriteArrayList<ProductItemBean> getProductItemsList() { return productItemsList; } /** * @param productItemsList the productItemsList to set */ public void setProductItemsList(CopyOnWriteArrayList<ProductItemBean> productItemsList) { this.productItemsList = productItemsList; } }
[ "kkanaparthi@restorationhardware.com" ]
kkanaparthi@restorationhardware.com
62e7ffad3ad54f19c5c548b002b3679c222af7fd
52790a1859fcc62948a1bfda6baf840f8584e026
/app/src/test/java/com/example/zachheiner/goalapp/ExampleUnitTest.java
a757e57f5e01ddf4d7350a415fe095935df92abc
[]
no_license
zachheiner/GoalApp
6036f80d8c9d9cb407dac959a961612cb7824ab2
b581c1211aba1dce3ef19d7a9fa29d1558df5cda
refs/heads/master
2021-04-27T19:22:49.184888
2018-04-11T19:24:24
2018-04-11T19:24:24
122,357,836
0
0
null
null
null
null
UTF-8
Java
false
false
408
java
package com.example.zachheiner.goalapp; 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() throws Exception { assertEquals(4, 2 + 2); } }
[ "cardpunk1206@yahoo.com" ]
cardpunk1206@yahoo.com
f4e2bb2054cd23f38c898da83e27839736384fd1
f8252c5f77d1a332212036b90581266bed0ec324
/Thinking_in_Java/src/concurrency/Ex01_Runnable.java
ba822f6b7c44d29db7446bbc096c158562ff1abd
[]
no_license
yeqing123/Thinking_in_java
38da1c90e158f6d10291a86e90870d7844c265ac
a5013c6f358824d329872986cfbc07d149126bc5
refs/heads/master
2023-04-11T02:05:49.098992
2021-04-23T10:00:45
2021-04-23T10:00:45
296,249,839
0
0
null
null
null
null
UTF-8
Java
false
false
611
java
package concurrency; class Tasks implements Runnable { private int timeSlices = 0; private static int taskCount = 0; private final int id = taskCount++; public Tasks() { System.out.println("Start task " + id); } public String toString() { return "#" + id + " get " + timeSlices + " time CPU"; } public void run() { while(++timeSlices <= 3) { System.out.println(this); Thread.yield(); } System.out.println("Stop task " + id); } } public class Ex01_Runnable { public static void main(String[] args) { for(int i = 0; i < 5; i++) new Thread(new Tasks()).start(); } }
[ "yeqing_613@163.com" ]
yeqing_613@163.com
129d6051497d5726ff5bfd29abd7faf451a6287e
7b7024790060372ef3d2d7a5ba4a15d899d021c6
/src/siderconcapadatos/tablas/MiModeloTablaCargaHdr.java
a7b3a5609f2343152a702a112f61d6589c6292d7
[]
no_license
maurodim/siderconCapaDeDatos
015aa06308a8f513fd9077748be9089685fa5c2d
1d077fec3f240bbba0c2dcf8512846c5f25be45e
refs/heads/lenovo
2021-07-12T13:15:00.089198
2018-11-24T17:04:57
2018-11-24T17:04:57
10,338,434
0
0
null
2021-07-08T16:56:21
2013-05-28T15:12:08
HTML
UTF-8
Java
false
false
466
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package siderconcapadatos.tablas; import javax.swing.table.DefaultTableModel; /** * * @author Administrador */ public class MiModeloTablaCargaHdr extends DefaultTableModel{ public Class getColumnClass(int colum){ if(colum==4)return Boolean.class; if(colum==6)return Boolean.class; return String.class; } }
[ "mauro@192.168.1.8" ]
mauro@192.168.1.8
eaca4baf98d1d6f258439d509ad5e0210a69cfbf
992b2f508cbdc796b766bfc2a5afd20f6375bb66
/app/src/main/java/com/zhubaokeji/android/view/PictureActity.java
2b0769ecf2b6d6e2bdd1c9b67ae6d585f8b9fea1
[]
no_license
fishone/Zhubaokeji-master-master
61db2a674b5a79979a70a2d66506c71cf9bd7f21
185f3ed1eb2ccd730a8e914c5a7cab45dfe3b71a
refs/heads/master
2021-09-05T12:06:11.736453
2018-01-27T09:47:42
2018-01-27T09:47:42
113,331,652
0
1
null
null
null
null
UTF-8
Java
false
false
5,148
java
package com.zhubaokeji.android.view; import android.app.Activity; import android.app.ProgressDialog; import android.graphics.Color; import android.os.Bundle; import android.view.View; import android.webkit.WebChromeClient; import android.webkit.WebSettings; import android.webkit.WebView; import android.webkit.WebViewClient; import com.lzy.okgo.OkGo; import com.zhubaokeji.android.R; import com.zhubaokeji.android.base.BaseActivity; import com.zhubaokeji.android.utils.NetUtil; import com.zhubaokeji.android.utils.ToastUtil; import com.zhubaokeji.library.TitleBar; import butterknife.ButterKnife; /** * Created by fisho on 2017/7/18. */ public class PictureActity extends BaseActivity{ private WebView webView; private ProgressDialog dialog; private String url; private Activity mContext; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.webview); ButterKnife.bind(this); mContext=this; /** * 设置标题栏 */ boolean isImmersive = true; initTranslucentStatusBar(); final TitleBar titleBar = (TitleBar) findViewById(R.id.webView_title); titleBar.setImmersive(isImmersive); titleBar.setBackgroundColor(Color.parseColor("#02a8f3")); titleBar.setLeftImageResource(R.drawable.ic_arrow_back_black_24dp); titleBar.setLeftTextColor(Color.WHITE); titleBar.setTitleColor(Color.WHITE); titleBar.setSubTitleColor(Color.WHITE); titleBar.setDividerColor(Color.GRAY); titleBar.setActionTextColor(Color.WHITE); titleBar.setTitle("实物图"); titleBar.setLeftClickListener(new View.OnClickListener() { @Override public void onClick(View v) { finish(); } }); url = getIntent().getStringExtra("url"); init(); } @Override protected void onNetworkConnected(NetUtil.NetType type) { if(type== NetUtil.NetType.NONE){ ToastUtil.show(mContext,"网络未连接,请连接网络"); } } private void init() { webView = (WebView) findViewById(R.id.webView); //WebView加载本地资源 // webView.loadUrl("file:///android_asset/example.html"); //WebView加载web资源 webView.loadUrl(url); //覆盖WebView默认通过第三方或者是系统浏览器打开网页的行为,使得网页可以在WebView中打开 webView.setWebViewClient(new WebViewClient(){ @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { //返回值是true的时候是控制网页在WebView中去打开,如果为false调用系统浏览器或第三方浏览器打开 view.loadUrl(url); return true; } //WebViewClient帮助WebView去处理一些页面控制和请求通知 }); //启用支持Javascript WebSettings settings = webView.getSettings(); //支持javascript settings.setJavaScriptEnabled(true); // 设置可以支持缩放 settings.setSupportZoom(true); // 设置出现缩放工具 settings.setBuiltInZoomControls(true); //不显示webview缩放按钮 settings.setDisplayZoomControls(false); //扩大比例的缩放 settings.setUseWideViewPort(true); //自适应屏幕 settings.setLayoutAlgorithm(WebSettings.LayoutAlgorithm.SINGLE_COLUMN); settings.setLoadWithOverviewMode(true); //WebView加载页面优先使用缓存加载 settings.setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK); //页面加载 webView.setWebChromeClient(new WebChromeClient(){ @Override public void onProgressChanged(WebView view, int newProgress) { //newProgress 1-100之间的整数 if (newProgress == 100) { //页面加载完成,关闭ProgressDialog closeDialog(); } else { //网页正在加载,打开ProgressDialog openDialog(newProgress); } } private void openDialog(int newProgress) { if (dialog == null) { dialog = new ProgressDialog(PictureActity.this); dialog.setTitle("正在加载"); dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); dialog.setProgress(newProgress); dialog.setCancelable(true); if(!PictureActity.this.isFinishing()){ dialog.show(); } } else { dialog.setProgress(newProgress); } } private void closeDialog() { if (dialog != null && dialog.isShowing()) { dialog.dismiss(); dialog = null; } } }); } }
[ "fishone520@gmail.com" ]
fishone520@gmail.com
7a27f638c02da1581e610f8274c08c0d9dc38f41
f02c471a75fa178686e148e7f3eb83b8848e5eec
/src/com/epi/RemoveKthLastList.java
796e48b56a81cdc100d0ff56fe3de91f154ea6fe
[]
no_license
thurstonemerson/algorithms
4ccdc64c744554ed2721fc1835b3b6de553212bd
6bb84630ecf1d276018d869c6ef6b4e791de7d9a
refs/heads/master
2020-05-21T23:44:46.477739
2016-10-12T22:45:08
2016-10-12T22:45:08
58,595,444
15
0
null
null
null
null
UTF-8
Java
false
false
1,115
java
// Copyright (c) 2015 Elements of Programming Interviews. All rights reserved. package com.epi; public class RemoveKthLastList { // @include // Assumes L has at least k nodes, deletes the k-th last node in L. public static ListNode<Integer> removeKthLast(ListNode<Integer> L, int k) { ListNode<Integer> dummyHead = new ListNode<>(0, L); ListNode<Integer> first = dummyHead.next; while (k-- > 0) { first = first.next; } ListNode<Integer> second = dummyHead; while (first != null) { second = second.next; first = first.next; } // second points to the (k + 1)-th last node, deletes its successor. second.next = second.next.next; return dummyHead.next; } // @exclude public static void main(String[] args) { ListNode<Integer> L = new ListNode<>(1, new ListNode<>(2, new ListNode<>(3, null))); L = removeKthLast(L, 2); assert(L.data == 1 && L.next.data == 3); L = removeKthLast(L, 2); assert(L.data == 3 && L.next == null); L = removeKthLast(L, 1); assert(L == null); } }
[ "jmt.emerson@gmail.com" ]
jmt.emerson@gmail.com
cb81f2fc57e47d7fbecd763f040b82e0de115687
c81e3fad9ff53bb298647c7bbcf8aa37a2a21fe1
/src/ru/maslov/sort/BubbleAlgorithm.java
58e027349688f31162e804bf4573258a9d146e11
[]
no_license
wolfhound74/algorithms
a3b2c0198d80bc468c231b34ec208e55f8eda40d
8c31dfef2200ecf3bc5501ad40dba1471eda7efc
refs/heads/master
2020-04-08T16:47:10.784997
2019-04-11T06:30:52
2019-04-11T06:30:52
159,535,068
0
0
null
null
null
null
UTF-8
Java
false
false
608
java
package ru.maslov.sort; import java.util.Arrays; public class BubbleAlgorithm extends CommonAlgorithm { public BubbleAlgorithm(int[] arr) { super(arr); } public void execute() { int[] arr = getArr(); boolean exec; do { exec = false; for (int i = 0; i < arr.length - 1; i++) { if (arr[i] > arr[i + 1]) { arr[i] += arr[i + 1] - (arr[i + 1] = arr[i]); exec = true; } } } while (exec); System.out.println(Arrays.toString(arr)); } }
[ "ripper_roo@mail.ru" ]
ripper_roo@mail.ru
ec97d0e298041c1ad4e77455c7443f6bb69e656b
0a9b6bc0fc01b7060c85bc28e00f2970ba7af757
/MVCMiniProject-CURD-Student-MultipleControllers11/src/main/java/com/nt/dao/StudentDAO.java
112546fd9c3849eca146ca5bcab32812d09081fa
[]
no_license
devajdev/Spring-1
da25f6ed22ac15af720638eed841d5a0e70fd3b0
e2e6c238dead03ca7807cbb40ebb09c2027933e6
refs/heads/master
2020-04-17T07:02:47.537129
2019-01-18T05:53:47
2019-01-18T05:53:47
166,351,214
0
0
null
null
null
null
UTF-8
Java
false
false
303
java
package com.nt.dao; import java.util.List; import com.nt.bo.StudentBO; public interface StudentDAO { public List<StudentBO> fetchAllStudents(); public StudentBO fetchStudentBySno(int sno); public int updateStudentbySno(StudentBO bo); public int deleteStudentBySno(int sno); }
[ "devaj04@gmail.com" ]
devaj04@gmail.com
76253a093e35dbde90339984b52be22aaf7ddb8f
e53ae0c39e3260c5778cb4d6f78604daaf881bf9
/app/src/main/java/com/kuliahmobile/latihan/newActivity.java
57477d24a40138e4d7081f78162fc969c04efcd2
[]
no_license
gamawis/pemrogramanberbasismobile_activity_1
c81abf369928f518272843d2402c7aa04de44b19
e82ee3ead235ca668f3effefbcf5196d9396cf8f
refs/heads/master
2020-05-07T17:03:41.335709
2019-04-11T02:35:03
2019-04-11T02:35:03
180,712,021
0
0
null
null
null
null
UTF-8
Java
false
false
335
java
package com.kuliahmobile.latihan; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class newActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_new); } }
[ "gamadeveloper1@gmail.com" ]
gamadeveloper1@gmail.com
b345d3928d935094db9138e6dbc0ce05a2315ba6
4cc9de4dda3267e54fa2c8c1f3fbfa14ef2613a3
/app/build/generated/source/r/debug/android/support/coreui/R.java
2e388abbada7204812142113db5d5d9eb775936b
[]
no_license
KarmaEstudio/HawkersWoocommerce
1944167bf5dcd14ef6f95259202704c0f7cbca0f
3a963ef167e034219e7fc446dec4b6ca54f8584a
refs/heads/master
2020-03-26T21:47:11.791257
2018-08-20T11:32:52
2018-08-20T11:45:17
145,408,487
0
0
null
null
null
null
UTF-8
Java
false
false
9,862
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package android.support.coreui; public final class R { public static final class attr { public static final int coordinatorLayoutStyle = 0x7f04009d; public static final int font = 0x7f0400d6; public static final int fontProviderAuthority = 0x7f0400d8; public static final int fontProviderCerts = 0x7f0400d9; public static final int fontProviderFetchStrategy = 0x7f0400da; public static final int fontProviderFetchTimeout = 0x7f0400db; public static final int fontProviderPackage = 0x7f0400dc; public static final int fontProviderQuery = 0x7f0400dd; public static final int fontStyle = 0x7f0400de; public static final int fontWeight = 0x7f0400df; public static final int keylines = 0x7f040102; public static final int layout_anchor = 0x7f040109; public static final int layout_anchorGravity = 0x7f04010a; public static final int layout_behavior = 0x7f04010b; public static final int layout_dodgeInsetEdges = 0x7f04010e; public static final int layout_insetEdge = 0x7f04010f; public static final int layout_keyline = 0x7f040110; public static final int statusBarBackground = 0x7f040199; } public static final class bool { public static final int abc_action_bar_embed_tabs = 0x7f050000; } public static final class color { public static final int notification_action_color_filter = 0x7f06007f; public static final int notification_icon_bg_color = 0x7f060080; public static final int ripple_material_light = 0x7f060091; public static final int secondary_text_default_material_light = 0x7f060093; } public static final class dimen { public static final int compat_button_inset_horizontal_material = 0x7f070070; public static final int compat_button_inset_vertical_material = 0x7f070071; public static final int compat_button_padding_horizontal_material = 0x7f070072; public static final int compat_button_padding_vertical_material = 0x7f070073; public static final int compat_control_corner_material = 0x7f070074; public static final int notification_action_icon_size = 0x7f0700b3; public static final int notification_action_text_size = 0x7f0700b4; public static final int notification_big_circle_margin = 0x7f0700b5; public static final int notification_content_margin_start = 0x7f0700b6; public static final int notification_large_icon_height = 0x7f0700b7; public static final int notification_large_icon_width = 0x7f0700b8; public static final int notification_main_column_padding_top = 0x7f0700b9; public static final int notification_media_narrow_margin = 0x7f0700ba; public static final int notification_right_icon_size = 0x7f0700bb; public static final int notification_right_side_padding_top = 0x7f0700bc; public static final int notification_small_icon_background_padding = 0x7f0700bd; public static final int notification_small_icon_size_as_large = 0x7f0700be; public static final int notification_subtext_size = 0x7f0700bf; public static final int notification_top_pad = 0x7f0700c0; public static final int notification_top_pad_large_text = 0x7f0700c1; } public static final class drawable { public static final int notification_action_background = 0x7f0800e9; public static final int notification_bg = 0x7f0800ea; public static final int notification_bg_low = 0x7f0800eb; public static final int notification_bg_low_normal = 0x7f0800ec; public static final int notification_bg_low_pressed = 0x7f0800ed; public static final int notification_bg_normal = 0x7f0800ee; public static final int notification_bg_normal_pressed = 0x7f0800ef; public static final int notification_icon_background = 0x7f0800f0; public static final int notification_template_icon_bg = 0x7f0800f1; public static final int notification_template_icon_low_bg = 0x7f0800f2; public static final int notification_tile_bg = 0x7f0800f3; public static final int notify_panel_notification_icon_bg = 0x7f0800f4; } public static final class id { public static final int action_container = 0x7f090026; public static final int action_divider = 0x7f090028; public static final int action_image = 0x7f090029; public static final int action_text = 0x7f09002f; public static final int actions = 0x7f090030; public static final int async = 0x7f090042; public static final int blocking = 0x7f09005b; public static final int bottom = 0x7f09005c; public static final int chronometer = 0x7f0900a5; public static final int end = 0x7f0900fe; public static final int forever = 0x7f090116; public static final int icon = 0x7f090129; public static final int icon_group = 0x7f09012b; public static final int info = 0x7f090130; public static final int italic = 0x7f090133; public static final int left = 0x7f09013d; public static final int line1 = 0x7f09013f; public static final int line3 = 0x7f090140; public static final int none = 0x7f090171; public static final int normal = 0x7f090172; public static final int notification_background = 0x7f090173; public static final int notification_main_column = 0x7f090174; public static final int notification_main_column_container = 0x7f090175; public static final int right = 0x7f0901c9; public static final int right_icon = 0x7f0901ca; public static final int right_side = 0x7f0901cb; public static final int start = 0x7f09020d; public static final int tag_transition_group = 0x7f09021c; public static final int text = 0x7f09021f; public static final int text2 = 0x7f090220; public static final int time = 0x7f090226; public static final int title = 0x7f090227; public static final int top = 0x7f09022c; } public static final class integer { public static final int status_bar_notification_info_maxnum = 0x7f0a000a; } public static final class layout { public static final int notification_action = 0x7f0b0080; public static final int notification_action_tombstone = 0x7f0b0081; public static final int notification_template_custom_big = 0x7f0b0088; public static final int notification_template_icon_group = 0x7f0b0089; public static final int notification_template_part_chronometer = 0x7f0b008d; public static final int notification_template_part_time = 0x7f0b008e; } public static final class string { public static final int status_bar_notification_info_overflow = 0x7f0f013a; } public static final class style { public static final int TextAppearance_Compat_Notification = 0x7f10012e; public static final int TextAppearance_Compat_Notification_Info = 0x7f10012f; public static final int TextAppearance_Compat_Notification_Line2 = 0x7f100131; public static final int TextAppearance_Compat_Notification_Time = 0x7f100134; public static final int TextAppearance_Compat_Notification_Title = 0x7f100136; public static final int Widget_Compat_NotificationActionContainer = 0x7f1001ad; public static final int Widget_Compat_NotificationActionText = 0x7f1001ae; public static final int Widget_Support_CoordinatorLayout = 0x7f1001ba; } public static final class styleable { public static final int[] CoordinatorLayout = { 0x7f040102, 0x7f040199 }; public static final int CoordinatorLayout_keylines = 0; public static final int CoordinatorLayout_statusBarBackground = 1; public static final int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f040109, 0x7f04010a, 0x7f04010b, 0x7f04010e, 0x7f04010f, 0x7f040110 }; public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; public static final int CoordinatorLayout_Layout_layout_anchor = 1; public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; public static final int CoordinatorLayout_Layout_layout_behavior = 3; public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; public static final int CoordinatorLayout_Layout_layout_keyline = 6; public static final int[] FontFamily = { 0x7f0400d8, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd }; public static final int FontFamily_fontProviderAuthority = 0; public static final int FontFamily_fontProviderCerts = 1; public static final int FontFamily_fontProviderFetchStrategy = 2; public static final int FontFamily_fontProviderFetchTimeout = 3; public static final int FontFamily_fontProviderPackage = 4; public static final int FontFamily_fontProviderQuery = 5; public static final int[] FontFamilyFont = { 0x01010532, 0x01010533, 0x0101053f, 0x7f0400d6, 0x7f0400de, 0x7f0400df }; public static final int FontFamilyFont_android_font = 0; public static final int FontFamilyFont_android_fontWeight = 1; public static final int FontFamilyFont_android_fontStyle = 2; public static final int FontFamilyFont_font = 3; public static final int FontFamilyFont_fontStyle = 4; public static final int FontFamilyFont_fontWeight = 5; } }
[ "diegoperezs@gmail.com" ]
diegoperezs@gmail.com
4773dd9c3c498e6d2f9bc1efd7cb92f4f85e5447
c53afef928ffafbc37f45d6580234f6135f4769f
/src/main/java/src/completed/MaxAreaOfIsland.java
d965febcac5fcf9203ae2f9097af301018d2b196
[]
no_license
1031602090/leetcode
6362ff16a5a7491b8491377612222c62e0deb2f8
204081cf15a3a67b71fdde9d4ceae90ef123e00f
refs/heads/master
2021-07-07T20:12:02.254719
2020-07-23T15:20:56
2020-07-23T15:20:56
141,014,071
3
0
null
null
null
null
UTF-8
Java
false
false
1,703
java
package completed; public class MaxAreaOfIsland { public static void main(String[] args) { int i = new MaxAreaOfIsland().maxAreaOfIsland(new int[][]{ {0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0}, {0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0}, {0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0}} ); System.out.println(i); } public int maxAreaOfIsland(int[][] grid) { int ans = 0; boolean[][] visited = new boolean[grid.length][]; for (int i = 0; i < visited.length; i++) { visited[i] = new boolean[grid[i].length]; } for (int i = 0; i < grid.length; i++) { for (int j = 0; j < grid[i].length; j++) { if (!visited[i][j] && grid[i][j] == 1) { ans = Math.max(ans, dfs(i, j, grid, visited)); } } } return ans; } private int dfs(int i, int j, int[][] grid, boolean[][] visited) { System.out.println(i + ":" + j); if (i < 0 || j < 0 || i >= grid.length || j >= grid[i].length || visited[i][j] || grid[i][j] == 0) { return 0; } visited[i][j] = true; return dfs(i + 1, j, grid, visited) + dfs(i - 1, j, grid, visited) + dfs(i, j + 1, grid, visited) + dfs(i, j - 1, grid, visited) + 1; } }
[ "z16602915832@starship.org" ]
z16602915832@starship.org
4e2a8e601bb8d5271b26f0dbba03d2aaa857f7c1
8004a1e8b43223c61a37a427ad8937769fe0ba0b
/providers/jdbc/shedlock-provider-jdbc-template/src/test/java/net/javacrumbs/shedlock/provider/jdbctemplate/MsSqlServerJdbcTemplateLockProviderIntegrationTest.java
e56744e676062feab85b8ea0db840b33ea8ddf23
[ "Apache-2.0" ]
permissive
candrews/ShedLock
e70fac7def877477e36dbda4f3966da36180cdf7
5a4dc62c76b66a7bb94b2f3d476989c37c833aa1
refs/heads/master
2023-04-13T05:14:09.858419
2020-07-15T16:24:12
2020-07-15T16:24:31
283,904,065
0
0
Apache-2.0
2023-04-04T00:15:53
2020-07-31T00:22:58
null
UTF-8
Java
false
false
1,302
java
/** * Copyright 2009-2020 the original author or authors. * * 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 net.javacrumbs.shedlock.provider.jdbctemplate; import net.javacrumbs.shedlock.test.support.jdbc.MsSqlServerConfig; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; public class MsSqlServerJdbcTemplateLockProviderIntegrationTest extends AbstractJdbcTemplateLockProviderIntegrationTest { private static final MsSqlServerConfig dbConfig = new MsSqlServerConfig(); public MsSqlServerJdbcTemplateLockProviderIntegrationTest() { super(dbConfig); } @BeforeAll public static void startDb() { dbConfig.startDb(); } @AfterAll public static void shutdownDb() { dbConfig.shutdownDb(); } }
[ "lukas@krecan.net" ]
lukas@krecan.net