repo_name stringlengths 5 108 | path stringlengths 6 333 | size stringlengths 1 6 | content stringlengths 4 977k | license stringclasses 15
values |
|---|---|---|---|---|
XDrake99/WarpPI | core/src/main/java/it/cavallium/warppi/math/functions/Power.java | 1844 | package it.cavallium.warppi.math.functions;
import it.cavallium.warppi.gui.expression.blocks.Block;
import it.cavallium.warppi.gui.expression.blocks.BlockContainer;
import it.cavallium.warppi.gui.expression.blocks.BlockPower;
import it.cavallium.warppi.math.Function;
import it.cavallium.warppi.math.FunctionOperator;
import it.cavallium.warppi.math.MathContext;
import it.cavallium.warppi.util.Error;
import it.unimi.dsi.fastutil.objects.ObjectArrayList;
public class Power extends FunctionOperator {
public Power(final MathContext root, final Function value1, final Function value2) {
super(root, value1, value2);
}
@Override
public boolean equals(final Object o) {
if (o instanceof Power) {
final FunctionOperator f = (FunctionOperator) o;
return parameter1.equals(f.getParameter1()) && parameter2.equals(f.getParameter2());
}
return false;
}
@Override
public Power clone() {
return new Power(mathContext, parameter1 == null ? null : parameter1.clone(), parameter2 == null ? null : parameter2.clone());
}
@Override
public Power clone(MathContext c) {
return new Power(c, parameter1 == null ? null : parameter1.clone(c), parameter2 == null ? null : parameter2.clone(c));
}
@Override
public ObjectArrayList<Block> toBlock(final MathContext context) throws Error {
final ObjectArrayList<Block> result = new ObjectArrayList<>();
final ObjectArrayList<Block> sub1 = getParameter1().toBlock(context);
final ObjectArrayList<Block> sub2 = getParameter2().toBlock(context);
final BlockPower bp = new BlockPower();
final BlockContainer ec = bp.getExponentContainer();
result.addAll(sub1);
for (final Block b : sub2) {
ec.appendBlockUnsafe(b);
}
ec.recomputeDimensions();
bp.recomputeDimensions();
result.add(bp);
return result;
}
}
| mit |
gynsolomon/Singularities | app/src/main/java/me/solomon/singularities/MainActivity.java | 4965 | package me.solomon.singularities;
import android.app.Activity;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.content.Context;
import android.os.Build;
import android.os.Bundle;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.support.v4.widget.DrawerLayout;
import android.widget.ArrayAdapter;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity
implements NavigationDrawerFragment.NavigationDrawerCallbacks {
/**
* Fragment managing the behaviors, interactions and presentation of the navigation drawer.
*/
private NavigationDrawerFragment mNavigationDrawerFragment;
/**
* Used to store the last screen title. For use in {@link #restoreActionBar()}.
*/
private CharSequence mTitle;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mNavigationDrawerFragment = (NavigationDrawerFragment)
getSupportFragmentManager().findFragmentById(R.id.navigation_drawer);
mTitle = getTitle();
// Set up the drawer.
mNavigationDrawerFragment.setUp(
R.id.navigation_drawer,
(DrawerLayout) findViewById(R.id.drawer_layout));
}
@Override
public void onNavigationDrawerItemSelected(int position) {
// update the main content by replacing fragments
FragmentManager fragmentManager = getSupportFragmentManager();
fragmentManager.beginTransaction()
.replace(R.id.container, PlaceholderFragment.newInstance(position + 1))
.commit();
}
public void onSectionAttached(int number) {
switch (number) {
case 1:
mTitle = getString(R.string.title_section1);
break;
case 2:
mTitle = getString(R.string.title_section2);
break;
case 3:
mTitle = getString(R.string.title_section3);
break;
}
}
public void restoreActionBar() {
ActionBar actionBar = getSupportActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setTitle(mTitle);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
if (!mNavigationDrawerFragment.isDrawerOpen()) {
// Only show items in the action bar relevant to this screen
// if the drawer is not showing. Otherwise, let the drawer
// decide what to show in the action bar.
getMenuInflater().inflate(R.menu.main, menu);
restoreActionBar();
return true;
}
return super.onCreateOptionsMenu(menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* A placeholder fragment containing a simple view.
*/
public static class PlaceholderFragment extends Fragment {
/**
* The fragment argument representing the section number for this
* fragment.
*/
private static final String ARG_SECTION_NUMBER = "section_number";
/**
* Returns a new instance of this fragment for the given section
* number.
*/
public static PlaceholderFragment newInstance(int sectionNumber) {
PlaceholderFragment fragment = new PlaceholderFragment();
Bundle args = new Bundle();
args.putInt(ARG_SECTION_NUMBER, sectionNumber);
fragment.setArguments(args);
return fragment;
}
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
return rootView;
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
((MainActivity) activity).onSectionAttached(
getArguments().getInt(ARG_SECTION_NUMBER));
}
}
}
| mit |
Go-Va/lavarun-plugin | src/main/java/me/gong/lavarun/plugin/game/logic/PointsMinerHandler.java | 6001 | package me.gong.lavarun.plugin.game.logic;
import me.gong.lavarun.plugin.InManager;
import me.gong.lavarun.plugin.Main;
import me.gong.lavarun.plugin.arena.Arena;
import me.gong.lavarun.plugin.game.GameManager;
import me.gong.lavarun.plugin.game.events.PreventBreakEvent;
import me.gong.lavarun.plugin.region.Region;
import me.gong.lavarun.plugin.shop.ShopManager;
import me.gong.lavarun.plugin.timer.Timer;
import me.gong.lavarun.plugin.util.AxisAlignedBB;
import org.bukkit.*;
import org.bukkit.block.Block;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.block.LeavesDecayEvent;
import org.bukkit.material.Leaves;
import java.util.*;
import java.util.function.Predicate;
import java.util.stream.Collectors;
public class PointsMinerHandler implements Listener {
public static final int ADDED_POINTS = 45;
public static final long RUN_EVERY = 1000 * 60 * 3;
private Block currentBlock;
private long lastSpawn;
private boolean blockExists;
@Timer(runEvery = 20 * 50, millisTime = true, pool = false)
public void createBlock() {
GameManager gm = InManager.get().getInstance(GameManager.class);
if(blockExists) {
currentBlock.getWorld().spawnParticle(Particle.VILLAGER_HAPPY, currentBlock.getLocation().add(0.5, 0.5, 0.5), 6, 0.5, 0.5, 0.5, 0.3);
lastSpawn = System.currentTimeMillis();
}
if(!blockExists && gm.isInGame() && System.currentTimeMillis() - lastSpawn >= RUN_EVERY) {
Arena c = gm.getCurrentArena();
World w = c.getPlayArea().getWorld();
Location min = c.getLavaRegion().getBoxes().get(0).getMinimum(w).clone(),
max = c.getPlayArea().getBoxes().get(0).getMaximum(w);
Region spawnable = new Region(new AxisAlignedBB(min, max), w.getName());
Region outer = new Region(new AxisAlignedBB(min.clone().add(-1, -1, -1), max.clone().add(1, 1, 1)), w.getName());
Predicate<Location> availablePred = l -> {
int maxY = -1;
for(int at = min.getBlockY(); at <= max.getBlockY(); at++) {
if(w.getBlockAt(l.getBlockX(), at, l.getBlockZ()).getType() == Material.BARRIER) {
maxY = at;
break;
}
}
return (l.getBlock().getType() == Material.AIR || l.getBlock().getType() == Material.LAVA) && l.getY() <= maxY;
};
List<Location> all = spawnable.getBlocks();
Collections.shuffle(all, new Random());
List<Location> available = all.stream().filter(availablePred).collect(Collectors.toList()),
unavailable = all.stream().filter(l -> l.getBlock().getType() == Material.STAINED_GLASS).collect(Collectors.toList());
HashMap<Location, Long> values = new HashMap<>();
available.forEach(l -> {
long ret = 0;
for (Location aa : unavailable) {
Location availableLoc = l.clone(), nonAvailable = aa.clone();
double dist = nonAvailable.distanceSquared(availableLoc) - (nonAvailable.distanceSquared(availableLoc) / 2);
for(Player p : c.getPlaying(false)) dist += p.getLocation().distanceSquared(availableLoc);
ret += dist;
}
for(Location outter : outer.getBlocks()) {
if(outter.getX() == min.getX() || outter.getX() == max.getX() ||
outter.getY() == min.getY() || outter.getY() == max.getY() ||
outter.getZ() == min.getZ() || outter.getZ() == max.getZ()) {
ret += l.distanceSquared(outter);
}
}
values.put(l, ret);
});
List<Location> spawnables = values.entrySet().stream()
.sorted((v1, v2) -> -Long.compare(v1.getValue(), v2.getValue()))
.map(Map.Entry::getKey).collect(Collectors.toList()), use = new ArrayList<>();
final int totalPercent = 10;
for(int i = 0; i < spawnables.size(); i++) {
double percent = ((i + 1) * 1.0 / spawnables.size() * 1.0) * 100;
if(percent <= totalPercent) use.add(spawnables.get(i));
}
lastSpawn = System.currentTimeMillis();
currentBlock = spawnables.get(new Random().nextInt(use.size())).getBlock();
Bukkit.getScheduler().runTask(InManager.get().getInstance(Main.class), () -> {
currentBlock.setType(Material.LEAVES);
Leaves l = new Leaves(Material.LEAVES);
l.setDecayable(false);
currentBlock.setData(l.getData());
blockExists = true;
});
}
}
@EventHandler
public void onBreak(PreventBreakEvent ev) {
GameManager gm = InManager.get().getInstance(GameManager.class);
if(blockExists && gm.isInGame() && ev.getBlock().getLocation().equals(currentBlock.getLocation())) {
ev.setCancelled(true);
if(!ev.isBreak()) return;
ShopManager m = InManager.get().getInstance(ShopManager.class);
int points = Math.min(ShopManager.MAXIMUM_POINTS, m.getPoints(ev.getPlayer()) + ADDED_POINTS);
m.setPoints(ev.getPlayer(), points);
ev.getPlayer().playSound(ev.getPlayer().getLocation(), Sound.ENTITY_VILLAGER_YES, 2.0f, 1.0f);
blockExists = false;
Bukkit.getScheduler().runTask(InManager.get().getInstance(Main.class), this::resetBlock);
}
}
public void resetBlock() {
if(blockExists) {
GameManager gm = InManager.get().getInstance(GameManager.class);
gm.handleBreak(null, false, currentBlock.getLocation());
blockExists = false;
}
}
}
| mit |
munificent/magpie | src/com/stuffwithstuff/magpie/intrinsic/ClassInit.java | 2867 | package com.stuffwithstuff.magpie.intrinsic;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import com.stuffwithstuff.magpie.ast.Expr;
import com.stuffwithstuff.magpie.ast.pattern.Pattern;
import com.stuffwithstuff.magpie.interpreter.Callable;
import com.stuffwithstuff.magpie.interpreter.ClassObj;
import com.stuffwithstuff.magpie.interpreter.Context;
import com.stuffwithstuff.magpie.interpreter.FieldObj;
import com.stuffwithstuff.magpie.interpreter.Obj;
import com.stuffwithstuff.magpie.interpreter.Scope;
/**
* Built-in callable that initializes an instance of a class from the given
* record of fields and parent class initializers.
*/
public class ClassInit implements Callable {
public ClassInit(ClassObj classObj, Scope closure) {
mClass = classObj;
mClosure = closure;
}
@Override
public Obj invoke(Context context, Obj arg) {
// We don't care about the receiver.
arg = arg.getField(1);
Obj obj = context.getInterpreter().getConstructingObject();
// Initialize the parent classes from the record.
for (ClassObj parent : mClass.getParents()) {
Obj value = arg.getField(parent.getName());
if (value != null) {
context.getInterpreter().initializeNewObject(context, parent, value);
}
}
// Initialize the fields from the record.
for (Entry<String, FieldObj> field : mClass.getFieldDefinitions().entrySet()) {
// Assign it from the record.
Obj value = arg.getField(field.getKey());
if (value != null) {
obj.setField(field.getKey(), arg.getField(field.getKey()));
}
}
// Note that we've successfully reached the canonical initializer.
context.getInterpreter().finishInitialization();
return obj;
}
@Override
public Pattern getPattern() {
// The receiver should be the class object itself.
Pattern receiver = Pattern.value(Expr.name(mClass.getName()));
// The argument should be a record with fields for each declared field
// in the class.
Map<String, Pattern> fields = new HashMap<String, Pattern>();
for (Entry<String, FieldObj> field : mClass.getFieldDefinitions().entrySet()) {
// Only care about fields that don't have initializers.
if (field.getValue().getInitializer() == null) {
fields.put(field.getKey(), field.getValue().getPattern());
}
}
Pattern argument = Pattern.record(fields);
return Pattern.record(receiver, argument);
}
@Override
public Scope getClosure() {
return mClosure;
}
@Override
public String getDoc() {
return "Canonical initializer for class " + mClass.getName() + ".";
}
@Override
public String toString() {
return mClass.getName() + " init(" + getPattern() + ")";
}
private final ClassObj mClass;
private final Scope mClosure;
}
| mit |
den0minat0r/gotthard | src/main/java/org/denominator/gotthard/time/Weekday.java | 620 | package org.denominator.gotthard.time;
import java.util.Calendar;
public enum Weekday {
Mon(Calendar.MONDAY), Tue(Calendar.TUESDAY), Wed(Calendar.WEDNESDAY), Thu(Calendar.THURSDAY), Fri(Calendar.FRIDAY), Sat(Calendar.SATURDAY), Sun(Calendar.SUNDAY);
private final int index;
Weekday(int index) {
this.index = index;
}
public int index() {
return index;
}
public static Weekday valueOf(int index) {
for (Weekday weekday : values()) {
if (weekday.index() == index) {
return weekday;
}
}
return null;
}
}
| mit |
MarceloKrieger/equipemmr | src/intermediario/MainExercicio00.java | 375 | package intermediario;
import java.util.Scanner;
public class MainExercicio00 {
public static void main(String[] args) {
Scanner teclado = new Scanner(System.in);
Exercicio00 criptografia = new Exercicio00();
System.out.print("Insira um nome: ");
criptografia.setFrase(teclado.nextLine());
System.out.print(criptografia.getAUXILIAR());
}
}
| mit |
ShadowLordAlpha/Night-Raven-Engine | Iris/src/main/java/NioExample.java | 20641 |
import java.awt.BorderLayout;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;
import java.nio.charset.CharacterCodingException;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.text.ParseException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JFormattedTextField;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.SwingUtilities;
import javax.swing.SwingWorker;
/**
* <p>This is a sample app to show some ways to interact with the {@link TcpServer}.</p>
*
* <p>This code is released into the Public Domain.
* Since this is Public Domain, you don't need to worry about
* licensing, and you can simply copy this TcpServer.java file
* to your own package and use it as you like. Enjoy.
* Please consider leaving the following statement here in this code:</p>
*
* <p><em>This <tt>TcpServer</tt> class was copied to this project from its source as
* found at <a href="http://iharder.net" target="_blank">iHarder.net</a>.</em></p>
*
* @author Robert Harder
* @author rharder@users.sourceforge.net
* @version 0.1
* @see TcpServer
* @see TcpServer.Listener
* @see TcpServer.Event
*/
public class NioExample extends javax.swing.JFrame implements NioServer.Listener {
private final static long serialVersionUID = 1;
private int tcpCtr = 1;
private int udpCtr = 1;
private Map<SelectionKey,TcpWorker> tcpWorkers = new HashMap<SelectionKey,TcpWorker>();
private Charset charset = Charset.forName("US-ASCII");
private CharsetDecoder decoder = charset.newDecoder();
/** Creates new form TcpExample */
public NioExample() {
initComponents();
myInitComponents();
}
private void myInitComponents(){
NioServer.setLoggingLevel(Level.ALL);
//this.tcpServer.setExecutor( Executors.newCachedThreadPool() );
this.nioServer.addPropertyChangeListener(new PropertyChangeListener() {
public void propertyChange(PropertyChangeEvent evt) {
final String prop = evt.getPropertyName();
final Object oldVal = evt.getOldValue();
final Object newVal = evt.getNewValue();
System.out.println("Property: " + prop + ", Old: " + oldVal + ", New: " + newVal );
if( NioServer.STATE_PROP.equals( prop ) ){
final NioServer.State state = (NioServer.State)newVal;
SwingUtilities.invokeLater( new Runnable() {
public void run() {
switch( state ){
case STARTING:
stateLabel.setText( "Starting" );
startStopButton.setEnabled( false );
break;
case STARTED:
stateLabel.setText( "Started" );
startStopButton.setText( "Stop" );
startStopButton.setEnabled( true );
break;
case STOPPING:
stateLabel.setText( "Stopping" );
startStopButton.setEnabled( false );
break;
case STOPPED:
stateLabel.setText( "Stopped" );
startStopButton.setText( "Start" );
startStopButton.setEnabled( true );
break;
default:
assert false : state;
break;
} // end switch
} // end run
});
}
if( NioServer.SINGLE_TCP_PORT_PROP.equals( prop ) ||
NioServer.SINGLE_UDP_PORT_PROP.equals( prop )){
SwingUtilities.invokeLater( new Runnable() {
public void run() {
portField.setValue( newVal );
} // end run
}); // end swing utilities
} // end if: port
if( NioServer.LAST_EXCEPTION_PROP.equals( prop ) ){
Throwable t = (Throwable)newVal;
JOptionPane.showConfirmDialog(null, t.getMessage(), "Server Error", JOptionPane.OK_OPTION, JOptionPane.ERROR_MESSAGE );
}
} // end prop change
});
this.nioServer.addNioServerListener(this);
this.nioServer.fireProperties();
}
/** 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.
*/
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
nioServer = new NioServer();
jLabel1 = new javax.swing.JLabel();
portField = new javax.swing.JFormattedTextField(0);
jPanel1 = new javax.swing.JPanel();
tabbedPane = new javax.swing.JTabbedPane();
jLabel3 = new javax.swing.JLabel();
stateLabel = new javax.swing.JLabel();
startStopButton = new javax.swing.JButton();
jButton1 = new javax.swing.JButton();
tcpIndicator = new IndicatorLabel();
udpIndicator = new IndicatorLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setTitle("Nio Server Example");
jLabel1.setText("Port (TCP and UDP):");
portField.setColumns(12);
portField.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
portFieldActionPerformed(evt);
}
});
portField.addFocusListener(new java.awt.event.FocusAdapter() {
public void focusLost(java.awt.event.FocusEvent evt) {
portFieldFocusLost(evt);
}
});
jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder("Incoming"));
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addContainerGap()
.addComponent(tabbedPane, javax.swing.GroupLayout.DEFAULT_SIZE, 510, Short.MAX_VALUE)
.addContainerGap())
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addComponent(tabbedPane, javax.swing.GroupLayout.DEFAULT_SIZE, 257, Short.MAX_VALUE)
.addContainerGap())
);
jLabel3.setText("State:");
stateLabel.setText("Unknown");
startStopButton.setText("Start/Stop");
startStopButton.setEnabled(false);
startStopButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
startStopButtonActionPerformed(evt);
}
});
jButton1.setText("Stress");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
tcpIndicator.setText("TCP");
udpIndicator.setText("UDP");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel1)
.addGap(18, 18, 18)
.addComponent(portField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel3)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(stateLabel))
.addGroup(layout.createSequentialGroup()
.addComponent(startStopButton)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jButton1)
.addGap(18, 18, 18)
.addComponent(tcpIndicator, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(10, 10, 10)
.addComponent(udpIndicator, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1)
.addComponent(portField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3)
.addComponent(stateLabel))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(startStopButton)
.addComponent(jButton1)))
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(tcpIndicator, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(udpIndicator, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))))
.addGap(6, 6, 6)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addContainerGap())
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void portFieldActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_portFieldActionPerformed
try {
JFormattedTextField field = (JFormattedTextField) evt.getSource();
field.commitEdit();//GEN-LAST:event_portFieldActionPerformed
int port = (Integer)field.getValue();
this.nioServer.setSingleTcpPort(port).setSingleUdpPort(port);
} catch (ParseException ex) {
Logger.getLogger(TcpExample.class.getName()).log(Level.SEVERE, null, ex);
}
}
private void startStopButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_startStopButtonActionPerformed
NioServer.State state = this.nioServer.getState();
switch( state ){
case STOPPED:
this.nioServer.start();
break;
case STARTED:
this.nioServer.stop();
break;
default:
System.err.println("Shouldn't see this. State: " + state );
break;
}
}//GEN-LAST:event_startStopButtonActionPerformed
private void portFieldFocusLost(java.awt.event.FocusEvent evt) {//GEN-FIRST:event_portFieldFocusLost
try {
JFormattedTextField field = (JFormattedTextField) evt.getSource();
field.commitEdit();
int port = (Integer)field.getValue();
this.nioServer.setSingleTcpPort(port).setSingleUdpPort(port);
} catch (ParseException ex) {
Logger.getLogger(TcpExample.class.getName()).log(Level.SEVERE, null, ex);
}
}//GEN-LAST:event_portFieldFocusLost
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
//this.incomingArea.setText( this.incomingArea.getText() +
// "(Stressing the server by starting and stopping it randomly " +
// "with 100 threads, 100 times over ~10 seconds. Look for thrown " +
// "Exceptions in console.)\n" );
for( int i = 0; i < 100; i++ ){
Thread t = new Thread( new Runnable() {
public void run() {
for( int i = 0; i < 100; i++ ){
double d = Math.random();
if( d < .5 ){
nioServer.start();
} else {
nioServer.stop();
}
try{
Thread.sleep( (int)(Math.random()*100) );
} catch( InterruptedException exc ){
exc.printStackTrace();
} // end catch
} // end for
} // end runnable
}); // end thread
t.start();
}
}//GEN-LAST:event_jButton1ActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new NioExample().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel3;
private javax.swing.JPanel jPanel1;
private NioServer nioServer;
private javax.swing.JFormattedTextField portField;
private javax.swing.JButton startStopButton;
private javax.swing.JLabel stateLabel;
private javax.swing.JTabbedPane tabbedPane;
private IndicatorLabel tcpIndicator;
private IndicatorLabel udpIndicator;
// End of variables declaration//GEN-END:variables
public void newConnectionReceived(final NioServer.Event evt) {
this.tcpIndicator.indicate(); // New incoming connection: flash indicator at user
final JPanel panel = new JPanel( new BorderLayout() ); // Add special place to write the text
final JScrollPane pane = new JScrollPane();
final JTextArea area = new JTextArea();
final int count = tcpCtr++;
TcpWorker tw = new TcpWorker(area);
this.tcpWorkers.put(evt.getKey(), tw);
pane.setViewportView(area);
SwingUtilities.invokeLater( new Runnable(){
public void run(){
panel.add( pane, BorderLayout.CENTER );
tabbedPane.add("TCP "+count, panel);
} // end run
});
}
public void tcpDataReceived(NioServer.Event evt) {
ByteBuffer inBuff = evt.getInputBuffer();
ByteBuffer outBuff = evt.getOutputBuffer();
String s = null;
inBuff.mark();
try {
s = this.decoder.reset().decode(inBuff).toString();
} catch (CharacterCodingException ex) {
Logger.getLogger(NioExample.class.getName()).log(Level.SEVERE, null, ex);
}
// Uncomment these lines to echo
//inBuff.reset();
//outBuff.clear();
//outBuff.put(inBuff).flip();
this.tcpIndicator.indicate(); // New incoming connection: flash indicator at user
this.tcpWorkers.get(evt.getKey()).textReceived(s);
}
public void udpDataReceived(NioServer.Event evt) {
String s = null;
try {
s = this.decoder.reset().decode(evt.getInputBuffer()).toString();
} catch (CharacterCodingException ex) {
Logger.getLogger(NioExample.class.getName()).log(Level.SEVERE, null, ex);
}
this.udpIndicator.indicate(); // New incoming connection: flash indicator at user
final JPanel panel = new JPanel( new BorderLayout() ); // Add special place to write the text
final JScrollPane pane = new JScrollPane();
final JTextArea area = new JTextArea(s);
final int count = udpCtr++;
pane.setViewportView(area);
SwingUtilities.invokeLater( new Runnable(){
public void run(){
panel.add( pane, BorderLayout.CENTER );
tabbedPane.add("UDP "+count, panel);
} // end run
});
}
public void connectionClosed(NioServer.Event evt) {
if( evt.isTcp() ){
this.tcpWorkers.remove(evt.getKey()).execute();
}
}
public void tcpReadyToWrite(NioServer.Event evt) {}
// Process the long-lived connection on another thread
// so that we can immediately return control to the server
// and wait for another connection while this one persists.
// Ordinary servers would not user a SwingWorker since they
// would not be tying themselves to the Swing GUI.
private class TcpWorker extends SwingWorker<Void,String> {
//sw = new SwingWorker<Object,String>() {
private JTextArea area;
private TcpWorker(JTextArea area){
this.area = area;
}
@Override
protected Void doInBackground() throws Exception { return null; }
/**
* Even if I'm not running the SwingWorker, I can still
* use it to queue up work that is published to process
* when convenient on the event thread. Pretty handy, eh?
* @param s
*/
public void textReceived( String s ){
publish(s);
}
@Override
protected void process( List<String> chunks ){ // Queued up published byte arrays
StringBuilder sb = new StringBuilder(); // Put together into one string
for( String s: chunks ){
sb.append(s);
} // end for: each string
area.setText( area.getText() + sb ); // Add string to JTextArea
} // end process
/**
* Call sw.execute() when done to have this method executed.
*/
@Override
protected void done(){
try{
area.setText( area.getText() + "\nConnection Closed." );
} catch( Exception exc ){
exc.printStackTrace();
}
} // end done
}
}
| mit |
CNH-Hyper-Extractive/data-component | DataStore/src/edu/kstate/datastore/data/ValueSetEntry.java | 4598 | // -----------------------------------------------------------------------
// Copyright (c) 2014 Tom Bulatewicz, Kansas State University
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// -----------------------------------------------------------------------
package edu.kstate.datastore.data;
import com.hazelcast.nio.DataSerializable;
import edu.kstate.datastore.util.ByteUtil;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
public class ValueSetEntry implements DataSerializable {
private static final long serialVersionUID = 1L;
private String webServiceId;
private String quantityId;
private String timeStamp;
private String elementSetId;
private String scenarioId;
private boolean needsUpload;
private byte[] dataBytes;
private int dataLength;
/**
* Required for serialization;
*/
public ValueSetEntry() {
}
public ValueSetEntry(String webServiceId, String quantityId, String timeStamp, String elementSetId, String scenarioId, double[] values) {
this.webServiceId = webServiceId;
this.quantityId = quantityId;
this.timeStamp = timeStamp;
this.elementSetId = elementSetId;
this.scenarioId = scenarioId;
this.needsUpload = false;
this.dataBytes = ByteUtil.toByta(values);
this.dataLength = dataBytes.length;
}
public static String createKey(ValueSetEntry entry) {
return createKey(entry.getWebServiceId(), entry.getQuantityId(), entry.getElementSetId(), entry.getTimeStamp(), entry.getScenarioId());
}
public static String createKey(String webServiceId, String quantityId, String elementSetId, String timeStamp, String scenarioId) {
return String.format("%s%s%s%s%s", webServiceId, quantityId, elementSetId, timeStamp, scenarioId);
}
public String getWebServiceId() {
return webServiceId;
}
public String getQuantityId() {
return quantityId;
}
public String getTimeStamp() {
return timeStamp;
}
public String getElementSetId() {
return elementSetId;
}
public String getScenarioId() {
return this.scenarioId;
}
public double[] getValues() {
return ByteUtil.toDoubleA(this.dataBytes);
}
public boolean getNeedsUpload() {
return this.needsUpload;
}
public void setNeedsUpload(boolean value) {
this.needsUpload = value;
;
}
@Override
public void readData(DataInput in) throws IOException {
this.webServiceId = in.readUTF();
this.quantityId = in.readUTF();
this.timeStamp = in.readUTF();
this.elementSetId = in.readUTF();
this.scenarioId = in.readUTF();
this.needsUpload = in.readBoolean();
this.dataLength = in.readInt();
this.dataBytes = new byte[this.dataLength];
in.readFully(this.dataBytes);
}
@Override
public void writeData(DataOutput out) throws IOException {
out.writeUTF(this.webServiceId);
out.writeUTF(this.quantityId);
out.writeUTF(this.timeStamp);
out.writeUTF(this.elementSetId);
out.writeUTF(this.scenarioId);
out.writeBoolean(this.needsUpload);
out.writeInt(this.dataLength);
out.write(this.dataBytes);
}
@Override
public String toString() {
return String.format("%s:%s:%s:%s:%s:%d:%s", webServiceId, quantityId, timeStamp, elementSetId, scenarioId, dataLength, needsUpload == true ? "true" : "false");
}
}
| mit |
Alelak/materialup | library/src/main/java/com/alelak/materialup/MaterialUp.java | 3482 | package com.alelak.materialup;
import android.os.Handler;
import android.os.Looper;
import com.alelak.materialup.callbacks.MaterialUpCallback;
import com.alelak.materialup.models.MaterialUpResponse;
import com.alelak.materialup.models.Post;
import com.google.gson.Gson;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import okhttp3.Callback;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
public class MaterialUp {
public enum SORT {
LATEST, POPULAR
}
private static final String ENDPOINT = "https://www.materialup.com/";
private static final String ENDPOINT_ = "https://www.materialup.com";
private static final OkHttpClient CLIENT = new OkHttpClient();
private static final Gson GSON = new Gson();
/**
* @param page Page number
* @param sort Sort by LATEST or POPULAR
* @param materialUpCallback Callback
*/
public static void getPosts(final int page, final SORT sort, final MaterialUpCallback materialUpCallback) {
String url = null;
switch (sort) {
case LATEST:
url = ENDPOINT + "posts?page=" + page + "&sort=latest";
break;
case POPULAR:
url = ENDPOINT + "posts?page=" + page + "&sort=popular";
break;
}
final Request request = new Request.Builder()
.url(url)
.addHeader("Accept", "application/json").build();
final List<Post> posts = new ArrayList<>();
CLIENT.newCall(request).enqueue(new Callback() {
Handler mainHandler = new Handler(Looper.getMainLooper());
@Override
public void onFailure(final Request request, final IOException e) {
mainHandler.post(new Runnable() {
@Override
public void run() {
materialUpCallback.onFailure(request, e);
}
});
}
@Override
public void onResponse(final Response response) throws IOException {
final MaterialUpResponse materialUpResponse = GSON.fromJson(response.body().charStream(), MaterialUpResponse.class);
final Element document = Jsoup.parse(materialUpResponse.content);
final Elements elements = document.select(".post-list-items .post-list-item");
for (Element element : elements) {
Post post = new Post();
post.setId(Integer.parseInt(element.attr("id")));
post.setTitle(element.select("h2").first().text());
post.setUrl(ENDPOINT_ + element.select("a").first().attr("href"));
post.setPreview_url(element.select("img[alt=\"Teaser\"]").attr("src"));
post.setImage_url(element.select("img.preview").first().attr("src"));
post.setUpvotes(Integer.parseInt(element.select(".count").first().text()));
posts.add(post);
}
mainHandler.post(new Runnable() {
@Override
public void run() {
materialUpCallback.onSuccess(posts, response);
}
});
}
});
}
}
| mit |
Qoracoin/Qora | Qora/src/gui/models/KeyValueTableModel.java | 4010 | package gui.models;
import java.util.ArrayList;
import java.util.List;
import java.util.Observable;
import java.util.Observer;
import javax.swing.table.AbstractTableModel;
import org.json.simple.JSONObject;
import lang.Lang;
import utils.Pair;
@SuppressWarnings("serial")
public class KeyValueTableModel extends AbstractTableModel implements Observer{
public static final int COLUMN_KEY = 0;
public static final int COLUMN_VALUE = 1;
private String[] columnNames = Lang.getInstance().translate(new String[]{"Key", "Value"});
private List<Pair<String, String>> keyvaluepairs = new ArrayList<Pair<String,String>>();
@Override
public int getColumnCount() {
return this.columnNames.length;
}
@Override
public int getRowCount() {
return keyvaluepairs == null ? 0 : this.keyvaluepairs.size();
}
@Override
public String getValueAt(int row, int column) {
if(this.keyvaluepairs == null || row > this.keyvaluepairs.size() - 1 || row == -1)
{
return null;
}
switch(column)
{
case COLUMN_KEY:
return keyvaluepairs.get(row).getA();
case COLUMN_VALUE:
return keyvaluepairs.get(row).getB();
}
return null;
}
@Override
public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
if(getRowCount() > rowIndex && rowIndex != -1)
{
if(columnIndex == 0)
{
keyvaluepairs.get(rowIndex).setA((String) aValue);
}else if(columnIndex == 1)
{
keyvaluepairs.get(rowIndex).setB((String) aValue);
}
}
}
@SuppressWarnings("unchecked")
public JSONObject getCurrentValueAsJsonOpt()
{
JSONObject json = null;
if(keyvaluepairs != null)
{
json = new JSONObject();
for (Pair<String,String> keyvaluepair : keyvaluepairs) {
json.put(keyvaluepair.getA(), keyvaluepair.getB());
}
}
if(json == null || json.isEmpty())
{
json = null;
}
return json;
}
//CONSISTENCY CHECK
public Pair<Boolean, String> checkUpdateable()
{
if(keyvaluepairs.size() == 0)
{
return new Pair<Boolean, String>(false, Lang.getInstance().translate("You need to add atleast one key/value pair to properly update the name."));
}
List<String> keys = new ArrayList<String>();
for (Pair<String, String> pair : keyvaluepairs) {
String key = pair.getA();
if(key == null || "".equalsIgnoreCase(key))
{
return new Pair<Boolean, String>(false, Lang.getInstance().translate("The entry at position %key% is missing a key!").replace("%key%", String.valueOf(keyvaluepairs.indexOf(pair))));
}
if(keys.contains(key))
{
return new Pair<Boolean, String>(false, Lang.getInstance().translate("There are atleast two entries with duplicate keys (Bad key: %key%)").replace("%key%", key));
}
keys.add(key);
}
return new Pair<Boolean, String>(true, "");
}
public String getCurrentValueAsJsonStringOpt()
{
String result = null;
JSONObject json = getCurrentValueAsJsonOpt();
if(json != null)
{
// result = JSONObject.
return json.toJSONString();
}
return result;
}
@Override
public void update(Observable arg0, Object arg1) {
// TODO Auto-generated method stub
}
public void setData(List<Pair<String, String>> keyvaluepairs)
{
this.keyvaluepairs = keyvaluepairs;
fireTableDataChanged();
}
public void removeEntry(int index)
{
if(getRowCount() > index)
{
keyvaluepairs.remove(index);
fireTableRowsDeleted(index, index);
}
}
public void addAtEnd()
{
keyvaluepairs.add(new Pair<String, String>("",""));
int index = getRowCount()-1;
fireTableRowsInserted(index, index);
}
// @Override
// public SortableList<String, String> getSortableList() {
// return this.keyvaluepairs;
// }
//
@Override
public String getColumnName(int index)
{
return this.columnNames[index];
}
}
| mit |
LaranSoft/coffix | src/it/halfone/coffix/dao/PartecipatingGroupUser.java | 1190 | package it.halfone.coffix.dao;
public class PartecipatingGroupUser implements Comparable<PartecipatingGroupUser>{
private String username;
private String displayName;
private long coffees;
public PartecipatingGroupUser() {
}
public PartecipatingGroupUser(String username, String displayName) {
this.username = username;
this.displayName = displayName;
this.coffees = 0;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public long getCoffees() {
return coffees;
}
public void setCoffees(long coffees) {
this.coffees = coffees;
}
@Override
public int compareTo(PartecipatingGroupUser other) {
final int BEFORE = -1;
final int EQUAL = 0;
final int AFTER = 1;
if (this == other) return EQUAL;
if(this.coffees > other.coffees) return AFTER;
if(this.coffees < other.coffees) return BEFORE;
return this.username.compareTo(other.username);
}
}
| mit |
MarkEWaite/git-client-plugin | src/test/java/org/jenkinsci/plugins/gitclient/UnsupportedCommandTest.java | 8491 | /*
* The MIT License
*
* Copyright 2020 Mark Waite.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.jenkinsci.plugins.gitclient;
import com.cloudbees.plugins.credentials.CredentialsDescriptor;
import com.cloudbees.plugins.credentials.CredentialsScope;
import com.cloudbees.plugins.credentials.common.StandardCredentials;
import java.util.ArrayList;
import java.util.List;
import edu.umd.cs.findbugs.annotations.NonNull;
import org.junit.Test;
import static org.junit.Assert.*;
public class UnsupportedCommandTest {
private final UnsupportedCommand unsupportedCommand;
public UnsupportedCommandTest() {
unsupportedCommand = new UnsupportedCommand();
}
@Test
public void testSparseCheckoutPathsNull() {
unsupportedCommand.sparseCheckoutPaths(null);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testSparseCheckoutPathsEmptyList() {
List<String> emptyList = new ArrayList<>();
unsupportedCommand.sparseCheckoutPaths(emptyList);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testSparseCheckoutPaths() {
List<String> sparseList = new ArrayList<>();
sparseList.add("a-file-for-sparse-checkout");
unsupportedCommand.sparseCheckoutPaths(sparseList);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testTimeoutNull() {
unsupportedCommand.timeout(null);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testTimeout() {
Integer five = 5;
unsupportedCommand.timeout(five);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testLfsRemoteNull() {
unsupportedCommand.lfsRemote(null);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testLfsRemote() {
unsupportedCommand.lfsRemote("https://github.com/MarkEWaite/docker-lfs");
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testLfsCredentialsNull() {
unsupportedCommand.lfsCredentials(null);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testLfsCredentials() {
FakeCredentials credentials = new FakeCredentials();
unsupportedCommand.lfsCredentials(credentials);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testNotShallow() {
unsupportedCommand.shallow(false);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testShallow() {
unsupportedCommand.shallow(true);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testDepthNull() {
unsupportedCommand.depth(null);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testDepthNegative() {
unsupportedCommand.depth(-1); // Surprising, but acceptable
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testDepth() {
unsupportedCommand.depth(1);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testNotFirstParent() {
unsupportedCommand.firstParent(false);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testFirstParent() {
unsupportedCommand.firstParent(true);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testThreadsNull() {
unsupportedCommand.threads(null);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testThreadsZero() {
unsupportedCommand.threads(0);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testThreads() {
unsupportedCommand.threads(42);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testNotRemoteTracking() {
unsupportedCommand.remoteTracking(false);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testRemoteTracking() {
unsupportedCommand.remoteTracking(true);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testRefNull() {
unsupportedCommand.ref(null);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testRefEmpty() {
unsupportedCommand.ref("");
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testRef() {
unsupportedCommand.ref("beadeddeededcededadded");
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testNotParentCredentials() {
unsupportedCommand.parentCredentials(false);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testParentCredentials() {
unsupportedCommand.remoteTracking(true);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testUseBranchNull() {
unsupportedCommand.useBranch(null, null);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testUseBranchNullBranchName() {
unsupportedCommand.useBranch("some-submodule", null);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testUseBranchNullSubmodule() {
unsupportedCommand.useBranch(null, "some-branch");
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testUseBranch() {
unsupportedCommand.useBranch("some-submodule", "some-branch");
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testGitPublisherDisabled() {
/* Disabled git publisher is allowed to use JGit */
unsupportedCommand.gitPublisher(false);
assertTrue(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testGitPublisher() {
/* Enabled git publisher must not use JGit */
unsupportedCommand.gitPublisher(true);
assertFalse(unsupportedCommand.determineSupportForJGit());
}
@Test
public void testDetermineSupportForJGit() {
/* Confirm default is true */
assertTrue(unsupportedCommand.determineSupportForJGit());
}
private static class FakeCredentials implements StandardCredentials {
public FakeCredentials() {
}
@NonNull
@Override
public String getDescription() {
throw new UnsupportedOperationException("Unsupported");
}
@NonNull
@Override
public String getId() {
throw new UnsupportedOperationException("Unsupported");
}
@Override
public CredentialsScope getScope() {
throw new UnsupportedOperationException("Unsupported");
}
@NonNull
@Override
public CredentialsDescriptor getDescriptor() {
throw new UnsupportedOperationException("Unsupported");
}
}
}
| mit |
typingtanuki/restit | src/main/java/com/github/typingtanuki/restit/model/RestResponse.java | 3642 | package com.github.typingtanuki.restit.model;
import com.fasterxml.jackson.databind.ObjectMapper;
import javax.ws.rs.ProcessingException;
import javax.ws.rs.core.Response;
import java.io.IOException;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.lessThan;
/**
* A wrapper on the REST response to simplify assertions
*
* @author Clerc Mathias
*/
public final class RestResponse {
private static ObjectMapper MAPPER = new ObjectMapper();
private final RestRequest request;
private final long requestTime;
private final Response response;
private final long responseTime;
private final Object ENTITY_LOCK = new Object[0];
private String cachedEntity;
public RestResponse(RestRequest request, long requestTime, Response response, long responseTime) {
this.request = request;
this.requestTime = requestTime;
this.response = response;
this.responseTime = responseTime;
}
/**
* Checks that the HTTP status returned is the one we expected
*
* @param status the status which was expected
* @throws AssertionError if the actual status did not match
*/
public void assertStatus(int status) {
if (response.getStatus() != status) {
assertThat("Wrong REST response status for " + this,
response.getStatus(), is(status));
}
}
/**
* Check that the reply was done within the specified amount of time
*
* @param duration the maximum expected duration
* @throws AssertionError if the response took too much time to come
*/
public void assertWithin(long duration) {
long actualDuration = responseTime - requestTime;
if (actualDuration > duration) {
assertThat("REST endpoint took too long to respond for " + this,
actualDuration, lessThan(duration));
}
}
/**
* Deserialize the entity from the response to the specified class
*
* @param clazz the class to deserialize to
* @return the deserialized entity
* @throws AssertionError if the entity could not be deserialized
*/
public <T> T getEntity(Class<? extends T> clazz) {
try {
String body = stringEntity();
return MAPPER.readerFor(clazz).readValue(body);
} catch (ProcessingException | IllegalStateException | IOException e) {
throw new AssertionError("Could not extract body from request for " + this, e);
}
}
/**
* The entity can only be read once
*
* @return the entity as a string
*/
private String stringEntity() {
synchronized (ENTITY_LOCK) {
if (cachedEntity == null) {
cachedEntity = response.readEntity(String.class);
}
return cachedEntity;
}
}
/**
* @return The timestamp at which the request was made
*/
public long getRequestTime() {
return requestTime;
}
/**
* @return The timestamp at which the response came
*/
public long getResponseTime() {
return responseTime;
}
/**
* @return The request matching this response
*/
public RestRequest getRequest() {
return request;
}
/**
* @return The jaxrs response from the server
*/
public Response getResponse() {
return response;
}
@Override
public String toString() {
return "( " + request + " → " + response.getStatus() + " " + stringEntity() + " )";
}
}
| mit |
jfbreault/spring-boot-extension | spring-boot-extension-hawtio/src/main/java/ca/jfbconception/boot/hawtio/sample/SampleHawtioApplication.java | 393 | package ca.jfbconception.boot.hawtio.sample;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
//@Import(HawtioAutoConfiguration.class)
public class SampleHawtioApplication {
public static void main(String[] args) {
SpringApplication.run(SampleHawtioApplication.class, args);
}
}
| mit |
opengl-8080/Samples | java/java9/since9/src/main/java/since9/html/ClassHtml.java | 2780 | package since9.html;
import org.jsoup.nodes.Element;
import java.util.stream.Stream;
public class ClassHtml extends ApiHtml {
private final String relativePath;
public ClassHtml(String relativePath) {
super(relativePath);
this.relativePath = relativePath;
}
public boolean isSince9Type() {
return this.doc.select("body main .contentContainer .description dl")
.stream()
.anyMatch(dl -> dl.text().contains("Since: 9"));
}
public String getRelativePath() {
return this.relativePath;
}
public String description() {
String text = this.doc.select("main .contentContainer .description div.block").text();
int firstDotIndex = text.indexOf(".");
if (firstDotIndex == -1) {
return text;
} else {
return text.substring(0, firstDotIndex + 1);
}
}
public Stream<SummaryBlock> summaries() {
return this.doc.select("main .contentContainer .summary table.memberSummary tr:nth-child(n+2)")
.stream().map(SummaryBlock::new);
}
public Stream<MemberBlock> members() {
return this.doc.select("main .contentContainer .details section[role='region'] ul ul")
.stream().map(element -> new MemberBlock(this, element));
}
public String moduleName() {
return this.doc.select("main .header .subTitle")
.stream()
.filter(subTitle -> subTitle.text().startsWith("Module"))
.map(Element::text)
.map(text -> text.replaceAll("^Module[ ]*", ""))
.findFirst()
.orElse("unknown module name");
}
public String packageName() {
return this.doc.select("main .header .subTitle")
.stream()
.filter(subTitle -> subTitle.text().startsWith("Package"))
.map(Element::text)
.map(text -> text.replaceAll("^Package[ ]*", ""))
.findFirst()
.orElse("unknown package name");
}
public String name() {
return this.doc.select("main .header .title")
.text().replaceAll("^[^ ]+ *", "");
}
@Override
public String toString() {
return "ClassHtml(module=" + this.moduleName() + ", package=" + this.packageName() + ", name=" + this.name() + ", description=" + this.description() + ")";
}
public SummaryBlock findSummaryBlock(String id) {
return this.summaries().filter(summary -> summary.href().equals(id)).findFirst().orElseThrow(() -> new IllegalStateException("id not found. id=" + id));
}
}
| mit |
Azure/azure-sdk-for-java | sdk/resourcemanagerhybrid/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/fluent/models/ExpressRouteCircuitsArpTableListResultInner.java | 2459 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.network.models.ExpressRouteCircuitArpTable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** Response for ListArpTable associated with the Express Route Circuits API. */
@Fluent
public final class ExpressRouteCircuitsArpTableListResultInner {
@JsonIgnore private final ClientLogger logger = new ClientLogger(ExpressRouteCircuitsArpTableListResultInner.class);
/*
* Gets list of the ARP table.
*/
@JsonProperty(value = "value")
private List<ExpressRouteCircuitArpTable> value;
/*
* The URL to get the next set of results.
*/
@JsonProperty(value = "nextLink")
private String nextLink;
/**
* Get the value property: Gets list of the ARP table.
*
* @return the value value.
*/
public List<ExpressRouteCircuitArpTable> value() {
return this.value;
}
/**
* Set the value property: Gets list of the ARP table.
*
* @param value the value value to set.
* @return the ExpressRouteCircuitsArpTableListResultInner object itself.
*/
public ExpressRouteCircuitsArpTableListResultInner withValue(List<ExpressRouteCircuitArpTable> value) {
this.value = value;
return this;
}
/**
* Get the nextLink property: The URL to get the next set of results.
*
* @return the nextLink value.
*/
public String nextLink() {
return this.nextLink;
}
/**
* Set the nextLink property: The URL to get the next set of results.
*
* @param nextLink the nextLink value to set.
* @return the ExpressRouteCircuitsArpTableListResultInner object itself.
*/
public ExpressRouteCircuitsArpTableListResultInner withNextLink(String nextLink) {
this.nextLink = nextLink;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (value() != null) {
value().forEach(e -> e.validate());
}
}
}
| mit |
bikevit2008/training | src/main/java/home.java | 689 | import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import io.netty.util.CharsetUtil;
import java.io.IOException;
import java.util.Properties;
/**
* Created by Vitaly on 25.01.15.
*/
public class home {
public static ByteBuf getContent(String webSocketLocation) {
Properties props = new Properties();
props.setProperty("websocket-location", webSocketLocation);
String html = "";
try {
html = Templator.get("landing.html", props);
} catch (IOException e) {
e.printStackTrace();
}
return Unpooled.copiedBuffer(html, CharsetUtil.UTF_8);
}
private home() {
// Unused
}
}
| mit |
BrassGoggledCoders/SteamAgeRevolution | src/main/java/xyz/brassgoggledcoders/steamagerevolution/items/tools/ItemSlabShield.java | 1510 | package xyz.brassgoggledcoders.steamagerevolution.items.tools;
import javax.annotation.Nullable;
import com.teamacronymcoders.base.items.ItemBase;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.item.*;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
public class ItemSlabShield extends ItemBase {
public ItemSlabShield() {
super("slab_shield");
setMaxStackSize(1);
setMaxDamage(550);
addPropertyOverride(new ResourceLocation("blocking"), new IItemPropertyGetter() {
@Override
@SideOnly(Side.CLIENT)
public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) {
return entityIn != null && entityIn.isHandActive() && entityIn.getActiveItemStack() == stack ? 4.0F
: 0.0F;
}
});
}
@Override
public EnumAction getItemUseAction(ItemStack stack) {
return EnumAction.BLOCK;
}
@Override
public int getMaxItemUseDuration(ItemStack stack) {
return 72000;
}
// @Override
// public ActionResult<ItemStack> onItemRightClick(ItemStack itemStackIn, World
// worldIn, EntityPlayer playerIn,
// EnumHand hand) {
// playerIn.setActiveHand(hand);
// return new ActionResult<ItemStack>(EnumActionResult.SUCCESS, itemStackIn);
// }
}
| mit |
fengshao0907/count-db | src/main/java/be/bagofwords/db/application/environment/FileCountDBEnvironmentProperties.java | 306 | package be.bagofwords.db.application.environment;
import be.bagofwords.application.EnvironmentProperties;
/**
* Created by Koen Deschacht (koendeschacht@gmail.com) on 9/4/14.
*/
public interface FileCountDBEnvironmentProperties extends EnvironmentProperties {
public String getDataDirectory();
}
| mit |
venmo/tooltip-view | library/src/main/java/com/venmo/view/ArrowAlignmentHelper.java | 1393 | package com.venmo.view;
import android.graphics.RectF;
import android.view.View;
public final class ArrowAlignmentHelper {
public static float calculateArrowMidPoint(TooltipView view, RectF rectF) {
int offset = view.getAlignmentOffset();
float middle = 0f;
switch (view.getArrowAlignment()) {
case START:
middle = offset == 0 ? rectF.width() / 4 : offset;
break;
case CENTER:
middle = rectF.width() / 2;
if (offset > 0)
throw new IllegalArgumentException(
"Offsets are not support when the tooltip arrow is anchored in the middle of the view.");
break;
case END:
middle = rectF.width();
middle -= (offset == 0 ? rectF.width() / 4 : offset);
break;
case ANCHORED_VIEW:
middle = rectF.width() / 2;
if (view.getAnchoredViewId() != View.NO_ID) {
View anchoredView = ((View) view.getParent())
.findViewById(view.getAnchoredViewId());
middle += anchoredView.getX() + anchoredView.getWidth() / 2 - view.getX()
- view.getWidth() / 2;
}
break;
}
return middle;
}
}
| mit |
bhewett/mozu-java | mozu-java-test/src/main/java/com/mozu/test/framework/datafactory/AdminLocationInventoryFactory.java | 7538 | /**
* This code was auto-generated by a tool.
*
* Changes to this file may cause incorrect behavior and will be lost if
* the code is regenerated.
*/
package com.mozu.test.framework.datafactory;
import java.util.List;
import java.util.ArrayList;
import org.apache.http.HttpStatus;
import com.mozu.api.ApiException;
import com.mozu.api.ApiContext;
import com.mozu.test.framework.core.TestFailException;
import com.mozu.api.resources.commerce.catalog.admin.LocationInventoryResource;
/** <summary>
* Use the Location Inventory resource to manage the level of active product inventory maintained at each defined location, at the location level.
* </summary>
*/
public class AdminLocationInventoryFactory
{
public static com.mozu.api.contracts.productadmin.LocationInventory getLocationInventory(ApiContext apiContext, com.mozu.api.DataViewMode dataViewMode, String locationCode, String productCode, int expectedCode) throws Exception
{
return getLocationInventory(apiContext, dataViewMode, locationCode, productCode, null, expectedCode);
}
public static com.mozu.api.contracts.productadmin.LocationInventory getLocationInventory(ApiContext apiContext, com.mozu.api.DataViewMode dataViewMode, String locationCode, String productCode, String responseFields, int expectedCode) throws Exception
{
com.mozu.api.contracts.productadmin.LocationInventory returnObj = new com.mozu.api.contracts.productadmin.LocationInventory();
LocationInventoryResource resource = new LocationInventoryResource(apiContext, dataViewMode);
try
{
returnObj = resource.getLocationInventory( locationCode, productCode, responseFields);
}
catch (ApiException e)
{
if(e.getHttpStatusCode() != expectedCode)
throw new TestFailException("" + e.getHttpStatusCode(), Thread.currentThread().getStackTrace()[2].getMethodName(), "" + expectedCode, "");
else
return null;
}
if(expectedCode != 304 && !(expectedCode >= 200 && expectedCode <= 300) && !(expectedCode == HttpStatus.SC_NOT_FOUND && returnObj == null))
throw new TestFailException("304 or between 200 and 300", Thread.currentThread().getStackTrace()[2].getMethodName(), "" + expectedCode, "");
return returnObj;
}
public static com.mozu.api.contracts.productadmin.LocationInventoryCollection getLocationInventories(ApiContext apiContext, com.mozu.api.DataViewMode dataViewMode, String locationCode, int expectedCode) throws Exception
{
return getLocationInventories(apiContext, dataViewMode, locationCode, null, null, null, null, null, expectedCode);
}
public static com.mozu.api.contracts.productadmin.LocationInventoryCollection getLocationInventories(ApiContext apiContext, com.mozu.api.DataViewMode dataViewMode, String locationCode, Integer startIndex, Integer pageSize, String sortBy, String filter, String responseFields, int expectedCode) throws Exception
{
com.mozu.api.contracts.productadmin.LocationInventoryCollection returnObj = new com.mozu.api.contracts.productadmin.LocationInventoryCollection();
LocationInventoryResource resource = new LocationInventoryResource(apiContext, dataViewMode);
try
{
returnObj = resource.getLocationInventories( locationCode, startIndex, pageSize, sortBy, filter, responseFields);
}
catch (ApiException e)
{
if(e.getHttpStatusCode() != expectedCode)
throw new TestFailException("" + e.getHttpStatusCode(), Thread.currentThread().getStackTrace()[2].getMethodName(), "" + expectedCode, "");
else
return null;
}
if(expectedCode != 304 && !(expectedCode >= 200 && expectedCode <= 300) && !(expectedCode == HttpStatus.SC_NOT_FOUND && returnObj == null))
throw new TestFailException("304 or between 200 and 300", Thread.currentThread().getStackTrace()[2].getMethodName(), "" + expectedCode, "");
return returnObj;
}
public static List<com.mozu.api.contracts.productadmin.LocationInventory> addLocationInventory(ApiContext apiContext, com.mozu.api.DataViewMode dataViewMode, List<com.mozu.api.contracts.productadmin.LocationInventory> locationInventoryList, String locationCode, int expectedCode) throws Exception
{
return addLocationInventory(apiContext, dataViewMode, locationInventoryList, locationCode, null, expectedCode);
}
public static List<com.mozu.api.contracts.productadmin.LocationInventory> addLocationInventory(ApiContext apiContext, com.mozu.api.DataViewMode dataViewMode, List<com.mozu.api.contracts.productadmin.LocationInventory> locationInventoryList, String locationCode, Boolean performUpserts, int expectedCode) throws Exception
{
List<com.mozu.api.contracts.productadmin.LocationInventory> returnObj = new ArrayList<com.mozu.api.contracts.productadmin.LocationInventory>();
LocationInventoryResource resource = new LocationInventoryResource(apiContext, dataViewMode);
try
{
returnObj = resource.addLocationInventory( locationInventoryList, locationCode, performUpserts);
}
catch (ApiException e)
{
if(e.getHttpStatusCode() != expectedCode)
throw new TestFailException("" + e.getHttpStatusCode(), Thread.currentThread().getStackTrace()[2].getMethodName(), "" + expectedCode, "");
else
return null;
}
if(expectedCode != 304 && !(expectedCode >= 200 && expectedCode <= 300) && !(expectedCode == HttpStatus.SC_NOT_FOUND && returnObj == null))
throw new TestFailException("304 or between 200 and 300", Thread.currentThread().getStackTrace()[2].getMethodName(), "" + expectedCode, "");
return returnObj;
}
public static List<com.mozu.api.contracts.productadmin.LocationInventory> updateLocationInventory(ApiContext apiContext, com.mozu.api.DataViewMode dataViewMode, List<com.mozu.api.contracts.productadmin.LocationInventoryAdjustment> locationInventoryAdjustments, String locationCode, int expectedCode) throws Exception
{
List<com.mozu.api.contracts.productadmin.LocationInventory> returnObj = new ArrayList<com.mozu.api.contracts.productadmin.LocationInventory>();
LocationInventoryResource resource = new LocationInventoryResource(apiContext, dataViewMode);
try
{
returnObj = resource.updateLocationInventory( locationInventoryAdjustments, locationCode);
}
catch (ApiException e)
{
if(e.getHttpStatusCode() != expectedCode)
throw new TestFailException("" + e.getHttpStatusCode(), Thread.currentThread().getStackTrace()[2].getMethodName(), "" + expectedCode, "");
else
return null;
}
if(expectedCode != 304 && !(expectedCode >= 200 && expectedCode <= 300) && !(expectedCode == HttpStatus.SC_NOT_FOUND && returnObj == null))
throw new TestFailException("304 or between 200 and 300", Thread.currentThread().getStackTrace()[2].getMethodName(), "" + expectedCode, "");
return returnObj;
}
public static void deleteLocationInventory(ApiContext apiContext, com.mozu.api.DataViewMode dataViewMode, String locationCode, String productCode, int expectedCode) throws Exception
{
LocationInventoryResource resource = new LocationInventoryResource(apiContext, dataViewMode);
try
{
resource.deleteLocationInventory( locationCode, productCode);
}
catch (ApiException e)
{
if(e.getHttpStatusCode() != expectedCode)
throw new TestFailException("" + e.getHttpStatusCode(), Thread.currentThread().getStackTrace()[2].getMethodName(), "" + expectedCode, "");
else
return;
}
if(expectedCode != 304 && !(expectedCode >= 200 && expectedCode <= 300))
throw new TestFailException("304 or between 200 and 300", Thread.currentThread().getStackTrace()[2].getMethodName(), "" + expectedCode, "");
}
}
| mit |
seratch/jslack | slack-app-backend/src/main/java/com/slack/api/app_backend/events/handler/GroupDeletedHandler.java | 415 | package com.slack.api.app_backend.events.handler;
import com.slack.api.app_backend.events.EventHandler;
import com.slack.api.app_backend.events.payload.GroupDeletedPayload;
import com.slack.api.model.event.GroupDeletedEvent;
public abstract class GroupDeletedHandler extends EventHandler<GroupDeletedPayload> {
@Override
public String getEventType() {
return GroupDeletedEvent.TYPE_NAME;
}
}
| mit |
ehab93/Inventory | src/InventoryPK/Vendors.java | 11375 | package InventoryPK;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.text.DecimalFormat;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.table.DefaultTableCellRenderer;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableColumn;
public class Vendors {
static Connection conn;
static JLabel lVendorName, lPhone, lAddress;
static JTextField tfVendorName, tfPhone, tfAddress;
static JButton btmAddVendor, btmRemoveVendor,btmRefresh;
static Object[][] dataResult;
static Object[] columns = {"", "Vendor Name","Phone",
"Address", "Balance", "Debit", "Credit"};
static DefaultTableModel dTableModel = new DefaultTableModel(dataResult, columns) {
public Class getColumnClass(int column){
Class returnValue;
if((column >= 0) && (column < getColumnCount()))
returnValue = getValueAt(0, column).getClass();
else
returnValue = Object.class;
return returnValue;
}
public boolean isCellEditable(int row, int column) {
if(column == 2 || column == 3)
return true;
return false;
}
};
public static JTable vendorTable;
public static JScrollPane vendors() {
vendorTable = new JTable(dTableModel);
JScrollPane vendorTableSP = new JScrollPane(vendorTable);
vendorTable.setAutoCreateRowSorter(true);
vendorTable.setRowHeight(vendorTable.getRowHeight() + 16);
loadData();
TableColumn column = null;
for(int i = 0; i < vendorTable.getColumnCount(); i++) {
column = vendorTable.getColumnModel().getColumn(i);
if(i == 0)
column.setPreferredWidth(1);
else
column.setPreferredWidth(150);
}
lVendorName = new JLabel("Vendor name");
lPhone = new JLabel("Phone");
lAddress = new JLabel("Address");
tfVendorName = new JTextField(16);
tfPhone = new JTextField(16);
tfAddress = new JTextField(16);
btmAddVendor= new JButton("Add");
btmRemoveVendor = new JButton("Remove");
btmRefresh = new JButton("Refresh");
btmAddVendor.setToolTipText("Add a new vendor");
btmRemoveVendor.setToolTipText("Remove selected vendor");
btmRefresh.setToolTipText("Refresh vendors database");
JPanel inputPanel1 = new JPanel();
inputPanel1.add(lVendorName);
inputPanel1.add(tfVendorName);
inputPanel1.add(lPhone);
inputPanel1.add(tfPhone);
inputPanel1.add(lAddress);
inputPanel1.add(tfAddress);
JPanel btmPanel1 = new JPanel();
btmPanel1.add(btmAddVendor);
btmPanel1.add(btmRemoveVendor);
btmPanel1.add(btmRefresh);
JPanel btmPanel = new JPanel(new BorderLayout());
btmPanel.add(btmPanel1, BorderLayout.EAST);
JPanel inputPanel = new JPanel(new GridLayout(0,1,2,2));
inputPanel.add(inputPanel1);
inputPanel.add(btmPanel);
JPanel mainPanel = new JPanel(new BorderLayout());
mainPanel.add(inputPanel, BorderLayout.NORTH);
mainPanel.add(vendorTableSP, BorderLayout.CENTER);
JScrollPane mainPanelSP = new JScrollPane(mainPanel);
btmAddVendor.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
addAction();
}
});
btmRemoveVendor.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
removeAction();
}
});
btmRefresh.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
Main.infoPane.append(Main.tp, Color.BLACK, "Loading data...\n");
double ts1 = System.currentTimeMillis();
dTableModel.setRowCount(1);
dTableModel.removeRow(0);
loadData();
double ts2 = System.currentTimeMillis();
double T = Double.parseDouble(new DecimalFormat(".###").format((ts2 - ts1) / 1000));
Main.infoPane.append(Main.tp, new Color(10, 100, 10), "Data has been successfully loaded (" + T + " sec)\n");
}
});
vendorTable.addKeyListener(new KeyListener() {
@Override
public void keyPressed(KeyEvent e) {
// TODO Auto-generated method stub
switch(e.getKeyCode()) {
case 10 :
String vendorName = (String) vendorTable.getValueAt(vendorTable.getSelectedRow(), 1);
String phone = (String) vendorTable.getValueAt(vendorTable.getSelectedRow(), 2);
String address = (String) vendorTable.getValueAt(vendorTable.getSelectedRow(), 3);
try {
Class.forName("com.mysql.jdbc.Driver");
String username = LogIn.username;
String password = LogIn.password;
String url = "jdbc:mysql://" + LogIn.ip + "/inventory";
conn = DriverManager.getConnection(url, username, password);
Statement stmt = conn.createStatement();
//update vendor in DB
String updateCusotmer = "UPDATE vendors SET phone = '" + phone + "', address = '" + address + "' WHERE vendorName = '" + vendorName + "'; ";
stmt.executeUpdate(updateCusotmer);
Main.infoPane.append(Main.tp, new Color(10, 100, 10), "new " + vendorName + "'s data has been updated\n");
//update vendor in gui
vendorTable.setValueAt(phone, vendorTable.getSelectedRow(), 2);
vendorTable.setValueAt(address, vendorTable.getSelectedRow(), 3);
}catch(SQLException ex) {
ex.printStackTrace();
} catch(ClassNotFoundException ex) {
ex.printStackTrace();
}
break;
case 127 :
removeAction();
break;
}
}
@Override
public void keyReleased(KeyEvent arg0) {
// TODO Auto-generated method stub
}
@Override
public void keyTyped(KeyEvent arg0) {
// TODO Auto-generated method stub
}
});
return mainPanelSP;
}
public static void loadData() {
Statement stmt;
try {
Class.forName("com.mysql.jdbc.Driver");
String username = LogIn.username;
String password = LogIn.password;
String url = "jdbc:mysql://" + LogIn.ip + "/inventory";
conn = DriverManager.getConnection(url, username, password);
stmt = conn.createStatement();
String selectStuff = "SELECT * FROM vendors;";
ResultSet rset = stmt.executeQuery(selectStuff);
Object[] tempRow;
int count = 0;
while(rset.next()) {
String vendorName = rset.getString(1);
String phone = rset.getString(2);
String address = rset.getString(3);
double balance = rset.getDouble(4);
double debit = rset.getDouble(5);
double credit = rset.getDouble(6);
balance = Double.parseDouble
(new DecimalFormat(".##").
format(balance));
tempRow = new Object[]{ ++count,vendorName,
phone, address, balance, debit, credit};
dTableModel.addRow(tempRow);
}
rset.close();
conn.close();
vendorTable.getColumnModel().getColumn(0).setPreferredWidth(1);
//Center the data in the table
DefaultTableCellRenderer centerRenderer = new DefaultTableCellRenderer();
centerRenderer.setHorizontalAlignment( JLabel.CENTER );
for(int i = 0; i < vendorTable.getColumnCount(); i++)
vendorTable.getColumnModel().getColumn(i).setCellRenderer( centerRenderer );
} catch (SQLException | ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}catch(NullPointerException e2){
}
}
private static void addAction() {
if(tfVendorName.getText().equals("")) {
Main.infoPane.append(Main.tp, Color.RED, "Enter vendor Name\n");
}
//JOptionPane.showMessageDialog(null, "Enter vendor Name", "Vendors", JOptionPane.INFORMATION_MESSAGE);
else {
String vendorName = tfVendorName.getText();
String phone = tfPhone.getText();
String address = tfAddress.getText();
try {
Class.forName("com.mysql.jdbc.Driver");
String username = LogIn.username;
String password = LogIn.password;
String url = "jdbc:mysql://" + LogIn.ip + "/inventory";
conn = DriverManager.getConnection(url, username, password);
Statement stmt = conn.createStatement();
//add new vendor to DB
String addCusotmer = "INSERT INTO vendors VALUES('" + vendorName + "', '" + phone + "', '" + address + "', 0, 0, 0);";
stmt.executeUpdate(addCusotmer);
Main.infoPane.append(Main.tp, new Color(10,100,10), "new vendor added to the Database (" + vendorName + ")\n");
//add new vendor to vendorTable
int num = 0;
try {
num = (int) vendorTable.getValueAt(vendorTable.getRowCount()-1, 0)+1;
} catch(Exception ex) {
num = 1;
}
Object[] tempRow = new Object[]{num, vendorName, phone, address, 0, 0, 0};
dTableModel.addRow(tempRow);
if(Cash.rbCredit.isSelected())
Cash.loadVendorsData();
PInvoice_NewInvoice.loadVendorData();
}catch(SQLException ex) {
ex.printStackTrace();
Main.infoPane.append(Main.tp, Color.RED, "Multiple vendor defined\n");
//JOptionPane.showMessageDialog(null, "Multiple vendor defined", "Error", JOptionPane.ERROR_MESSAGE);
} catch(ClassNotFoundException ex) {
ex.printStackTrace();
}
}
}
private static void removeAction() {
try {
String vendorName = (String) vendorTable.getValueAt(vendorTable.getSelectedRow(), 1);
int result = JOptionPane.showConfirmDialog(null, "Are you sure you want to permanently delete this item?", "Delete Item",JOptionPane.YES_OPTION);
switch(result) {
case JOptionPane.YES_OPTION :
try {
Statement stmt;
Class.forName("com.mysql.jdbc.Driver");
String username = LogIn.username;
String password = LogIn.password;
String url = "jdbc:mysql://" + LogIn.ip + "/inventory";
conn = DriverManager.getConnection(url, username, password);
stmt = conn.createStatement();
String deleteVendor = "DELETE FROM vendors WHERE vendorName = '" + vendorName + "';";
stmt.executeUpdate(deleteVendor);
Main.infoPane.append(Main.tp, new Color(10,100,10), "vendor \"" + vendorName + "\" removed\n");
dTableModel.removeRow(vendorTable.getSelectedRow());
int count = 0;
for(int i = 0; i < dTableModel.getRowCount(); i++)
vendorTable.setValueAt(++count, i, 0);
PInvoice_NewInvoice.loadVendorData();
} catch (SQLException | ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
break;
case JOptionPane.NO_OPTION :
break;
}
}catch(IndexOutOfBoundsException ee) {
Main.infoPane.append(Main.tp, Color.RED, "No vendor selected\n");
//JOptionPane.showMessageDialog(null, "No vendor selected", "Error", JOptionPane.ERROR_MESSAGE);
}
}
}
| mit |
SquidDev-CC/plethora | src/main/java/org/squiddev/plethora/gameplay/neural/ContainerNeuralInterface.java | 5460 | package org.squiddev.plethora.gameplay.neural;
import dan200.computercraft.shared.computer.core.IComputer;
import dan200.computercraft.shared.computer.core.IContainerComputer;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
import net.minecraftforge.items.CapabilityItemHandler;
import net.minecraftforge.items.ItemHandlerHelper;
import net.minecraftforge.items.SlotItemHandler;
import org.squiddev.plethora.utils.Vec2i;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class ContainerNeuralInterface extends Container implements IContainerComputer {
public static final int START_Y = 134;
private static final int MAIN_START_X = 8;
public static final int NEURAL_START_X = 185;
public static final int S = 18;
public static final Vec2i[] POSITIONS = new Vec2i[]{
new Vec2i(NEURAL_START_X + 1 + S, START_Y + 1 + 2 * S),
new Vec2i(NEURAL_START_X + 1 + S, START_Y + 1),
// Centre
new Vec2i(NEURAL_START_X + 1 + S, START_Y + 1 + S),
new Vec2i(NEURAL_START_X + 1 + 2 * S, START_Y + 1 + S),
new Vec2i(NEURAL_START_X + 1, START_Y + 1 + S),
};
public static final Vec2i SWAP = new Vec2i(NEURAL_START_X + 1 + 2 * S, START_Y + 1 + 2 * S);
private final ItemStack stack;
private final EntityLivingBase parent;
public final Slot[] peripheralSlots;
public final Slot[] moduleSlots;
public ContainerNeuralInterface(IInventory playerInventory, EntityLivingBase parent, ItemStack stack) {
this.stack = stack;
this.parent = parent;
NeuralItemHandler stackInv = (NeuralItemHandler) stack.getCapability(CapabilityItemHandler.ITEM_HANDLER_CAPABILITY, null);
peripheralSlots = addSlots(stackInv, 0, NeuralHelpers.PERIPHERAL_SIZE);
moduleSlots = addSlots(stackInv, NeuralHelpers.PERIPHERAL_SIZE, NeuralHelpers.MODULE_SIZE);
for (int y = 0; y < 3; ++y) {
for (int x = 0; x < 9; ++x) {
addSlotToContainer(new Slot(playerInventory, x + y * 9 + 9, MAIN_START_X + x * 18, START_Y + 1 + y * 18));
}
}
for (int x = 0; x < 9; ++x) {
addSlotToContainer(new Slot(playerInventory, x, MAIN_START_X + x * 18, START_Y + 54 + 5));
}
}
private Slot[] addSlots(NeuralItemHandler stackInv, int offset, int length) {
Slot[] slots = new Slot[length];
for (int i = 0; i < length; i++) {
addSlotToContainer(slots[i] = new NeuralSlot(stackInv, offset + i, 0, 0));
}
return slots;
}
@Override
public boolean canInteractWith(@Nullable EntityPlayer player) {
return player != null && player.isEntityAlive() && parent.isEntityAlive() && stack == NeuralHelpers.getStack(parent);
}
public ItemStack getStack() {
return stack;
}
@Nonnull
@Override
public ItemStack transferStackInSlot(EntityPlayer player, int slotIdx) {
ItemStack stack = ItemStack.EMPTY;
Slot slot = inventorySlots.get(slotIdx);
if (slot != null && slot.getHasStack()) {
ItemStack slotStack = slot.getStack();
stack = slotStack.copy();
if (slotIdx < NeuralHelpers.INV_SIZE) {
if (!mergeItemStack(slotStack, NeuralHelpers.INV_SIZE, inventorySlots.size(), true)) {
return ItemStack.EMPTY;
}
} else if (!mergeItemStack(slotStack, 0, NeuralHelpers.INV_SIZE, false)) {
return ItemStack.EMPTY;
}
if (slotStack.getCount() == 0) {
slot.putStack(ItemStack.EMPTY);
} else {
slot.onSlotChanged();
}
}
return stack;
}
/**
* Merges provided ItemStack with the first available one in the container/player inventor between minIndex
* (included) and maxIndex (excluded). Args : stack, minIndex, maxIndex, reverseDirection.
*
* @see net.minecraftforge.items.ItemStackHandler#insertItem(int, ItemStack, boolean)
*/
@Override
protected boolean mergeItemStack(ItemStack stack, int startIndex, int endIndex, boolean reverseDirection) {
boolean flag = false;
int i = reverseDirection ? endIndex - 1 : startIndex;
while (stack.getCount() > 0 && (reverseDirection ? i >= startIndex : i < endIndex)) {
Slot slot = inventorySlots.get(i);
ItemStack existing = slot.getStack();
i += reverseDirection ? -1 : 1;
if (!slot.isItemValid(stack)) continue;
int limit = slot.getItemStackLimit(stack);
if (!existing.isEmpty()) {
if (!ItemHandlerHelper.canItemStacksStack(stack, existing)) continue;
limit -= existing.getCount();
}
if (limit <= 0) continue;
boolean reachedLimit = stack.getCount() > limit;
if (existing.isEmpty()) {
slot.putStack(reachedLimit ? ItemHandlerHelper.copyStackWithSize(stack, limit) : stack.copy());
} else {
existing.grow(reachedLimit ? limit : stack.getCount());
}
slot.onSlotChanged();
stack.setCount(reachedLimit ? stack.getCount() - limit : 0);
flag = true;
}
return flag;
}
@Nullable
@Override
public IComputer getComputer() {
return ItemComputerHandler.tryGetServer(stack);
}
private static final class NeuralSlot extends SlotItemHandler {
private final int index;
private final NeuralItemHandler handler;
NeuralSlot(NeuralItemHandler itemHandler, int index, int xPosition, int yPosition) {
super(itemHandler, index, xPosition, yPosition);
this.index = index;
handler = itemHandler;
}
@Override
public boolean isItemValid(@Nonnull ItemStack stack) {
return !stack.isEmpty() && handler.isItemValid(index, stack);
}
}
}
| mit |
yidongnan/grpc-spring-boot-starter | tests/src/test/java/net/devh/boot/grpc/test/config/OrderedServerInterceptorConfiguration.java | 3960 | /*
* Copyright (c) 2016-2021 Michael Zhang <yidongnan@gmail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
* documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package net.devh.boot.grpc.test.config;
import javax.annotation.Priority;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;
import io.grpc.Metadata;
import io.grpc.ServerCall;
import io.grpc.ServerCallHandler;
import io.grpc.ServerInterceptor;
import net.devh.boot.grpc.server.interceptor.GrpcGlobalServerInterceptor;
@Configuration
public class OrderedServerInterceptorConfiguration {
@GrpcGlobalServerInterceptor
@Priority(30)
public class SecondPriorityAnnotatedInterceptor implements ServerInterceptor {
public <ReqT, RespT> ServerCall.Listener<ReqT> interceptCall(ServerCall<ReqT, RespT> call, Metadata headers,
ServerCallHandler<ReqT, RespT> next) {
return next.startCall(call, headers);
}
}
@GrpcGlobalServerInterceptor
@Order(20)
public class SecondOrderAnnotatedInterceptor implements ServerInterceptor {
public <ReqT, RespT> ServerCall.Listener<ReqT> interceptCall(ServerCall<ReqT, RespT> call, Metadata headers,
ServerCallHandler<ReqT, RespT> next) {
return next.startCall(call, headers);
}
}
@GrpcGlobalServerInterceptor
public class FirstOrderedInterfaceInterceptor implements ServerInterceptor, Ordered {
public int getOrder() {
return 40;
}
public <ReqT, RespT> ServerCall.Listener<ReqT> interceptCall(ServerCall<ReqT, RespT> call, Metadata headers,
ServerCallHandler<ReqT, RespT> next) {
return next.startCall(call, headers);
}
}
@GrpcGlobalServerInterceptor
@Order(10)
public class FirstOrderAnnotatedInterceptor implements ServerInterceptor {
public <ReqT, RespT> ServerCall.Listener<ReqT> interceptCall(ServerCall<ReqT, RespT> call, Metadata headers,
ServerCallHandler<ReqT, RespT> next) {
return next.startCall(call, headers);
}
}
@GrpcGlobalServerInterceptor
public class SecondOrderedInterfaceInterceptor implements ServerInterceptor, Ordered {
public int getOrder() {
return 50;
}
public <ReqT, RespT> ServerCall.Listener<ReqT> interceptCall(ServerCall<ReqT, RespT> call, Metadata headers,
ServerCallHandler<ReqT, RespT> next) {
return next.startCall(call, headers);
}
}
@GrpcGlobalServerInterceptor
@Priority(5)
public class FirstPriorityAnnotatedInterceptor implements ServerInterceptor {
public <ReqT, RespT> ServerCall.Listener<ReqT> interceptCall(ServerCall<ReqT, RespT> call, Metadata headers,
ServerCallHandler<ReqT, RespT> next) {
return next.startCall(call, headers);
}
}
}
| mit |
aplause/jhbookz | src/main/java/com/aplause/jhbookz/config/Constants.java | 364 | package com.aplause.jhbookz.config;
/**
* Application constants.
*/
public final class Constants {
//Regex for acceptable logins
public static final String LOGIN_REGEX = "^[_'.@A-Za-z0-9-]*$";
public static final String SYSTEM_ACCOUNT = "system";
public static final String ANONYMOUS_USER = "anonymoususer";
private Constants() {
}
}
| mit |
sundayliu/android-demo | ActionBar/MyTitlebar01/MyTitlebar01/src/com/yangyu/mytitlebar01/MainActivity.java | 1229 | package com.yangyu.mytitlebar01;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
/**
* @author yangyu
* ¹¦ÄÜÃèÊö£ºÖ÷ActivityÀ࣬³ÌÐòµÄÈë¿ÚÀà
*/
public class MainActivity extends Activity implements OnClickListener {
//¶¨Òå°´Å¥
private Button mainBtn01,mainBtn02;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
}
/**
* ³õʼ»¯×é¼þ
*/
private void initView(){
//µÃµ½°´Å¥²¢ÉèÖüàÌýʼþ
mainBtn01 = (Button)findViewById(R.id.main_btn01);
mainBtn02 = (Button)findViewById(R.id.main_btn02);
mainBtn01.setOnClickListener(this);
mainBtn02.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.main_btn01:
startActivity(new Intent(MainActivity.this,CustomTitleActivity01.class));
break;
case R.id.main_btn02:
startActivity(new Intent(MainActivity.this,CustomTitleActivity02.class));
break;
default:
break;
}
}
}
| mit |
pellekrogholt/noxdroidandroidapp | src/dk/itu/noxdroid/NoxDroidActivity.java | 5336 | package dk.itu.noxdroid;
import java.io.IOException;
import oauth.signpost.OAuthConsumer;
import oauth.signpost.commonshttp.CommonsHttpOAuthConsumer;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpRequestBase;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
import Pachube.Feed;
import Pachube.Pachube;
import Pachube.PachubeException;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.location.LocationManager;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Bundle;
import android.util.Base64;
import android.util.Log;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.ToggleButton;
import dk.itu.noxdroid.service.NoxDroidService;
import dk.itu.noxdroid.setup.PreferencesActivity;
public class NoxDroidActivity extends Activity {
private String TAG;
private String login = "noxdroid";
private String password = "noxdroid";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TAG = getString(R.string.LOGCAT_TAG, getString(R.string.app_name), this
.getClass().getSimpleName());
setContentView(R.layout.main);
// startActivity(new Intent(this,IOIOSensorActivity.class));
// startActivity(new Intent(this,NoxDroidGPSActivity.class));
testDependencies();
testHTTP();
}
public void updateFeed(View view) {
// <script type="text/javascript"
// src="http://www.google.com/jsapi"></script><script
// language="JavaScript"
// src="http://apps.pachube.com/google_viz/viz.js"></script><script
// language="JavaScript">createViz(35611,1,600,200,"1DAB07");</script>
Pachube p = new Pachube("lFw8Nl2AhdRz2wKSXMvavSuxfjhjQBhl3efwXrmiTPk");
try {
TextView info = (TextView) findViewById(R.id.txtInfo);
Feed f = p.getFeed(38346);
info.setText(String.format("%s\n%s\n%s\n%s\n", f.getTitle(),
f.getEmail(), f.getWebsite(), f.getStatus()));
info.append("Connecting to Pachube Feed\n");
f.updateDatastream(1, 230.0);
info.append("Feed Updated\n");
} catch (PachubeException e) {
e.printStackTrace();
}
}
public void goIOIO(View view) {
// startActivity(new Intent(this, IOIOSensorActivity.class));
}
public void startService(View view) {
startService(new Intent(this, NoxDroidService.class));
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.mainmenu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.preferences:
Intent intent = new Intent(NoxDroidActivity.this,
PreferencesActivity.class);
startActivity(intent);
// test toast:
// Toast.makeText(this, "Just a test", Toast.LENGTH_SHORT).show();
break;
}
return true;
}
private void testDependencies() {
ToggleButton gps = (ToggleButton) findViewById(R.id.toggleButton1);
ToggleButton wifi = (ToggleButton) findViewById(R.id.toggleButton2);
ToggleButton mobile = (ToggleButton) findViewById(R.id.toggleButton3);
LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
gps.setChecked(locationManager
.isProviderEnabled(LocationManager.GPS_PROVIDER));
final ConnectivityManager connMan = (ConnectivityManager) this
.getSystemService(Context.CONNECTIVITY_SERVICE);
final NetworkInfo wifiInfo = connMan
.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
final NetworkInfo mobileInfo = connMan
.getNetworkInfo(ConnectivityManager.TYPE_MOBILE);
wifi.setChecked(wifiInfo.isAvailable());
mobile.setChecked(mobileInfo.isAvailable());
}
private void testHTTP() {
OAuthConsumer consumer = new CommonsHttpOAuthConsumer("C2fq1JGYSJ7JVTfsOQir", "IU7koQxuG1qSVf6E3z7zbR9QRZuBtiC9pCD1uAjM");
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet("http://geocommons.com/maps/111886.json");
//addAuthentication(request);
HttpEntity results = null;
try {
consumer.sign(request);
HttpResponse response = client.execute(request);
results = response.getEntity();
Log.i(TAG, EntityUtils.toString(results));
} catch (Exception e) {
throw new RuntimeException("Web Service Failure");
} finally {
if (results != null)
try {
results.consumeContent();
} catch (IOException e) {
// empty, Checked exception but don't care
}
}
}
/**
* Add basic authentication header to request
*
* @param request
*/
private void addAuthentication(HttpRequestBase request) {
String usernamePassword = login + ":" + password;
String encodedUsernamePassword = Base64.encodeToString(usernamePassword.getBytes(), Base64.DEFAULT);
request.addHeader("Authorization", "Basic " + encodedUsernamePassword);
}
//
// @Override
// public void onBackPressed() {
// moveTaskToBack (true);
// }
} | mit |
ruippeixotog/permission-explorer | src/pt/up/fe/ssin/pexplorer/actions/WriteExternalStorageAction.java | 1936 | package pt.up.fe.ssin.pexplorer.actions;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import pt.up.fe.ssin.pexplorer.R;
import pt.up.fe.ssin.pexplorer.app.PermissionAction;
import android.app.AlertDialog;
import android.content.Context;
import android.database.Cursor;
import android.os.Environment;
import android.provider.MediaStore;
import android.widget.Toast;
public class WriteExternalStorageAction extends PermissionAction {
AlertDialog.Builder builder;
AlertDialog alertDialog;
public WriteExternalStorageAction() {
super(R.string.write_external_storage_label,
R.string.write_external_storage_desc, PermissionAction.WARN);
}
@Override
protected void doAction(final Context context) {
try {
File root = Environment.getExternalStorageDirectory();
if (root.canWrite()) {
File PermissionExplorer = new File(root,
"PermissionExplorer.txt");
FileWriter permissionWriter = new FileWriter(PermissionExplorer);
BufferedWriter out = new BufferedWriter(permissionWriter);
Cursor cc = context.getContentResolver().query(
MediaStore.Images.Media.EXTERNAL_CONTENT_URI, null,
null, null, null);
if (cc.getCount() > 0)
while (cc.moveToNext())
out.write(cc.getString(cc
.getColumnIndex(MediaStore.Images.Media.DISPLAY_NAME))
+ "\n");
else
out.write(R.string.write_external_file_no_photos);
out.close();
}
} catch (IOException e) {
}
Toast.makeText(context, R.string.write_external_file_storage,
Toast.LENGTH_SHORT).show();
}
}
| mit |
shuangbofu/ustate | java部分/ustate/src/cn/eric/ustate/notice/dao/NoticeMapper.java | 973 | package cn.eric.ustate.notice.dao;
import java.util.Date;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import cn.eric.ustate.notice.entity.Notice;
public interface NoticeMapper {
public int getCount(Integer defProfId);
public int insertCommentNotice(@Param("profId") Integer profId, @Param("defProfId") Integer defProfId, @Param("cmtId") int cmtId, @Param("stmtId") int stmtId, @Param("createtime") Date createtime);
public int insertLikeSNotice(@Param("profId") Integer profId, @Param("defProfId") Integer defProfId, @Param("stmtId") int stmtId, @Param("createtime") Date createtime);
public int insertLikeCNotice(@Param("profId") Integer profId, @Param("defProfId") Integer defProfId, @Param("cmtId") int cmtId, @Param("stmtId") int stmtId, @Param("createtime") Date createtime);
public List<Notice> list(@Param("fromId") int fromId, @Param("defProfId") Integer defProfId);
public int resetStatus(Integer defProfId);
} | mit |
gkarlos/jTuples | src/main/java/jtuples/EmptyTupleException.java | 265 | package jtuples;
public class EmptyTupleException extends NullPointerException{
/**
*
*/
private static final long serialVersionUID = 1L;
public EmptyTupleException(String message){
super(message);
}
public EmptyTupleException(){
super();
}
}
| mit |
jankolkmeier/HmiCore | HmiPhysics/src/hmi/physics/controller/ControllerParameterNotFoundException.java | 1938 | /*******************************************************************************
* The MIT License (MIT)
* Copyright (c) 2015 University of Twente
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*******************************************************************************/
package hmi.physics.controller;
public class ControllerParameterNotFoundException extends ControllerParameterException
{
private static final long serialVersionUID = 1L;
private final String paramId;
public String getParamId()
{
return paramId;
}
public ControllerParameterNotFoundException(String param)
{
super("ParameterNotFound: "+ param);
this.paramId = param;
}
public ControllerParameterNotFoundException(String message, String param)
{
super(message);
this.paramId = param;
}
}
| mit |
katsura122/DemoArchitecture | app/src/main/java/com/katsuraf/demoarchitecture/ui/view/ISearchResultView.java | 336 | package com.katsuraf.demoarchitecture.ui.view;
import com.katsuraf.demoarchitecture.db.bean.ListItemEntity;
import java.util.List;
public interface ISearchResultView extends ILoadDataView{
void showSearchResult(List<ListItemEntity> dataList, boolean isSearchMore);
void showNoMoreSearchData();
void showNoSearchData();
}
| mit |
spurious/kawa-mirror | kawa/lang/Syntax.java | 2032 | package kawa.lang;
import gnu.mapping.*;
import gnu.expr.*;
import gnu.lists.*;
import gnu.kawa.format.Printable;
/**
* Abstract class for "syntax" objects.
* Builtins and macros are instances of this class.
* @author Per Bothner
*/
abstract public class Syntax implements Printable, Named
{
Object name;
public final String getName()
{
return name == null ? null
: name instanceof Symbol ? ((Symbol) name).getName()
: name.toString();
}
public Object getSymbol() { return name; }
public void setName (Object name) { this.name = name; }
public void setName (String name) { this.name = name; }
public Syntax ()
{
}
public Syntax (Object name)
{
setName(name);
}
/**
* Re-write an expression that is an "application" of this Syntax object.
* @param obj the arguments to this "application" (i.e. the cdr of
* the macro/builtin invocation)
* @param tr the Translator that provides context
* @return the re-written expression
*/
public Expression rewrite (Object obj, Translator tr)
{
throw new InternalError("rewrite method not defined");
}
public Expression rewriteForm (Pair form, Translator tr)
{
return rewrite(form.getCdr(), tr);
}
public void scanForm (Pair st, ScopeExp defs, Translator tr)
{
boolean ok = scanForDefinitions(st, defs, tr);
if (! ok)
tr.pushForm(new ErrorExp("syntax error expanding "+this));
}
/** Check if a statement is a definition, for initial pass.
* Semi-deprecated - should convert calls to use scanForm.
* @param st the statement to check
* @param defs where to add Declarations for found definitions
* @param tr the compilation state
* @return true on success
*/
public boolean scanForDefinitions(Pair st, ScopeExp defs, Translator tr)
{
tr.pushForm(st);
return true;
}
public void print (Consumer out)
{
out.write("#<syntax ");
String name = this.getName();
out.write(name == null ? "<unnamed>" : name);
out.write('>');
}
}
| mit |
freeuni-sdp/snake-15 | src/ge/edu/freeuni/sdp/snake/model/ObservableSnakeFactory.java | 285 | package ge.edu.freeuni.sdp.snake.model;
public class ObservableSnakeFactory implements SnakeFactory {
private Snake instance;
@Override
public Snake createSnake(Point head) {
if (instance == null) {
instance = new ObservableSnakeAdapter(head);
}
return instance;
}
}
| mit |
ytachi0026/toolcw02ucl | Coursework02/src/main/java/ucl/dev/travis/torrent/bean/Util.java | 594 | package ucl.dev.travis.torrent.bean;
import java.io.Serializable;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
@SuppressWarnings("serial")
public class Util implements Serializable{
private static SimpleDateFormat dateParse = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
private static DecimalFormat fiveDecimalFormat = new DecimalFormat("#.#####");
public static String niceFormatDate(Date date){
return dateParse.format(date);
}
public static String fiveDecimalFormat(Double value){
return fiveDecimalFormat.format(value);
}
}
| mit |
Swaraj1998/MyCode | Java/DrawPanel2/src/drawpanel2/DrawPanel2.java | 1144 | /*
* 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 drawpanel2;
import javax.swing.*;
import java.awt.Color;
import java.awt.Graphics;
/**
*
* @author BlueZ
*/
public class DrawPanel2 extends JPanel {
public DrawPanel2() {
super();
setBackground(Color.BLACK);
}
public void paintComponent(Graphics g) {
int width = getWidth();
int height = getHeight();
super.paintComponent(g);
for(int i = 0; i < width; i++) {
g.setColor(Color.white);
g.fillArc(i, height/2 , 30, 30, 0, 360);
}
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
JFrame frame = new JFrame("My Design");
DrawPanel2 panel = new DrawPanel2();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(600,500);
frame.add(panel);
frame.setVisible(true);
}
}
| mit |
SW-Team/java-TelegramBot | src/milk/telegram/method/sender/ForwardMessageSender.java | 1768 | package milk.telegram.method.sender;
import milk.telegram.bot.TelegramBot;
import milk.telegram.type.Identifier;
import milk.telegram.type.Usernamed;
import milk.telegram.type.chat.Channel;
import milk.telegram.type.message.Message;
public class ForwardMessageSender extends Sender{
public ForwardMessageSender(TelegramBot bot){
super(bot);
}
public String getFromChatId(){
return this.optString("from_chat_id");
}
public ForwardMessageSender setFromChatId(Object chat_id){
if(chat_id instanceof Identifier){
chat_id = chat_id instanceof Channel ? "@" + ((Usernamed) chat_id).getUsername() : ((Identifier) chat_id).getId();
}
if(chat_id instanceof String){
this.put("from_chat_id", chat_id);
}else if(chat_id instanceof Number){
this.put("from_chat_id", ((Number) chat_id).longValue() + "");
}
return this;
}
public ForwardMessageSender setChatId(Object chat_id){
return (ForwardMessageSender) super.setChatId(chat_id);
}
public ForwardMessageSender setMessageId(Object message_id){
if(message_id instanceof Message){
this.put("message_id", ((Message) message_id).getId());
this.put("from_chat_id", ((Message) message_id).getChat().getId() + "");
}else if(message_id instanceof Number){
this.put("message_id", ((Number) message_id).longValue());
}
return this;
}
//Optional
public ForwardMessageSender setDisableNotification(boolean value){
return (ForwardMessageSender) super.setDisableNotification(value);
}
public Message send(){
return Message.create(bot.updateResponse("forwardMessage", this));
}
}
| mit |
shaubert/android-process-button | library/src/main/java/com/dd/processbutton/FlatImageButton.java | 4226 | package com.dd.processbutton;
import android.annotation.SuppressLint;
import android.content.Context;
import android.content.res.ColorStateList;
import android.content.res.TypedArray;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.GradientDrawable;
import android.os.Build;
import android.util.AttributeSet;
import android.widget.ImageButton;
public class FlatImageButton extends ImageButton {
private boolean initialized;
private Drawable mDrawable;
private boolean roundCorners;
private float cornerRadius;
private BackgroundBuilder backgroundBuilder;
public FlatImageButton(Context context) {
super(context);
init(context, null);
}
public FlatImageButton(Context context, AttributeSet attrs) {
super(context, attrs);
init(context, attrs);
}
public FlatImageButton(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(context, attrs);
}
private void init(Context context, AttributeSet attrs) {
if (initialized) return;
backgroundBuilder = new BackgroundBuilder(context);
if (attrs != null) {
initAttributes(attrs);
} else {
mDrawable = getBackground();
}
setBackgroundCompat(mDrawable);
initialized = true;
}
private void initAttributes(AttributeSet attributeSet) {
TypedArray attr = backgroundBuilder.getTypedArray(attributeSet, R.styleable.FlatButton);
if (attr == null) {
return;
}
try {
float defValue = backgroundBuilder.getDimension(R.dimen.pb_library_corner_radius);
cornerRadius = attr.getDimension(R.styleable.FlatButton_pb_cornerRadius, defValue);
roundCorners = attr.getBoolean(R.styleable.FlatButton_pb_roundCorners, false);
mDrawable = backgroundBuilder.createBackground(attributeSet);
} finally {
attr.recycle();
}
}
public boolean isRoundCorners() {
return roundCorners;
}
public void setRoundCorners(boolean roundCorners) {
this.roundCorners = roundCorners;
if (roundCorners) {
calculateCornerRadius();
}
}
public float getCornerRadius() {
return cornerRadius;
}
public void setCornerRadius(int cornerRadius) {
this.cornerRadius = cornerRadius;
backgroundBuilder.setCornerRadius(mDrawable, cornerRadius);
}
public Drawable getNormalDrawable() {
return mDrawable;
}
protected float getDimension(int id) {
return backgroundBuilder.getDimension(id);
}
@SuppressLint("NewApi")
protected void setColor(GradientDrawable drawable, TypedArray attr, int index, int defaultColor) {
BackgroundBuilder.setColor(drawable, attr, index, defaultColor);
}
protected ColorStateList getColor(TypedArray attr, int index, int defaultColor) {
return BackgroundBuilder.getColor(attr, index, defaultColor);
}
protected int getColor(int id) {
return backgroundBuilder.getColor(id);
}
protected TypedArray getTypedArray(AttributeSet attributeSet, int[] attr) {
return backgroundBuilder.getTypedArray(attributeSet, attr);
}
protected Drawable getDrawable(int id) {
return backgroundBuilder.getDrawable(id);
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
if (changed && roundCorners) {
calculateCornerRadius();
}
}
private void calculateCornerRadius() {
setCornerRadius(Math.abs(getBottom() - getTop()) / 2);
}
/**
* Set the View's background. Masks the API changes made in Jelly Bean.
*
* @param drawable
*/
@SuppressWarnings("deprecation")
@SuppressLint("NewApi")
public void setBackgroundCompat(Drawable drawable) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
setBackground(drawable);
} else {
setBackgroundDrawable(drawable);
}
}
}
| mit |
vidaj/TFCWaterCompatibility | src/api/java/com/bioxx/tfc/api/Events/PlayerSkillEvent.java | 609 | package com.bioxx.tfc.api.Events;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraftforge.event.entity.EntityEvent;
import cpw.mods.fml.common.eventhandler.Cancelable;
@Cancelable
public class PlayerSkillEvent extends EntityEvent
{
protected PlayerSkillEvent(EntityPlayer entity)
{
super(entity);
}
@Cancelable
public static class Increase extends PlayerSkillEvent
{
public final int skillGain;
public final String skillName;
public Increase(EntityPlayer entity, String name, int skill)
{
super(entity);
this.skillGain = skill;
this.skillName = name;
}
}
}
| mit |
Cornutum/tcases | tcases-openapi/src/test/java/org/cornutum/tcases/openapi/OpenApiTest.java | 12467 | //////////////////////////////////////////////////////////////////////////////
//
// Copyright 2019, Cornutum Project
// www.cornutum.org
//
//////////////////////////////////////////////////////////////////////////////
package org.cornutum.tcases.openapi;
import org.cornutum.hamcrest.ExpectedFailure.Failable;
import org.cornutum.tcases.SystemInputDef;
import org.cornutum.tcases.SystemInputDefMatcher;
import org.cornutum.tcases.SystemTestDef;
import org.cornutum.tcases.SystemTestDefMatcher;
import org.cornutum.tcases.Tcases;
import org.cornutum.tcases.io.SystemInputResources;
import org.cornutum.tcases.io.SystemTestResources;
import org.cornutum.tcases.openapi.reader.OpenApiReader;
import org.cornutum.tcases.openapi.reader.OpenApiReaderException;
import static org.cornutum.tcases.util.CollectionUtils.membersOf;
import io.swagger.v3.oas.models.OpenAPI;
import static org.apache.commons.lang3.StringUtils.trimToNull;
import static org.cornutum.hamcrest.Composites.*;
import static org.cornutum.hamcrest.ExpectedFailure.expectFailure;
import static org.hamcrest.MatcherAssert.*;
import static org.hamcrest.Matchers.*;
import java.io.File;
import java.io.InputStream;
import java.net.URL;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import java.util.function.Function;
import java.util.stream.Stream;
import static java.util.Collections.emptyList;
import static java.util.stream.Collectors.toList;
/**
* Base class for tests that verify Tcases models derived from Open API definitions.
*/
public abstract class OpenApiTest
{
/**
* Verifies the expected request input model for the given API.
*/
protected void verifyRequestInputModel( String apiName)
{
verifyRequestInputModel( apiName, apiName);
}
/**
* Verifies the expected request input model for the given API.
*/
protected void verifyRequestInputModel( String apiName, String expectedName)
{
verifyInputModel( apiName, expectedName, api -> getRequestInputModel( api));
}
/**
* Verifies the expected request examples model for the given API.
*/
protected void verifyRequestExamplesModel( String apiName)
{
verifyRequestExamplesModel( apiName, apiName);
}
/**
* Verifies the expected request examples model for the given API.
*/
protected void verifyRequestExamplesModel( String apiName, String expectedName)
{
verifyInputModel( apiName, expectedName, api -> getRequestExamplesModel( api));
}
/**
* Verifies the expected response input model for the given API.
*/
protected void verifyResponseInputModel( String apiName)
{
verifyResponseInputModel( apiName, apiName);
}
/**
* Verifies the expected response input model for the given API.
*/
protected void verifyResponseInputModel( String apiName, String expectedName)
{
verifyInputModel( apiName, expectedName, api -> getResponseInputModel( api));
}
/**
* Returns a request input model for the given API.
*/
protected SystemInputDef getRequestInputModel( OpenAPI api)
{
SystemInputDef inputDef = TcasesOpenApi.getRequestInputModel( api, getModelOptions());
return inputDef;
}
/**
* Returns a response input model for the given API.
*/
protected SystemInputDef getResponseInputModel( OpenAPI api)
{
SystemInputDef inputDef = TcasesOpenApi.getResponseInputModel( api, getModelOptions());
return inputDef;
}
/**
* Returns a request examples model for the given API.
*/
protected SystemInputDef getRequestExamplesModel( OpenAPI api)
{
SystemInputDef inputDef = TcasesOpenApi.getRequestExamplesModel( api, getModelOptions());
return inputDef;
}
/**
* Returns the {@link ModelOptions} used for this test.
*/
protected ModelOptions getModelOptions()
{
// By default, use default options.
return null;
}
/**
* Verifies the expected input model for the given API.
*/
protected void verifyInputModel( String apiName, String expectedName, Function<OpenAPI,SystemInputDef> inputDefSupplier)
{
// Given...
SystemInputDef inputDef = verifiedInputModel( apiName, expectedName, inputDefSupplier);
// When...
SystemTestDef testDef = Tcases.getTests( inputDef, null, null);
// Then...
if( acceptAsExpected())
{
updateExpectedTestDef( expectedName, testDef);
}
else
{
SystemTestDef expectedTestDef = readExpectedTestDef( expectedName);
assertThat( apiName + " test cases", testDef, matches( new SystemTestDefMatcher( expectedTestDef)));
}
}
/**
* Verifies and returns the expected input model for the given API.
*/
protected SystemInputDef verifiedInputModel( String apiName, String expectedName, Function<OpenAPI,SystemInputDef> inputDefSupplier)
{
// Given...
OpenAPI api = readApi( apiName);
// When...
SystemInputDef inputDef = inputDefSupplier.apply( api);
// Then...
if( acceptAsExpected())
{
updateExpectedInputDef( expectedName, inputDef);
}
else
{
SystemInputDef expectedInputDef = readExpectedInputDef( expectedName);
assertThat( apiName + " input model", inputDef, matches( new SystemInputDefMatcher( expectedInputDef)));
}
return inputDef;
}
/**
* Verifies no request input model created for the given API.
*/
protected void verifyRequestInputModelNone( String apiName)
{
// Given...
OpenAPI api = readApi( apiName);
// When...
SystemInputDef inputDef = TcasesOpenApi.getRequestInputModel( api);
// Then...
assertThat( apiName + " input model", inputDef, is( nullValue()));
}
/**
* Returns the {@link OpenAPI} object represented by the given document resource.
*/
protected OpenAPI readApi( String resource)
{
URL url = null;
InputStream document = null;
List<String> docTypes = Arrays.asList( "json", "yaml", "yml");
for( int i = 0; document == null && i < docTypes.size(); i++)
{
String resourceFile = String.format( "%s.%s", resource, docTypes.get(i));
url = getClass().getResource( resourceFile);
document = getClass().getResourceAsStream( resourceFile);
}
assertThat( "OpenAPI definition for resource=" + resource, document, is( notNullValue()));
try( OpenApiReader reader = new OpenApiReader( document, url))
{
return reader.read();
}
}
/**
* Returns the expected {@link SystemInputDef} object represented by the given document resource.
*/
protected SystemInputDef readExpectedInputDef( String resource)
{
return readInputDef( expectedFor( resource));
}
/**
* Returns the {@link SystemInputDef} object represented by the given document resource.
*/
protected SystemInputDef readInputDef( String resource)
{
return inputResources_.read( inputDefFor( resource));
}
/**
* Updates the given expected {@link SystemInputDef} resource.
*/
protected void updateExpectedInputDef( String resource, SystemInputDef inputDef)
{
updateInputDef( expectedFor( resource), inputDef);
}
/**
* Updates the given {@link SystemInputDef} resource.
*/
protected void updateInputDef( String resource, SystemInputDef inputDef)
{
inputResources_.write( inputDef, new File( saveExpectedDir_, inputDefFor( resource)));
}
/**
* Returns the expected {@link SystemTestDef} object represented by the given document resource.
*/
protected SystemTestDef readExpectedTestDef( String resource)
{
return readTestDef( expectedFor( resource));
}
/**
* Returns the {@link SystemTestDef} object represented by the given document resource.
*/
protected SystemTestDef readTestDef( String resource)
{
return testResources_.read( testDefFor( resource));
}
/**
* Updates the given expected {@link SystemTestDef} resource.
*/
protected void updateExpectedTestDef( String resource, SystemTestDef testDef)
{
updateTestDef( expectedFor( resource), testDef);
}
/**
* Updates the given {@link SystemTestDef} resource.
*/
protected void updateTestDef( String resource, SystemTestDef testDef)
{
testResources_.write( testDef, new File( saveExpectedDir_, testDefFor( resource)));
}
/**
* Returns the name of the given {@link SystemInputDef} resource.
*/
protected String inputDefFor( String resource)
{
return resource + "-Input.xml";
}
/**
* Returns the name of the given {@link SystemTestDef} resource.
*/
protected String testDefFor( String resource)
{
return resource + "-Test.xml";
}
/**
* Returns the name of the given expected result resource.
*/
protected String expectedFor( String resource)
{
return resource + "-Expected";
}
/**
* Verifies that the given API definition contains the specified Open API conformance errors.
*/
protected void assertOpenApiFailure( String apiName, String... expected)
{
expectFailure( OpenApiReaderException.class)
.when( () -> readApi( apiName))
.then( failure -> {
assertThat
( "Errors",
membersOf( failure.getErrors()).collect( toList()),
containsInAnyOrder( Arrays.stream( expected).map( m -> containsString(m)).collect( toList())));
});
}
/**
* Verifies that a valid input model can't be created for the given API definition for the specified reasons.
*/
protected void assertRequestInputModelFailure( String apiName, String... expected)
{
assertOpenApiException(
() -> TcasesOpenApi.getRequestInputModel( readApi( apiName)),
expected);
}
/**
* Verifies that a valid examples input model can't be created for the given API definition for the specified reasons.
*/
protected void assertRequestExamplesModelFailure( String apiName, String... expected)
{
assertOpenApiException(
() -> TcasesOpenApi.getRequestExamplesModel( readApi( apiName)),
expected);
}
/**
* Verifies that an OpenApiException occurs when the given Failable is executed.
*/
protected void assertOpenApiException( Failable failable, String... expected)
{
expectFailure( OpenApiException.class)
.when( failable)
.then( failure -> {
Stream.Builder<String> causes = Stream.builder();
for( Throwable cause = failure; cause != null; cause = cause.getCause())
{
causes.add( cause.getMessage());
}
assertThat( "Causes", causes.build().collect( toList()), listsMembers( expected));
});
}
/**
* Returns true if all generated test results are automatically accepted.
*/
private boolean acceptAsExpected()
{
return saveExpectedDir_ != null;
}
/**
* Returns {@link ModelOptions} to record conditions notified.
*/
protected ModelOptions withConditionRecorder()
{
conditionRecorder_ = new ModelConditionRecorder();
return ModelOptions.builder().notifier( conditionRecorder_).build();
}
protected ModelConditionRecorder getConditionRecorder()
{
return conditionRecorder_;
}
protected void assertWarnings( String... warnings)
{
assertThat( "Warnings", getConditionRecorder().getWarnings(), listsMembers( warnings));
assertThat( "Errors", getConditionRecorder().getErrors(), listsMembers( emptyList()));
}
protected void assertErrors( String... errors)
{
assertThat( "Errors", getConditionRecorder().getErrors(), listsMembers( errors));
assertThat( "Warnings", getConditionRecorder().getWarnings(), listsMembers( emptyList()));
}
protected void assertConditions( List<String> warnings, List<String> errors)
{
assertThat( "Warnings", getConditionRecorder().getWarnings(), listsMembers( warnings));
assertThat( "Errors", getConditionRecorder().getErrors(), listsMembers( errors));
}
private final SystemInputResources inputResources_ = new SystemInputResources( getClass());
private final SystemTestResources testResources_ = new SystemTestResources( getClass());
private final File saveExpectedDir_ =
Optional.ofNullable( trimToNull( System.getProperty( "saveExpectedTo")))
.map( path -> new File( path))
.orElse( null);
private ModelConditionRecorder conditionRecorder_;
}
| mit |
vfreitas-/Sistema-Escolar-1.0 | SistemaEscolar/src/main/java/sistema_escolar/repository/AbstractRepository1.java | 9140 | package sistema_escolar.repository;
import java.io.Serializable;
import java.lang.reflect.ParameterizedType;
import java.util.List;
import javax.inject.Inject;
import javax.persistence.EntityManager;
import javax.persistence.EntityTransaction;
import sistema_escolar.qualifier.MyDatabase;
/**
*
* abstract class, to use when you can't inject the EntityManager
* - Lack of a trully Java EE Container(@PersistentContext)
* - You can't use CDI(@ViewScoped)
*
* If you need a more complex EntityManager scope management, use a trully
* Java EE Container(jBoss, TomEE, Glassfish) or Dependency Injection.
*
* Usage:
* public class UserRepository extends AbstractRepository<Long, User> implements Serializable
* {
* //empty
* }
*
* ...
* UserRepository rep = new UserRepository();
* rep.save(user);
* ...
*
* Don't forget to implement Serializable in every entity and children dao,
* the hibernate 'll be happy =)
*
* @author Vitor Freitas - github(vFreitas)
* @param <K> Type of the entity ID(Key).
* @param <E> Type of the Entity.
*/
abstract class AbstractRepository1<K , E> implements Repository<K ,E>, Serializable
{
@Inject
@MyDatabase
/* TransactionScoped EntityManager */
private EntityManager em;
/* The entity class type */
protected Class<E> entityClass;
/**
* Builder, it gets the second(entity) parameterized type and
* sets to entityClass variable.
*/
public AbstractRepository1()
{
ParameterizedType genericSuperClass
= (ParameterizedType) getClass().getGenericSuperclass();
this.entityClass = (Class<E>) genericSuperClass.getActualTypeArguments()[1];
}
/**
*
* @return The entity class type instance variable
*/
protected Class<E> getEntityClassType()
{
return this.entityClass;
}
/**
*
* @return The entity class type name
*/
protected String getClassName()
{
return getEntityClassType().getSimpleName();
}
/**
* Persist an entity into the database
* - Creates a new instance of the EntityTransaction
* - Initiate it, persist, commit and finally closes the EntityManager
* - Catches and rollback any errors on the transaction.
* @param entity E object to persist in the database
*/
@Override
public void save(E entity)
{
EntityTransaction trx = em.getTransaction();
trx.begin();
em.persist(entity);
trx.commit();
}
/**
* Remove an entity from the database
* - Creates a new instance of the EntityTransaction
* - Initiate it, merge, commit and finally closes the EntityManager
* - Catches and rollback any errors on the transaction.
* @param entity E object to merge in the database
*/
@Override
public void merge(E entity)
{
EntityTransaction trx = em.getTransaction();
trx.begin();
em.merge(entity);
trx.commit();
}
/**
* Remove an entity into the database
* - Creates a new instance of the EntityTransaction
* - Initiate it, remove, commit and finally closes the EntityManager
* - Catches and rollback any errors on the transaction.
* @param entity The E entity to remove from database
*/
@Override
public void remove(E entity)
{
EntityTransaction trx = em.getTransaction();
trx.begin();
/* Verify if the entity is on the transaction context or not */
em.remove(
em.contains(entity) ? entity : em
.merge(entity));
trx.commit();
}
/**
* Gets an entity by its ID
* - It gets a new instance of the EntityManager
* - It finds an E entity with the given id
* @param id ID of the E entity
* @return an E type object
*/
@Override
public E getById(K id)
{
E result = null;
result = (E) em.find(getEntityClassType(), id);
return result;
}
/**
* It gets a list of E objects
* - It gets a new instance of the EntityManager
* - Finds all E objects
* @return A list of E objects
*/
@Override
public List<E> getAll()
{
System.out.println(em.toString());
List<E> resultList = null;
resultList = (List<E>) em
.createQuery("FROM " + getClassName(), getEntityClassType())
.getResultList();
return resultList;
}
/**
* It gets a list of E objects with the results of the given named query.
* - It gets a new instance of the EntityManager
* - Create the named query
* - And get the result list
* @param namedQuery Name of the named query
* @return A list of E objects
*/
@Override
public List<E> getAllNamedQuery(String namedQuery)
{
List<E> resultList = null;
resultList = (List<E>) em.createNamedQuery(namedQuery)
.getResultList();
return resultList;
}
/**
*
* @param startingAt
* @param maxPerPage
* @return
*/
@Override
public List<E> getAllLazyLoad(int startingAt, int maxPerPage)
{
List<E> resultList = null;
resultList = (List<E>) em
.createQuery("SELECT e FROM " + getEntityClassType()
.getSimpleName() + " e")
.setFirstResult(startingAt)
.setMaxResults(maxPerPage);
return resultList;
}
/**
* @return
*/
@Override
public int getTotalCount()
{
Integer count = null;
count = (Integer) em
.createQuery("SELECT COUNT(e) FROM " + getEntityClassType()
.getSimpleName() + " e")
.getSingleResult();
return count;
}
/**
* It gets an E object with the result of the given named query
* with the parameter.
* - It gets a new instance of the EntityManager
* - Create the named query
* - Set the parameter
* - And get the single result
* @param namedQuery Name of the named query
* @param parameter Name of the parameter setted on the named query
* @param value String value of the parameter
* @return An E object
*/
@Override
public E getUniqueByRestriction(String namedQuery, String parameter, String value)
{
E result = null;
result = (E) em.createNamedQuery(namedQuery)
.setParameter(parameter, value)
.getSingleResult();
return result;
}
/**
* It gets an E object with the result of the given named query
* with the parameter.
* - It creates a new instance of the EntityManager
* - Create the named query
* - Set the parameter
* - And get the single result
* @param namedQuery Name of the named query
* @param parameter Name of the parameter setted on the named query
* @param value Object value of the parameter
* @return An E object
*/
@Override
public E getUniqueByRestriction(String namedQuery, String parameter, Object value)
{
E result = null;
result = (E) em.createNamedQuery(namedQuery)
.setParameter(parameter, value)
.getSingleResult();
return result;
}
/**
* It gets a list of E objects with the results of the given named query
* with the parameter.
* - It gets a new instance of the EntityManager
* - Create the named query
* - Set the parameter
* - And get the result list
* @param namedQuery Name of the named query
* @param parameter Name of the parameter setted on the named query
* @param value Object value of the parameter
* @return A list of E objects
*/
@Override
public List<E> getByRestriction(String namedQuery, String parameter, Object value)
{
List<E> resultList = null;
resultList = (List<E>) em.createNamedQuery(namedQuery)
.setParameter(parameter, value)
.getResultList();
return resultList;
}
/**
* It gets a list of E objects with the results of the given named query
* with the parameter.
* - It gets a new instance of the EntityManager
* - Create the named query
* - Set the parameter
* - And get the result list
* @param namedQuery Name of the named query
* @param parameter Name of the parameter setted on the named query
* @param value String value of the parameter
* @return A list of E objects
*/
@Override
public List<E> getByRestriction(String namedQuery, String parameter, String value)
{
List<E> resultList = null;
resultList = (List<E>) em.createNamedQuery(namedQuery)
.setParameter(parameter, value)
.getResultList();
return resultList;
}
}
| mit |
waynejin/doublemi | mytomcat/src/ex02/pyrmont/Constants.java | 183 | package ex02.pyrmont;
import java.io.File;
public class Constants {
public static final String WEB_ROOT =
System.getProperty("user.dir")+File.separator+"webroot";
}
| mit |
simplechatting/simplechatting | src/GUI.java | 3179 | import javax.swing.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
/**
* Created by penguin on 17. 6. 19.
*/
public class GUI {
private JTextField message;
private JButton send;
private JTextField username;
private JButton Login;
private JButton Attach;
private JButton Logout;
private JTextPane messageTotal;
public JPanel panel;
// support datum
public List<String> messages = new LinkedList<>();
public String messagehtml = "";
// controller 연결
public SCClient client;
// 업데이트
public void addMsg(SCPacket msg){
String newMsg = "[" + msg.getUser() + "] " + msg.getMessage();
messages.add(newMsg);
messagehtml += "<br>" + newMsg;
messageTotal.setText("<html>" + messagehtml + "</html>");
}
// 리스너
public GUI(SCClient client) {
this.client = client;
messageTotal.setContentType("text/html");
Login.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
try {
client.startServer();
client.login(username.getText());
} catch (IOException e) {
e.printStackTrace();
}
}
});
username.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent keyEvent) {
if(keyEvent.getKeyCode()==KeyEvent.VK_ENTER) {
try {
client.startServer();
client.login(username.getText());
} catch (IOException e) {
e.printStackTrace();
}
}
}
});
Logout.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
client.logout();
}
});
send.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
client.sendMsg(message.getText());
message.setText("");
}
});
message.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent keyEvent) {
if(keyEvent.getKeyCode()==KeyEvent.VK_ENTER){
client.sendMsg(message.getText());
message.setText("");
}
}});
Attach.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
JFileChooser chooser = new JFileChooser();
chooser.setCurrentDirectory(new File(System.getProperty("user.dir")));
int returnVal = chooser.showOpenDialog(null);
if(returnVal == JFileChooser.APPROVE_OPTION) {
File file = chooser.getSelectedFile();
client.uploadFile(file);
}
}
});
}
}
| mit |
marcio-da-silva-arantes/MINLP | MINLP/src/minlp/tests/TestGLPKFail.java | 1655 | /*
* 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 minlp.tests;
import minlp.MINLP;
import minlp.Var;
import minlp.cplex.CPLEX;
import minlp.glpk.GLPK;
/**
*
* @author marcio
*/
public class TestGLPKFail {
public static void main(String[] args) throws Exception {
// TODO code application logic here
MINLP mip = new GLPK(); //do not work for GLPK yet
Var x1 = mip.boolVar("x1");
Var x2 = mip.boolVar("x2");
mip.addMaximize(mip.sum(x1, x2));
mip.addLe(mip.sum(x1,x2), 1.5);
mip.exportModel("model.lp");
if(mip.solve()){
System.out.println("status = "+mip.getStatus());
System.out.println("objective = "+mip.getObjValue());
System.out.println("x1 = "+mip.getValue(x1));
System.out.println("x2 = "+mip.getValue(x2));
System.out.println("cols = "+mip.getNcols());
System.out.println("bin = "+mip.getNbinVars());
System.out.println("int = "+mip.getNintVars());
System.out.println("rows = "+mip.getNrows());
for(int i=0; i<mip.getNcols(); i++){
Var var = mip.getVar(i);
System.out.println(var.getName());
System.out.printf("col[%d] = %6.2f %s\n", i, mip.getValue(var), var.getName());
}
}else{
System.out.println("status = "+mip.getStatus());
}
}
}
| mit |
mustah/jexpect | test/com/jexpect/ToBeDoubleTest.java | 885 | package com.jexpect;
import org.junit.Test;
import static com.jexpect.Expect.expect;
public class ToBeDoubleTest {
@Test
public void Expect_Should_Not_Throw_Exception() throws Exception {
expect(3d).toBe(3d);
expect(6d).toBeGreaterThan(3d);
expect(1d).toBeLessThan(9d);
}
@Test(expected = IllegalArgumentException.class)
public void To_Be_Actual_Fail() throws Exception {
expect(10d).toBe(9d);
}
@Test(expected = IllegalArgumentException.class)
public void To_Be_Actual_When_Actual_Is_Null_Fail() throws Exception {
expect(10d).toBe(null);
}
@Test(expected = IllegalArgumentException.class)
public void To_Be_Less_Than_Fail() throws Exception {
expect(11d).toBeLessThan(9d);
}
@Test(expected = IllegalArgumentException.class)
public void To_Be_Greater_Than_Fail() throws Exception {
expect(1d).toBeGreaterThan(9d);
}
}
| mit |
androidstarters/androidstarters.com | templates/mvp-arms/arms/src/main/java/com/jess/arms/base/DefaultAdapter.java | 4418 | /**
* Copyright 2017 JessYan
*
* 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 <%= appPackage %>.base;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import java.util.List;
/**
* ================================================
* 基类 {@link RecyclerView.Adapter} ,如果需要实现非常复杂的 {@link RecyclerView} ,请尽量使用其他优秀的三方库
* <p>
* Created by jess on 2015/11/27.
* <a href="mailto:jess.yan.effort@gmail.com">Contact me</a>
* <a href="https://github.com/JessYanCoding">Follow me</a>
* ================================================
*/
public abstract class DefaultAdapter<T> extends RecyclerView.Adapter<BaseHolder<T>> {
protected List<T> mInfos;
protected OnRecyclerViewItemClickListener mOnItemClickListener = null;
private BaseHolder<T> mHolder;
public DefaultAdapter(List<T> infos) {
super();
this.mInfos = infos;
}
/**
* 创建 {@link BaseHolder}
*
* @param parent
* @param viewType
* @return
*/
@Override
public BaseHolder<T> onCreateViewHolder(ViewGroup parent, final int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(getLayoutId(viewType), parent, false);
mHolder = getHolder(view, viewType);
mHolder.setOnItemClickListener(new BaseHolder.OnViewClickListener() {//设置Item点击事件
@Override
public void onViewClick(View view, int position) {
if (mOnItemClickListener != null && mInfos.size() > 0) {
mOnItemClickListener.onItemClick(view, viewType, mInfos.get(position), position);
}
}
});
return mHolder;
}
/**
* 绑定数据
*
* @param holder
* @param position
*/
@Override
public void onBindViewHolder(BaseHolder<T> holder, int position) {
holder.setData(mInfos.get(position), position);
}
/**
* 返回数据的个数
*
* @return
*/
@Override
public int getItemCount() {
return mInfos.size();
}
public List<T> getInfos() {
return mInfos;
}
/**
* 获得某个 {@code position} 上的 item 的数据
*
* @param position
* @return
*/
public T getItem(int position) {
return mInfos == null ? null : mInfos.get(position);
}
/**
* 让子类实现用以提供 {@link BaseHolder}
*
* @param v
* @param viewType
* @return
*/
public abstract BaseHolder<T> getHolder(View v, int viewType);
/**
* 提供用于 {@code item} 布局的 {@code layoutId}
*
* @param viewType
* @return
*/
public abstract int getLayoutId(int viewType);
/**
* 遍历所有{@link BaseHolder},释放他们需要释放的资源
*
* @param recyclerView
*/
public static void releaseAllHolder(RecyclerView recyclerView) {
if (recyclerView == null) return;
for (int i = recyclerView.getChildCount() - 1; i >= 0; i--) {
final View view = recyclerView.getChildAt(i);
RecyclerView.ViewHolder viewHolder = recyclerView.getChildViewHolder(view);
if (viewHolder != null && viewHolder instanceof BaseHolder) {
((BaseHolder) viewHolder).onRelease();
}
}
}
public interface OnRecyclerViewItemClickListener<T> {
void onItemClick(View view, int viewType, T data, int position);
}
public void setOnItemClickListener(OnRecyclerViewItemClickListener listener) {
this.mOnItemClickListener = listener;
}
}
| mit |
zunath/Contagion_JVM | src/contagionJVM/Repository/PCAuthorizedCDKeysRepository.java | 949 | package contagionJVM.Repository;
import contagionJVM.Data.DataContext;
import contagionJVM.Entities.PCAuthorizedCDKeyEntity;
import org.hibernate.Criteria;
import org.hibernate.criterion.Restrictions;
public class PCAuthorizedCDKeysRepository {
public PCAuthorizedCDKeyEntity GetByAccountName(String accountName)
{
PCAuthorizedCDKeyEntity entity;
try(DataContext context = new DataContext())
{
Criteria criteria = context.getSession()
.createCriteria(PCAuthorizedCDKeyEntity.class);
entity = (PCAuthorizedCDKeyEntity)criteria
.add(Restrictions.eq("accountID", accountName))
.uniqueResult();
}
return entity;
}
public void Save(PCAuthorizedCDKeyEntity entity)
{
try(DataContext context = new DataContext())
{
context.getSession().saveOrUpdate(entity);
}
}
}
| mit |
Bryan-Heim/CodingSamples | Java/JUnitTestExample/DriverTest.java | 1723 | /*
This class will test all possible getters and setters for a driver class
*/
import static org.junit.Assert.*;
import java.util.*;
import org.junit.*;
import org.mockito.*;
public class DriverTest
{
@Before
public void setUp() throws Exception
{
}
/*
Initlization tests
*/
// Test that if no integer is passed as a constructor,
// that the driver number returned will be -1
@Test
public void testDriverNumberEmpty()
{
Driver test = new Driver();
int testInt = test.getDriverNum();
assertTrue(testInt == -1);
}
// Current location should be null for a newly created driver
@Test
public void testCurrentLocationSetup()
{
Driver test = new Driver();
assertNull(test.getLocation());
}
// Check the total number of coffee cups for a new driver is set to 0.
@Test
public void testCoffeeEmpty()
{
Driver test = new Driver();
assertTrue(test.getCoffeeCups() == 0);
}
/*
Tests for setting certain values and ensuring they are actually set.
*/
// Set the constructor be 1 and vefify driver number changed to 1
@Test
public void testDriverNumberSet()
{
Driver test = new Driver(1);
int testInt = test.getDriverNum();
assertTrue(testInt == 1);
}
// Change the current location of the new driver, verify the change was made
@Test
public void testLocationSet()
{
Driver test = new Driver(1);
test.setLocation("TestingLand");
assertEquals(test.getLocation(), "TestingLand");
}
// Testing that each time a the add coffee method is called, one is successfully added to total coffee count
@Test
public void testCoffeeAdding()
{
Driver test = new Driver();
for(int i = 0; i < 10; i++)
test.addCoffee();
assertEquals(test.getCoffeeCups(), 10);
}
} | mit |
Wurmcraft/WurmTweaks | src/main/java/wurmcraft/wurmatron/common/utils/nbt/ItemNBT.java | 2240 | package wurmcraft.wurmatron.common.utils.nbt;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.attributes.AttributeModifier;
import net.minecraft.entity.ai.attributes.IAttribute;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import java.util.UUID;
public class ItemNBT {
public final static UUID MODIFIER_UUID = UUID.fromString("294093da-54f0-4c1b-9dbb-13b77534a84c");
public static ItemStack addDamage (ItemStack stack, int Damage) {
AttributeModifier attackModifier = new AttributeModifier(MODIFIER_UUID, "Weapon Upgrade", 30 + Damage, 0);
NBTTagCompound modifierNBT = writeAttributeModifierToNBT(SharedMonsterAttributes.attackDamage, attackModifier);
NBTTagCompound stackTagCompound = new NBTTagCompound();
NBTTagList list = new NBTTagList();
list.appendTag(modifierNBT);
stackTagCompound.setTag("AttributeModifiers", list);
stack.setTagCompound(stackTagCompound);
return stack;
}
private static NBTTagCompound writeAttributeModifierToNBT (IAttribute attribute, AttributeModifier modifier) {
NBTTagCompound nbttagcompound = new NBTTagCompound();
nbttagcompound.setString("AttributeName", SharedMonsterAttributes.attackDamage.getAttributeUnlocalizedName());
nbttagcompound.setString("Name", modifier.getName());
nbttagcompound.setDouble("Amount", modifier.getAmount());
nbttagcompound.setInteger("Operation", modifier.getOperation());
nbttagcompound.setLong("UUIDMost", modifier.getID().getMostSignificantBits());
nbttagcompound.setLong("UUIDLeast", modifier.getID().getLeastSignificantBits());
return nbttagcompound;
}
public static ItemStack addMaxHealth (ItemStack stack, int amount) {
AttributeModifier healthMod = new AttributeModifier(MODIFIER_UUID, "MaxHealth", amount, 0);
NBTTagCompound modifierNBT = writeAttributeModifierToNBT(SharedMonsterAttributes.maxHealth, healthMod);
NBTTagList list = new NBTTagList();
NBTTagCompound stackTagCompound = new NBTTagCompound();
list.appendTag(modifierNBT);
stackTagCompound.setTag("AttributeModifiers", list);
stack.setTagCompound(stackTagCompound);
return stack;
}
}
| mit |
mym987/CPS308_Game_Final | src/voogasalad_GucciGames/gameEngine/gameConditions/outcomes/EndLevel.java | 865 |
package voogasalad_GucciGames.gameEngine.gameConditions.outcomes;
import voogasalad_GucciGames.gameEngine.CommunicationParameters.BasicParameters;
import voogasalad_GucciGames.gameEngine.CommunicationParameters.ChangedParameters;
/**
*
* @author Sally Al
*
*/
public class EndLevel extends Outcome {
private static final String NEXT_LEVEL = "nextLevel";
private String myDestination;
public EndLevel() {
}
public EndLevel(String affectedPlayers, String destination) {
myDestination = destination;
}
@Override
ChangedParameters applyOutcome(BasicParameters params, ChangedParameters changedParams, int i) {
params.getEngine().setEndLevel(true);
changedParams.setNextLevel(myDestination);
// params.getEngine().changeLevel(myDestination);
System.out.println("setgame=" + params.getEngine().hasLevelEnded());
return changedParams;
}
}
| mit |
meeroslaph/bionic-bdd | src/main/java/com/bionic/pages/HomePage.java | 868 | package com.bionic.pages;
import net.serenitybdd.core.annotations.findby.FindBy;
import net.serenitybdd.core.pages.PageObject;
import net.serenitybdd.core.pages.WebElementFacade;
import net.thucydides.core.annotations.DefaultUrl;
@DefaultUrl("http://www.sokol.ua/")
public class HomePage extends PageObject {
@FindBy(id = "catalog")
private WebElementFacade productCatalog;
@FindBy(id = "field-input-search")
private WebElementFacade searchInput;
@FindBy(id = "btn-search-top")
private WebElementFacade btnSearch;
public boolean catalogIsDisplayed() {
return productCatalog.isCurrentlyVisible();
}
public SearchResultPage search(String keyword) {
searchInput.click();
searchInput.clear();
searchInput.sendKeys(keyword);
btnSearch.click();
return new SearchResultPage();
}
}
| mit |
hpe-idol/java-aci-types | src/main/java/com/hp/autonomy/types/requests/idol/actions/answer/params/TestRuleParams.java | 1160 | /*
* (c) Copyright 2015 Micro Focus or one of its affiliates.
*
* Licensed under the MIT License (the "License"); you may not use this file
* except in compliance with the License.
*
* The only warranties for products and services of Micro Focus and its affiliates
* and licensors ("Micro Focus") are as may be set forth in the express warranty
* statements accompanying such products and services. Nothing herein should be
* construed as constituting an additional warranty. Micro Focus shall not be
* liable for technical or editorial errors or omissions contained herein. The
* information contained herein is subject to change without notice.
*/
package com.hp.autonomy.types.requests.idol.actions.answer.params;
@SuppressWarnings({"WeakerAccess", "unused"})
public enum TestRuleParams {
Questions,
Rule,
SystemName;
public static TestRuleParams fromValue(final String value) {
for (final TestRuleParams param : values()) {
if (param.name().equalsIgnoreCase(value)) {
return param;
}
}
throw new IllegalArgumentException("Unknown parameter " + value);
}
}
| mit |
iwarapter/sonar-puppet | puppet-checks/src/main/java/com/iadams/sonarqube/puppet/checks/NosonarTagPresenceCheck.java | 2323 | /*
* SonarQube Puppet Plugin
* The MIT License (MIT)
*
* Copyright (c) 2015 Iain Adams and David RACODON
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.iadams.sonarqube.puppet.checks;
import com.iadams.sonarqube.puppet.PuppetCheckVisitor;
import com.sonar.sslr.api.AstAndTokenVisitor;
import com.sonar.sslr.api.Token;
import org.sonar.api.server.rule.RulesDefinition;
import org.sonar.check.Priority;
import org.sonar.check.Rule;
import org.sonar.squidbridge.annotations.SqaleConstantRemediation;
import org.sonar.squidbridge.annotations.SqaleSubCharacteristic;
@Rule(
key = "Nosonar",
name = "\"NOSONAR\" tags should not be used to switch off issues",
priority = Priority.INFO)
@SqaleSubCharacteristic(RulesDefinition.SubCharacteristics.INSTRUCTION_RELIABILITY)
@SqaleConstantRemediation("1min")
public class NosonarTagPresenceCheck extends PuppetCheckVisitor implements AstAndTokenVisitor {
private static final String PATTERN = "NOSONAR";
private static final String MESSAGE = "Is NOSONAR used to exclude false positive or to hide real quality flaw?";
private final CommentContainsPatternChecker checker = new CommentContainsPatternChecker(this, PATTERN, MESSAGE);
@Override
public void visitToken(Token token) {
checker.visitToken(token);
}
}
| mit |
sbaychev/spring-coverage-jpa-service | src/main/java/com/pickcoverage/domain/utils/ComputeCoverageIndex.java | 585 | package com.pickcoverage.domain.utils;
import com.pickcoverage.domain.entities.CoverageEntity;
/**
* Created by stefanbaychev on 3/30/17.
*/
public enum ComputeCoverageIndex {
/**
* Basic compute coverage index.
*/
basic(CoverageEntity.class);
/**
* The Entity class.
*/
final Class entityClass;
ComputeCoverageIndex(Class entityClass) {
this.entityClass = entityClass;
}
/**
* Gets entity class.
*
* @return the entity class
*/
public Class getEntityClass() {
return entityClass;
}
}
| mit |
lazokin/CollaboratingRobots | src/simulator/interfaces/SimProgrammer.java | 384 | // Author: Nikolce Ambukovski
// Student Number: s2008618
package simulator.interfaces;
import simulator.robotcommands.RobotCommandType;
public interface SimProgrammer {
/*
* Precondition: robotId != null
* Precondition: robotCommandTypes.length > 0
*/
public abstract void programRobot(String robotID,
RobotCommandType[] robotCommandTypes);
}
| mit |
Etienne1990/formation-dta | pizzeria-console-objet-java8-maven-multimodule/pizzeria-dao/src/main/java/fr/pizzeria/dao/performance/IPerformanceDao.java | 1199 | package fr.pizzeria.dao.performance;
import java.util.List;
import fr.pizzeria.exception.DaoException;
import fr.pizzeria.model.Performance;
/**
* Interface de DAO pour la gestion des {@link Performance}.
*/
public interface IPerformanceDao {
/**
* Récupere la liste des performances.
*
* @return Une {@link List}<{@link Performance}>.
*/
List<Performance> findAllPerformances();
/**
* Récupere une performance par son code.
*
* @param id L'd de la performance à récupérer.
* @return Une {@link Performance}.
* @throws DaoException
*/
Performance getPerformance(Integer id) throws DaoException;
/**
* Sauvegarde une nouvelle performance.
*
* @param performance La nouvelle performance à sauvegarder.
* @throws DaoException
*/
void saveNewPerformance(Performance performance) throws DaoException;
/**
* Supprime une performance.
*
* @param id La performance à supprimer.
* @throws DaoException
*/
void deletePerformance(int id) throws DaoException;
/**
* Supprime toutes les performances.
*
* @throws DaoException
*/
void deleteAllPerformances() throws DaoException;
}
| mit |
codingchili/flashcards-webapp | src/main/java/com/codingchili/flashcards/request/AccountRequest.java | 1865 | package com.codingchili.flashcards.request;
import com.codingchili.core.listener.Request;
import com.codingchili.core.listener.RequestWrapper;
import com.codingchili.core.protocol.Serializer;
import com.codingchili.core.protocol.exception.AuthorizationRequiredException;
import com.codingchili.core.security.Token;
import static com.codingchili.core.configuration.CoreStrings.*;
/**
* Request helper class for authentication.
*/
public class AccountRequest implements RequestWrapper {
public static final String ID_RECEIVER = "receiver";
public static final String ID_TITLE = "title";
public static final String ID_BODY = "body";
public static final String ID_MESSAGE = "message";
public static final String ID_OLD_PASSWORD = "old_password";
private Request request;
public AccountRequest(Request request) {
this.request = request;
}
public String username() {
return data().getString(ID_USERNAME);
}
public String authenticatedUser() {
Token token = Serializer.unpack(data().getJsonObject(ID_TOKEN), Token.class);
if (token == null) {
throw new AuthorizationRequiredException();
}
return token.getDomain();
}
public String password() {
return data().getString(ID_PASSWORD);
}
public String receiver() {
return data().getString(ID_RECEIVER);
}
public String title() {
return data().getString(ID_TITLE);
}
public String body() {
return data().getString(ID_BODY);
}
public String message() {
return data().getString(ID_MESSAGE);
}
public String oldpassword() {
return data().getString(ID_OLD_PASSWORD);
}
@Override
public Request request() {
return request;
}
}
| mit |
rutgerkok/BlockLocker | src/main/java/nl/rutgerkok/blocklocker/event/PlayerProtectionCreateEvent.java | 1922 | package nl.rutgerkok.blocklocker.event;
import java.util.Objects;
import org.bukkit.block.Block;
import org.bukkit.entity.Player;
import org.bukkit.event.Cancellable;
import org.bukkit.event.HandlerList;
import org.bukkit.event.player.PlayerEvent;
/**
* Called just before a protection is created by a player. If you cancel the
* event, the sign will not be placed, or will be popped off.
*
* <p>
* This event is only fired if a player edits a sign to become a [Private] sign,
* or if a player right-clicks a protectable block with a sign in their hand,
* creating a protection. Note that people with world editing tools can bypass
* this event.
*/
public class PlayerProtectionCreateEvent extends PlayerEvent implements Cancellable {
private static final HandlerList handlers = new HandlerList();
public static HandlerList getHandlerList() {
return handlers;
}
private boolean isCancelled = false;
private final Block signBlock;
public PlayerProtectionCreateEvent(Player player, Block signBlock) {
super(Objects.requireNonNull(player, "player"));
this.signBlock = Objects.requireNonNull(signBlock, "signBlock");
}
@Override
public HandlerList getHandlers() {
return handlers;
}
/**
* Gets the block where the [Private] sign is or will be located. Note that
* there are different ways to create a protection: you can right-click a chest
* with a sign in your hand, or you can manually place a sign and edit that. In
* the first case, no sign will exist yet at this location while in the second
* case, there will already be a sign with some text on it.
*
* @return The block where the [Private] sign is or will be located.
*/
public Block getSignBlock() {
return this.signBlock;
}
@Override
public boolean isCancelled() {
return this.isCancelled;
}
@Override
public void setCancelled(boolean cancel) {
this.isCancelled = cancel;
}
}
| mit |
julianthome/ctrans | src/main/java/com/julianthome/ctrans/ExpressionGraph.java | 6491 | /**
* CTrans - A constraint translator
* <p>
* The MIT License (MIT)
* <p>
* Copyright (c) 2017 Julian Thome <julian.thome.de@gmail.com>
* <p>
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do
* so, subject to the following conditions:
* <p>
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
* <p>
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
**/
package com.julianthome.ctrans;
import org.jgrapht.graph.DirectedPseudograph;
import java.util.*;
import java.util.stream.Collectors;
public class ExpressionGraph extends DirectedPseudograph<Expression,Edge> {
public ExpressionGraph() {
super(Edge.class);
}
public boolean hasParameters(Expression ex) {
return getParamtersFor(ex).size() > 0;
}
public List<Expression> getParamtersFor(Expression ex) {
List<Expression> ret = new Vector<>();
TreeSet<Edge> sort = new TreeSet<>();
sort.addAll(incomingEdgesOf(ex));
for(Edge s : sort) {
ret.add(s.getSource());
}
return ret;
}
public Expression addExpression(Expression.Kind kind, Expression ex1,
Expression ex2) {
Expression exp = new Expression(kind);
addVertex(exp);
addVertex(ex1);
addVertex(ex2);
addEdge(ex1, exp, new Edge(ex1, exp,1));
addEdge(ex2, exp, new Edge(ex2, exp,2));
return exp;
}
public Expression addExpression(Expression.Kind kind, Expression ex1) {
Expression exp = new Expression(kind);
addVertex(exp);
addVertex(ex1);
addEdge(ex1, exp, new Edge(ex1, exp,1));
return exp;
}
public Expression replace (Expression a, Expression b) {
Set<Edge> ain = incomingEdgesOf(a);
Set<Edge> aout = outgoingEdgesOf(a);
Set<Edge> toadd = new HashSet<>();
for(Edge i : ain) {
toadd.add(new Edge(i.getSource(),b,i.getSequence()));
}
for(Edge o : aout) {
toadd.add(new Edge(b,o.getTarget(),o.getSequence()));
}
addVertex(b);
removeVertex(a);
toadd.forEach(t -> addEdge(t.getSource(),t.getTarget(),t.getSequence
()));
return b;
}
public void addEdge(Expression src, Expression dst, int seq){
super.addEdge(src, dst, new Edge(src,dst,seq));
}
public Set<Expression> connectedInNodes(Expression e) {
return incomingEdgesOf(e).stream().map(x -> x.getSource()).collect
(Collectors.toSet());
}
public Set<Expression> connectedOutNodes(Expression e) {
return outgoingEdgesOf(e).stream().map(x -> x.getTarget()).collect
(Collectors.toSet());
}
public String toDot() {
StringBuilder sb = new StringBuilder();
sb.append("digraph {\n" +
"\trankdir=TB;\n");
sb.append("\tnode [fontname=Helvetica,fontsize=11];\n");
sb.append("\tedge [fontname=Helvetica,fontsize=10];\n");
String shape = "";
String label = "";
String color = "black";
for (Expression n : this.vertexSet()) {
String kind = "";
if(n.getKind() == Expression.Kind.ATOM) {
shape = "ellipse";
} else {
shape = "box";
}
sb.append("\tn" + n.getId() + " [color=" + color + ",shape=\"" +
shape + "\"," + "label=\"" + n.getId() +"\\n" + n
.toString()
+"\"];\n");
}
String option = "";
String ecolor = "black";
String par = "";
for (Edge e : this.edgeSet()) {
Expression src = e.getSource();
Expression dest = e.getTarget();
assert (outgoingEdgesOf(src).contains(e));
assert (incomingEdgesOf(dest).contains(e));
assert (src != null);
assert (dest != null);
sb.append("\tn" + src.getId() + " -> n" + dest.getId() +
"[color=\"" + ecolor + "\",label=\"" + e.sequence + "\"" +
option + "];\n");
}
sb.append("}");
return sb.toString();
}
private String buildStringsForExp(Map<Expression,String> smap,
Expression ex) {
if(smap.containsKey(ex))
return smap.get(ex);
if(ex.getKind() == Expression.Kind.ATOM) {
smap.put(ex, ex.toString());
return ex.toString();
} else if (ex.getKind() == Expression.Kind.NEGATION) {
Expression par0 = getParamtersFor(ex).get(0);
smap.put(ex, "not " + buildStringsForExp(smap,par0));
} else {
// any binary operation
assert getParamtersFor(ex).size() == 2;
Expression par0 = getParamtersFor(ex).get(0);
Expression par1 = getParamtersFor(ex).get(1);
smap.put(ex, buildStringsForExp(smap,par0) + " " + ex.toString()
+ " " +
buildStringsForExp(smap,par1));
}
return smap.get(ex);
}
public String serialize() {
Map<Expression,String> emap = new HashMap<>();
for(Expression ex : vertexSet()) {
buildStringsForExp(emap, ex);
}
Set<Expression> root = vertexSet().stream().filter(x -> outDegreeOf
(x) == 0).collect(Collectors.toSet());
assert root.size() == 1;
assert emap.containsKey(root.iterator().next());
return emap.get(root.iterator().next());
}
}
| mit |
n-zeplo/TW101_Exercises | Part1_exercises/src/HorizontalLine.java | 356 | import java.util.Scanner;
/**
* Created by Nathan_Zeplowitz on 4/11/15.
*/
public class HorizontalLine {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter a number");
int n = in.nextInt();
for (int i = 0; i < n; i++)
System.out.print("*");
}
}
| mit |
Azure/azure-sdk-for-java | sdk/appconfiguration/azure-resourcemanager-appconfiguration/src/main/java/com/azure/resourcemanager/appconfiguration/models/PrivateLinkResource.java | 1591 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.appconfiguration.models;
import com.azure.resourcemanager.appconfiguration.fluent.models.PrivateLinkResourceInner;
import java.util.List;
/** An immutable client-side representation of PrivateLinkResource. */
public interface PrivateLinkResource {
/**
* Gets the id property: The resource ID.
*
* @return the id value.
*/
String id();
/**
* Gets the name property: The name of the resource.
*
* @return the name value.
*/
String name();
/**
* Gets the type property: The type of the resource.
*
* @return the type value.
*/
String type();
/**
* Gets the groupId property: The private link resource group id.
*
* @return the groupId value.
*/
String groupId();
/**
* Gets the requiredMembers property: The private link resource required member names.
*
* @return the requiredMembers value.
*/
List<String> requiredMembers();
/**
* Gets the requiredZoneNames property: The list of required DNS zone names of the private link resource.
*
* @return the requiredZoneNames value.
*/
List<String> requiredZoneNames();
/**
* Gets the inner com.azure.resourcemanager.appconfiguration.fluent.models.PrivateLinkResourceInner object.
*
* @return the inner object.
*/
PrivateLinkResourceInner innerModel();
}
| mit |
gabrielsimas/watchdog | WatchDogEclipsePlugin/WatchDogUnitTests/src/nl/tudelft/watchdog/logic/interval/NetworkUtilsTest.java | 2219 | package nl.tudelft.watchdog.logic.interval;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
import java.util.ArrayList;
import java.util.Date;
import nl.tudelft.watchdog.core.logic.interval.intervaltypes.IDEOpenInterval;
import nl.tudelft.watchdog.core.logic.interval.intervaltypes.IntervalBase;
import nl.tudelft.watchdog.core.logic.network.JsonTransferer;
import nl.tudelft.watchdog.core.logic.network.NetworkUtils;
import nl.tudelft.watchdog.core.logic.network.NetworkUtils.Connection;
import nl.tudelft.watchdog.core.logic.network.ServerCommunicationException;
import nl.tudelft.watchdog.core.logic.network.ServerReturnCodeException;
import org.junit.Ignore;
import org.junit.Test;
/**
* These tests rely on our public WatchDog service running. They are therefore
* not mere unit, but more integration tests.
*/
public class NetworkUtilsTest {
private String fooBarUser = "407c87ddd731a223ec30e6dc4a63971ed3b2e7b0";
private String fooBarProject = "";
@Test
@Ignore
public void testUserDoesNotExistTransfer() {
String url = NetworkUtils.buildExistingUserURL("nonexistantSHA1");
assertEquals(Connection.UNSUCCESSFUL,
NetworkUtils.urlExistsAndReturnsStatus200(url));
}
@Test
@Ignore
public void testUserExistsTransfer() {
String url = NetworkUtils.buildExistingUserURL(fooBarUser);
assertEquals(Connection.SUCCESSFUL,
NetworkUtils.urlExistsAndReturnsStatus200(url));
}
@Test
@Ignore
public void testIntervalTransfer() {
JsonTransferer it = new JsonTransferer();
IntervalBase interval = new IDEOpenInterval(new Date());
ArrayList<IntervalBase> intervals = createSampleIntervals(interval);
String json = it.toJson(intervals);
try {
NetworkUtils.transferJsonAndGetResponse(NetworkUtils
.buildIntervalsPostURL(fooBarUser, fooBarProject), json);
} catch (ServerCommunicationException | ServerReturnCodeException e) {
fail(e.getMessage());
}
}
private ArrayList<IntervalBase> createSampleIntervals(IntervalBase interval) {
ArrayList<IntervalBase> intervals = new ArrayList<IntervalBase>();
interval.setStartTime(new Date(1));
interval.setEndTime(new Date(2));
intervals.add(interval);
return intervals;
}
}
| mit |
Panchen/XChange | xchange-lgo/src/main/java/org/knowm/xchange/lgo/LgoEnv.java | 1632 | package org.knowm.xchange.lgo;
import org.knowm.xchange.ExchangeSpecification;
public final class LgoEnv {
public static final String KEYS_URL = "Keys_Url";
public static final String WS_URL = "Websocket_Url";
public static final String SIGNATURE_SERVICE = "Signature_Service";
private LgoEnv() {}
public static ExchangeSpecification prodMarkets() {
ExchangeSpecification result = baseSpecification();
result.setSslUri("https://exchange-api.exchange.lgo.markets");
result.setHost("exchange-api.exchange.lgo.markets");
result.setExchangeSpecificParametersItem(
KEYS_URL, "https://storage.googleapis.com/lgo-markets-keys");
result.setExchangeSpecificParametersItem(WS_URL, "wss://ws.exchange.lgo.markets");
return result;
}
public static ExchangeSpecification sandboxMarkets() {
ExchangeSpecification result = baseSpecification();
result.setSslUri("https://exchange-api.sandbox.lgo.markets");
result.setHost("exchange-api.sandbox.lgo.markets");
result.setExchangeSpecificParametersItem(
KEYS_URL, "https://storage.googleapis.com/lgo-sandbox_batch_keys");
result.setExchangeSpecificParametersItem(WS_URL, "wss://ws.sandbox.lgo.markets");
return result;
}
private static ExchangeSpecification baseSpecification() {
ExchangeSpecification result = new ExchangeSpecification(LgoExchange.class);
result.setExchangeName("LGO");
result.setExchangeDescription(
"LGO is a fare and secure exchange for institutional and retail investors.");
return result;
}
public enum SignatureService {
PASSTHROUGHS,
LOCAL_RSA
}
}
| mit |
ZFGCCP/ZFGC3 | src/main/java/com/zfgc/rules/users/UsersRuleChecker.java | 3041 | package com.zfgc.rules.users;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.zfgc.dataprovider.UsersDataProvider;
import com.zfgc.exception.ZfgcValidationException;
import com.zfgc.model.BaseZfgcModel;
import com.zfgc.model.users.Users;
import com.zfgc.rules.AbstractRulesChecker;
import com.zfgc.rules.Rule;
import com.zfgc.services.authentication.AuthenticationService;
import com.zfgc.services.users.UsersService;
@Component
public class UsersRuleChecker extends AbstractRulesChecker<Users>{
@Autowired
AuthenticationService authenticationService;
@Autowired
UsersDataProvider usersDataProvider;
@Override
public void rulesCheck(Users model, Users user) throws ZfgcValidationException, RuntimeException {
if(authenticationService.doesEmailExist(model.getUserContactInfo().getEmail())){
Rule emailDuplicate = new Rule();
emailDuplicate.setRuleName("EMAIL_DUPLICATE");
emailDuplicate.setErrorMessage("Email Address already exists");
model.getErrors().getRuleErrors().add(emailDuplicate);
}
if(doesDisplayNameExist(model.getDisplayName())){
Rule displayNameDuplicate = new Rule();
displayNameDuplicate.setRuleName("DISPLAY_NAME_DUPLICATE");
displayNameDuplicate.setErrorMessage("That display name is already taken");
model.getErrors().getRuleErrors().add(displayNameDuplicate);
}
if(doesLoginNameExist(model.getLoginName())){
Rule loginNameDuplicate = new Rule();
loginNameDuplicate.setRuleName("LOGIN_NAME_DUPLICATE");
loginNameDuplicate.setErrorMessage("That login name is already taken");
model.getErrors().getRuleErrors().add(loginNameDuplicate);
}
if(model.getAge() < 13){
Rule coppaViolation = new Rule();
coppaViolation.setRuleName("COPPA_VIOLATION_AGE");
coppaViolation.setErrorMessage("You must be 13 years of age or older to use this forum.");
model.getErrors().getRuleErrors().add(coppaViolation);
}
if(!model.getUserSecurityInfo().getNewPassword().equals(model.getUserSecurityInfo().getConfirmNewPassword())) {
Rule coppaViolation = new Rule();
coppaViolation.setRuleName("UMATCHED_PASSWORD");
coppaViolation.setErrorMessage("The password you entered did not match the confirmation.");
model.getErrors().getRuleErrors().add(coppaViolation);
}
checkAgreeToTerms(model);
}
protected void checkAgreeToTerms(Users model){
if(!model.getAgreeToTermsFlag()){
Rule tosUnchecked = new Rule();
tosUnchecked.setRuleName("TOS_UNCHECKED");
tosUnchecked.setErrorMessage("You must acknowledge that you have read and agree to the terms of service and are 13 years of age or older.");
model.getErrors().getRuleErrors().add(tosUnchecked);
}
}
protected Boolean doesLoginNameExist(String loginName) throws RuntimeException {
return usersDataProvider.doesLoginNameExist(loginName);
}
protected Boolean doesDisplayNameExist(String loginName) throws RuntimeException {
return usersDataProvider.doesDisplayNameExist(loginName);
}
}
| mit |
feihua666/feihua-jdbc-api | src/main/java/feihua/jdbc/api/pojo/BasePojo.java | 183 | package feihua.jdbc.api.pojo;
import java.io.Serializable;
/**
* basepojo
* Created by yangwei
* Created at 2017/8/22 10:23
*/
public class BasePojo implements Serializable {
}
| mit |
arapaka/algorithms-datastructures | algorithms/src/main/java/multiThreading/Semaphore.java | 375 | package multiThreading;
/**
* Created by archithrapaka on 6/27/17.
*/
public class Semaphore {
private boolean signal = false;
public synchronized void take() {
this.signal = true;
this.notify();
}
public synchronized void release() throws InterruptedException {
while (!this.signal) wait();
this.signal = false;
}
}
| mit |
derari/cthul | strings/src/main/java/org/cthul/strings/format/conversion/FormatConversionBase.java | 3644 | package org.cthul.strings.format.conversion;
import java.io.IOException;
import org.cthul.strings.format.FormatConversion;
import org.cthul.strings.format.FormatImplBase;
/**
* Provides some utility methods for implementing a {@link FormatConversion}
* @author Arian Treffer
*/
public abstract class FormatConversionBase
extends FormatImplBase
implements FormatConversion {
/**
* Appends {@code csq} to {@code a}, left-justified.
* @param a
* @param csq
* @param pad padding character padding character
* @param width minimum of characters that will be written
* @throws IOException
*/
protected static void justifyLeft(Appendable a, CharSequence csq, char pad, int width) throws IOException {
final int padLen = width - csq.length();
a.append(csq);
for (int i = 0; i < padLen; i++) a.append(pad);
}
/**
* Left-justifies {@code csq}.
* @param csq
* @param pad padding character
* @param width minimum of characters that will be written minimum of characters that will be written
* @return justified string
*/
protected static String justifyLeft(CharSequence csq, char pad, int width) {
try {
StringBuilder sb = new StringBuilder(width);
justifyLeft(sb, csq, pad, width);
return sb.toString();
} catch (IOException e) {
throw new AssertionError("StringBuilder failed", e);
}
}
/**
* Appends {@code csq} to {@code a}, right-justified.
* @param a
* @param csq
* @param pad padding character
* @param width minimum of characters that will be written
* @throws IOException
*/
protected static void justifyRight(Appendable a, CharSequence csq, char pad, int width) throws IOException {
final int padLen = width - csq.length();
for (int i = 0; i < padLen; i++) a.append(pad);
a.append(csq);
}
/**
* Right-justifies {@code csq}.
* @param csq
* @param pad padding character
* @param width minimum of characters that will be written
* @return justified string
*/
protected static String justifyRight(CharSequence csq, char pad, int width) {
try {
StringBuilder sb = new StringBuilder(width);
justifyRight(sb, csq, pad, width);
return sb.toString();
} catch (IOException e) {
throw new AssertionError("StringBuilder failed", e);
}
}
/**
* Appends {@code csq} to {@code a}, centered.
* @param a
* @param csq
* @param pad padding character
* @param width minimum of characters that will be written
* @throws IOException
*/
protected static void justifyCenter(Appendable a, CharSequence csq, char pad, int width) throws IOException {
final int padLen = width - csq.length();
for (int i = 0; i < padLen/2; i++) a.append(pad);
a.append(csq);
for (int i = 0; i < (padLen+1)/2; i++) a.append(pad);
}
/**
* Centers {@code csq}.
* @param csq
* @param pad padding character
* @param width minimum of characters that will be written
* @return justified string
*/
protected static String justifyCenter(CharSequence csq, char pad, int width) {
try {
StringBuilder sb = new StringBuilder(width);
justifyCenter(sb, csq, pad, width);
return sb.toString();
} catch (IOException e) {
throw new AssertionError("StringBuilder failed", e);
}
}
}
| mit |
mauriciotogneri/fileexplorer | app/src/main/java/com/mauriciotogneri/fileexplorer/models/FileInfo.java | 11344 | package com.mauriciotogneri.fileexplorer.models;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Build;
import android.webkit.MimeTypeMap;
import com.mauriciotogneri.fileexplorer.BuildConfig;
import com.mauriciotogneri.fileexplorer.utils.CrashUtils;
import com.mauriciotogneri.fileexplorer.utils.SpaceFormatter;
import java.io.Closeable;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.ref.SoftReference;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.List;
import androidx.core.content.FileProvider;
public class FileInfo
{
private final File file;
private String cachedName = null;
private String cachedPath = null;
private String cachedMimeType = null;
private String cachedExtension = null;
private String cachedSize = null;
private Boolean cachedIsImage = null;
private Boolean cachedIsPdf = null;
private Boolean cachedIsAudio = null;
private Boolean cachedIsVideo = null;
private Boolean cachedIsDirectory = null;
private Integer cachedNumberOfChildren = null;
private SoftReference<Bitmap> cachedBitmap;
private boolean isSelected = false;
public FileInfo(File file)
{
this.file = file;
this.cachedBitmap = new SoftReference<>(null);
}
public List<FileInfo> files()
{
List<FileInfo> result = new ArrayList<>();
if (isDirectory())
{
for (File currentFile : children())
{
if (currentFile != null)
{
FileInfo fileInfo = new FileInfo(currentFile);
result.addAll(fileInfo.files());
}
}
}
else
{
result.add(this);
}
return result;
}
public boolean exists()
{
return file.exists();
}
public boolean rename(String newName)
{
File newFile = new File(file.getParentFile(), newName);
return !newFile.exists() && file.renameTo(newFile);
}
public boolean copy(FileInfo target, boolean delete)
{
if (isDirectory())
{
File newTargetFolder = new File(target.file, file.getName());
boolean allCopied = (newTargetFolder.exists() || newTargetFolder.mkdirs());
for (File currentFile : children())
{
if (currentFile != null)
{
FileInfo fileInfo = new FileInfo(currentFile);
File newTarget = new File(target.file, file.getName());
allCopied &= (newTarget.exists() || newTarget.mkdirs()) && fileInfo.copy(new FileInfo(newTarget), delete);
}
}
if (delete && allCopied)
{
delete();
}
return allCopied;
}
else
{
boolean copied = copy(file, target.file);
if (delete && copied)
{
delete();
}
return copied;
}
}
private boolean copy(File source, File destination)
{
File target = new File(destination, source.getName());
InputStream inputStream = null;
OutputStream outputStream = null;
try
{
inputStream = new FileInputStream(source);
outputStream = new FileOutputStream(target);
byte[] buffer = new byte[1024];
int length;
while ((length = inputStream.read(buffer)) > 0)
{
outputStream.write(buffer, 0, length);
}
outputStream.flush();
return true;
}
catch (Exception e)
{
CrashUtils.report(e);
return false;
}
finally
{
close(inputStream);
close(outputStream);
}
}
private void close(Closeable closeable)
{
try
{
if (closeable != null)
{
closeable.close();
}
}
catch (Exception e)
{
CrashUtils.report(e);
}
}
public boolean delete()
{
if (isDirectory())
{
for (File currentFile : children())
{
if (currentFile != null)
{
FileInfo fileInfo = new FileInfo(currentFile);
fileInfo.delete();
}
}
}
return file.delete();
}
public boolean hasFiles()
{
if (isDirectory())
{
for (File currentFile : children())
{
if (currentFile != null)
{
FileInfo fileInfo = new FileInfo(currentFile);
if (fileInfo.hasFiles())
{
return true;
}
}
}
return false;
}
else
{
return true;
}
}
public File parent()
{
return file.getParentFile();
}
public String name()
{
if (cachedName == null)
{
cachedName = file.getName();
}
return cachedName;
}
public Uri uri(Context context)
{
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)
{
try
{
return FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", file);
}
catch (Exception e)
{
return Uri.fromFile(file);
}
}
else
{
return Uri.fromFile(file);
}
}
public String path()
{
if (cachedPath == null)
{
cachedPath = file.getAbsolutePath();
}
return cachedPath;
}
public String mimeType()
{
if (cachedMimeType == null)
{
cachedMimeType = mimeTypeV1();
if (cachedMimeType == null)
{
cachedMimeType = mimeTypeV2();
if (cachedMimeType == null)
{
cachedMimeType = "*/*";
}
}
}
return cachedMimeType;
}
private String mimeTypeV1()
{
try
{
return URLConnection.guessContentTypeFromName(file.getAbsolutePath());
}
catch (Exception e)
{
return null;
}
}
private String mimeTypeV2()
{
try
{
String extension = MimeTypeMap.getFileExtensionFromUrl(file.getAbsolutePath());
return MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);
}
catch (Exception e)
{
return null;
}
}
public boolean isImage()
{
if (cachedIsImage == null)
{
String mimeType = mimeType();
cachedIsImage = (mimeType != null) && mimeType.startsWith("image/");
}
return cachedIsImage;
}
public boolean isPdf()
{
if (cachedIsPdf == null)
{
String mimeType = mimeType();
cachedIsPdf = (mimeType != null) && mimeType.startsWith("application/pdf");
}
return cachedIsPdf;
}
public boolean isAudio()
{
if (cachedIsAudio == null)
{
String mimeType = mimeType();
cachedIsAudio = (mimeType != null) && mimeType.startsWith("audio/");
}
return cachedIsAudio;
}
public boolean isVideo()
{
if (cachedIsVideo == null)
{
String mimeType = mimeType();
cachedIsVideo = (mimeType != null) && mimeType.startsWith("video");
}
return cachedIsVideo;
}
public boolean isDirectory()
{
if (cachedIsDirectory == null)
{
cachedIsDirectory = file.isDirectory();
}
return cachedIsDirectory;
}
public int numberOfChildren()
{
if (cachedNumberOfChildren == null)
{
cachedNumberOfChildren = children().length;
}
return cachedNumberOfChildren;
}
private File[] children()
{
File[] children = file.listFiles();
return (children != null) ? children : new File[0];
}
public String extension()
{
if (cachedExtension == null)
{
cachedExtension = "";
String name = name();
int index = name.lastIndexOf(".");
if (index > -1)
{
String extension = name.substring(index + 1);
if (extension.length() <= 4)
{
cachedExtension = extension.toUpperCase();
}
}
}
return cachedExtension;
}
public String size()
{
if (cachedSize == null)
{
SpaceFormatter spaceFormatter = new SpaceFormatter();
cachedSize = spaceFormatter.format(file.length());
}
return cachedSize;
}
public boolean hasCachedBitmap()
{
return (cachedBitmap.get() != null);
}
public Bitmap bitmap(int maxSize)
{
Bitmap bitmap = cachedBitmap.get();
if (bitmap == null)
{
String path = path();
// decode with inJustDecodeBounds=true to check dimensions
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(path, options);
// calculate inSampleSize
options.inSampleSize = calculateInSampleSize(options, maxSize, maxSize);
// decode bitmap with inSampleSize set
options.inJustDecodeBounds = false;
bitmap = BitmapFactory.decodeFile(path, options);
cachedBitmap = new SoftReference<>(bitmap);
}
return bitmap;
}
private int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight)
{
// raw height and width of image
int height = options.outHeight;
int width = options.outWidth;
int inSampleSize = 1;
if (height > reqHeight || width > reqWidth)
{
int halfHeight = height / 2;
int halfWidth = width / 2;
// calculate the largest inSampleSize value that is a power of 2 and keeps both
// height and width larger than the requested height and width.
while ((halfHeight / inSampleSize) > reqHeight && (halfWidth / inSampleSize) > reqWidth)
{
inSampleSize *= 2;
}
}
return inSampleSize;
}
public boolean toggleSelection()
{
isSelected = !isSelected;
return isSelected;
}
public void select(boolean value)
{
isSelected = value;
}
public boolean isSelected()
{
return isSelected;
}
} | mit |
InnovateUKGitHub/innovation-funding-service | common/ifs-resources/src/main/java/org/innovateuk/ifs/project/state/OnHoldReasonResource.java | 1237 | package org.innovateuk.ifs.project.state;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
public class OnHoldReasonResource {
private String title;
private String body;
private OnHoldReasonResource() {
}
public OnHoldReasonResource(String title, String body) {
this.title = title;
this.body = body;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
OnHoldReasonResource that = (OnHoldReasonResource) o;
return new EqualsBuilder()
.append(title, that.title)
.append(body, that.body)
.isEquals();
}
@Override
public int hashCode() {
return new HashCodeBuilder(17, 37)
.append(title)
.append(body)
.toHashCode();
}
}
| mit |
boundlessgeo/geopackage-android | geopackage-sdk/src/main/java/mil/nga/geopackage/db/metadata/GeometryMetadataDataSource.java | 16520 | package mil.nga.geopackage.db.metadata;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import mil.nga.geopackage.BoundingBox;
import mil.nga.geopackage.GeoPackageException;
import mil.nga.wkb.geom.GeometryEnvelope;
/**
* Table metadata Data Source
*
* @author osbornb
*/
public class GeometryMetadataDataSource {
/**
* Database
*/
private SQLiteDatabase db;
/**
* Constructor
*
* @param db
*/
public GeometryMetadataDataSource(GeoPackageMetadataDb db) {
this.db = db.getDb();
}
/**
* Constructor
*
* @param db
*/
GeometryMetadataDataSource(SQLiteDatabase db) {
this.db = db;
}
/**
* Create a new geometry metadata
*
* @param metadata
* @return
*/
public long create(GeometryMetadata metadata) {
ContentValues values = new ContentValues();
values.put(GeometryMetadata.COLUMN_GEOPACKAGE_ID, metadata.getGeoPackageId());
values.put(GeometryMetadata.COLUMN_TABLE_NAME, metadata.getTableName());
values.put(GeometryMetadata.COLUMN_ID, metadata.getId());
values.put(GeometryMetadata.COLUMN_MIN_X, metadata.getMinX());
values.put(GeometryMetadata.COLUMN_MAX_X, metadata.getMaxX());
values.put(GeometryMetadata.COLUMN_MIN_Y, metadata.getMinY());
values.put(GeometryMetadata.COLUMN_MAX_Y, metadata.getMaxY());
values.put(GeometryMetadata.COLUMN_MIN_Z, metadata.getMinZ());
values.put(GeometryMetadata.COLUMN_MAX_Z, metadata.getMaxZ());
values.put(GeometryMetadata.COLUMN_MIN_M, metadata.getMinM());
values.put(GeometryMetadata.COLUMN_MAX_M, metadata.getMaxM());
long insertId = db.insert(
GeometryMetadata.TABLE_NAME, null,
values);
if (insertId == -1) {
throw new GeoPackageException(
"Failed to insert geometry metadata. GeoPackage Id: "
+ metadata.getGeoPackageId() + ", Table Name: "
+ metadata.getTableName() + ", Geometry Id: "
+ metadata.getId());
}
metadata.setId(insertId);
return insertId;
}
/**
* Create a new geometry metadata from an envelope
*
* @param geoPackage
* @param tableName
* @param geomId
* @param envelope
* @return
*/
public GeometryMetadata create(String geoPackage, String tableName, long geomId, GeometryEnvelope envelope) {
return create(getGeoPackageId(geoPackage), tableName, geomId, envelope);
}
/**
* Create a new geometry metadata from an envelope
*
* @param geoPackageId
* @param tableName
* @param geomId
* @param envelope
* @return
*/
public GeometryMetadata create(long geoPackageId, String tableName, long geomId, GeometryEnvelope envelope) {
GeometryMetadata metadata = populate(geoPackageId, tableName, geomId, envelope);
create(metadata);
return metadata;
}
/**
* Populate a new geometry metadata from an envelope
*
* @param geoPackageId
* @param tableName
* @param geomId
* @param envelope
* @return
*/
public GeometryMetadata populate(long geoPackageId, String tableName, long geomId, GeometryEnvelope envelope) {
GeometryMetadata metadata = new GeometryMetadata();
metadata.setGeoPackageId(geoPackageId);
metadata.setTableName(tableName);
metadata.setId(geomId);
metadata.setMinX(envelope.getMinX());
metadata.setMaxX(envelope.getMaxX());
metadata.setMinY(envelope.getMinY());
metadata.setMaxY(envelope.getMaxY());
if (envelope.hasZ()) {
metadata.setMinZ(envelope.getMinZ());
metadata.setMaxZ(envelope.getMaxZ());
}
if (envelope.hasM()) {
metadata.setMinM(envelope.getMinM());
metadata.setMaxM(envelope.getMaxM());
}
return metadata;
}
/**
* Delete the geometry metadata
*
* @param metadata
* @return
*/
public boolean delete(GeometryMetadata metadata) {
return delete(metadata.getGeoPackageId(), metadata.getTableName(), metadata.getId());
}
/**
* Delete geometry metadata by database
*
* @param geoPackage
* @return
*/
public int delete(String geoPackage) {
return delete(getGeoPackageId(geoPackage));
}
/**
* Delete geometry metadata by database
*
* @param geoPackageId
* @return
*/
public int delete(long geoPackageId) {
String whereClause = GeometryMetadata.COLUMN_GEOPACKAGE_ID + " = ?";
String[] whereArgs = new String[]{String.valueOf(geoPackageId)};
int deleteCount = db.delete(
GeometryMetadata.TABLE_NAME,
whereClause, whereArgs);
return deleteCount;
}
/**
* Delete geometry metadata by table name
*
* @param geoPackage
* @param tableName
* @return
*/
public int delete(String geoPackage, String tableName) {
return delete(getGeoPackageId(geoPackage), tableName);
}
/**
* Delete geometry metadata by table name
*
* @param geoPackageId
* @param tableName
* @return
*/
public int delete(long geoPackageId, String tableName) {
String whereClause = GeometryMetadata.COLUMN_GEOPACKAGE_ID
+ " = ? AND " + GeometryMetadata.COLUMN_TABLE_NAME + " = ?";
String[] whereArgs = new String[]{String.valueOf(geoPackageId), tableName};
int deleteCount = db.delete(
GeometryMetadata.TABLE_NAME,
whereClause, whereArgs);
return deleteCount;
}
/**
* Delete the geometry metadata
*
* @param geoPackage
* @param tableName
* @param id
* @return
*/
public boolean delete(String geoPackage, String tableName, long id) {
return delete(getGeoPackageId(geoPackage), tableName, id);
}
/**
* Delete the geometry metadata
*
* @param geoPackageId
* @param tableName
* @param id
* @return
*/
public boolean delete(long geoPackageId, String tableName, long id) {
String whereClause = GeometryMetadata.COLUMN_GEOPACKAGE_ID
+ " = ? AND " + GeometryMetadata.COLUMN_TABLE_NAME + " = ? AND "
+ GeometryMetadata.COLUMN_ID + " = ?";
String[] whereArgs = new String[]{String.valueOf(geoPackageId), tableName, String.valueOf(id)};
int deleteCount = db.delete(
GeometryMetadata.TABLE_NAME,
whereClause, whereArgs);
return deleteCount > 0;
}
/**
* Create the geometry metadata or update if it already exists
*
* @param metadata
* @return
*/
public boolean createOrUpdate(GeometryMetadata metadata) {
boolean success = false;
if (exists(metadata)) {
success = update(metadata);
} else {
create(metadata);
success = true;
}
return success;
}
/**
* Update the geometry metadata
*
* @param metadata
* @return
*/
public boolean update(GeometryMetadata metadata) {
String whereClause = GeometryMetadata.COLUMN_GEOPACKAGE_ID
+ " = ? AND " + GeometryMetadata.COLUMN_TABLE_NAME + " = ? AND "
+ GeometryMetadata.COLUMN_ID + " = ?";
String[] whereArgs = new String[]{String.valueOf(metadata.getGeoPackageId()), metadata.getTableName(), String.valueOf(metadata.getId())};
ContentValues values = new ContentValues();
values.put(GeometryMetadata.COLUMN_MIN_X, metadata.getMinX());
values.put(GeometryMetadata.COLUMN_MAX_X, metadata.getMaxX());
values.put(GeometryMetadata.COLUMN_MIN_Y, metadata.getMinY());
values.put(GeometryMetadata.COLUMN_MAX_Y, metadata.getMaxY());
values.put(GeometryMetadata.COLUMN_MIN_Z, metadata.getMinZ());
values.put(GeometryMetadata.COLUMN_MAX_Z, metadata.getMaxZ());
values.put(GeometryMetadata.COLUMN_MIN_M, metadata.getMinM());
values.put(GeometryMetadata.COLUMN_MAX_M, metadata.getMaxM());
int updateCount = db.update(
GeometryMetadata.TABLE_NAME, values,
whereClause, whereArgs);
return updateCount > 0;
}
/**
* Check if a table metadata exists
*
* @param metadata
* @return
*/
public boolean exists(GeometryMetadata metadata) {
return get(metadata) != null;
}
/**
* Get a table metadata
*
* @param metadata
* @return
*/
public GeometryMetadata get(GeometryMetadata metadata) {
return get(metadata.getGeoPackageId(), metadata.getTableName(), metadata.getId());
}
/**
* Get a table metadata
*
* @param geoPackage
* @param tableName
* @param id
* @return
*/
public GeometryMetadata get(String geoPackage, String tableName, long id) {
return get(getGeoPackageId(geoPackage), tableName, id);
}
/**
* Get a table metadata
*
* @param geoPackageId
* @param tableName
* @param id
* @return
*/
public GeometryMetadata get(long geoPackageId, String tableName, long id) {
String selection = GeometryMetadata.COLUMN_GEOPACKAGE_ID
+ " = ? AND " + GeometryMetadata.COLUMN_TABLE_NAME + " = ? AND "
+ GeometryMetadata.COLUMN_ID + " = ?";
String[] selectionArgs = new String[]{String.valueOf(geoPackageId), tableName, String.valueOf(id)};
Cursor cursor = db.query(
GeometryMetadata.TABLE_NAME,
GeometryMetadata.COLUMNS, selection, selectionArgs, null, null, null);
GeometryMetadata metadata = null;
try {
if (cursor.moveToNext()) {
metadata = createGeometryMetadata(cursor);
}
} finally {
cursor.close();
}
return metadata;
}
/**
* Query for all table geometry metadata
*
* @param geoPackage
* @param tableName
* @return cursor that must be closed
*/
public Cursor query(String geoPackage, String tableName) {
return query(getGeoPackageId(geoPackage), tableName);
}
/**
* Query for all table geometry metadata
*
* @param geoPackageId
* @param tableName
* @return cursor that must be closed
*/
public Cursor query(long geoPackageId, String tableName) {
String selection = GeometryMetadata.COLUMN_GEOPACKAGE_ID
+ " = ? AND " + GeometryMetadata.COLUMN_TABLE_NAME + " = ?";
String[] selectionArgs = new String[]{String.valueOf(geoPackageId), tableName};
Cursor cursor = db.query(
GeometryMetadata.TABLE_NAME,
GeometryMetadata.COLUMNS, selection, selectionArgs, null, null, null);
return cursor;
}
/**
* Query for all table geometry metadata matching the bounding box in the same projection
*
* @param geoPackage
* @param tableName
* @param boundingBox
* @return cursor that must be closed
*/
public Cursor query(String geoPackage, String tableName, BoundingBox boundingBox) {
return query(getGeoPackageId(geoPackage), tableName, boundingBox);
}
/**
* Query for all table geometry metadata matching the bounding box in the same projection
*
* @param geoPackageId
* @param tableName
* @param boundingBox
* @return cursor that must be closed
*/
public Cursor query(long geoPackageId, String tableName, BoundingBox boundingBox) {
GeometryEnvelope envelope = new GeometryEnvelope();
envelope.setMinX(boundingBox.getMinLongitude());
envelope.setMaxX(boundingBox.getMaxLongitude());
envelope.setMinY(boundingBox.getMinLatitude());
envelope.setMaxY(boundingBox.getMaxLatitude());
return query(geoPackageId, tableName, envelope);
}
/**
* Query for all table geometry metadata matching the envelope
*
* @param geoPackage
* @param tableName
* @param envelope
* @return cursor that must be closed
*/
public Cursor query(String geoPackage, String tableName, GeometryEnvelope envelope) {
return query(getGeoPackageId(geoPackage), tableName, envelope);
}
/**
* Query for all table geometry metadata matching the envelope
*
* @param geoPackageId
* @param tableName
* @param envelope
* @return cursor that must be closed
*/
public Cursor query(long geoPackageId, String tableName, GeometryEnvelope envelope) {
StringBuilder selection = new StringBuilder();
selection.append(GeometryMetadata.COLUMN_GEOPACKAGE_ID).append(" = ? AND ")
.append(GeometryMetadata.COLUMN_TABLE_NAME).append(" = ?");
selection.append(" AND ").append(GeometryMetadata.COLUMN_MIN_X).append(" <= ?");
selection.append(" AND ").append(GeometryMetadata.COLUMN_MAX_X).append(" >= ?");
selection.append(" AND ").append(GeometryMetadata.COLUMN_MIN_Y).append(" <= ?");
selection.append(" AND ").append(GeometryMetadata.COLUMN_MAX_Y).append(" >= ?");
int args = 6;
if (envelope.hasZ()) {
args += 2;
selection.append(" AND ").append(GeometryMetadata.COLUMN_MIN_Z).append(" <= ?");
selection.append(" AND ").append(GeometryMetadata.COLUMN_MAX_Z).append(" >= ?");
}
if (envelope.hasM()) {
args += 2;
selection.append(" AND ").append(GeometryMetadata.COLUMN_MIN_M).append(" <= ?");
selection.append(" AND ").append(GeometryMetadata.COLUMN_MAX_M).append(" >= ?");
}
String[] selectionArgs = new String[args];
int argCount = 0;
selectionArgs[argCount++] = String.valueOf(geoPackageId);
selectionArgs[argCount++] = tableName;
selectionArgs[argCount++] = String.valueOf(envelope.getMaxX());
selectionArgs[argCount++] = String.valueOf(envelope.getMinX());
selectionArgs[argCount++] = String.valueOf(envelope.getMaxY());
selectionArgs[argCount++] = String.valueOf(envelope.getMinY());
if (envelope.hasZ()) {
selectionArgs[argCount++] = String.valueOf(envelope.getMaxZ());
selectionArgs[argCount++] = String.valueOf(envelope.getMinZ());
}
if (envelope.hasM()) {
selectionArgs[argCount++] = String.valueOf(envelope.getMaxM());
selectionArgs[argCount++] = String.valueOf(envelope.getMinM());
}
Cursor cursor = db.query(
GeometryMetadata.TABLE_NAME,
GeometryMetadata.COLUMNS, selection.toString(), selectionArgs, null, null, null);
return cursor;
}
/**
* Get a GeoPackage id from the name
*
* @param geoPackage
* @return
*/
public long getGeoPackageId(String geoPackage) {
long id = -1;
GeoPackageMetadataDataSource ds = new GeoPackageMetadataDataSource(db);
GeoPackageMetadata metadata = ds.get(geoPackage);
if (metadata != null) {
id = metadata.getId();
}
return id;
}
/**
* Create a geometry metadata from the current cursor location
*
* @param cursor
* @return
*/
public GeometryMetadata createGeometryMetadata(Cursor cursor) {
GeometryMetadata metadata = new GeometryMetadata();
metadata.setGeoPackageId(cursor.getLong(0));
metadata.setTableName(cursor.getString(1));
metadata.setId(cursor.getLong(2));
metadata.setMinX(cursor.getDouble(3));
metadata.setMaxX(cursor.getDouble(4));
metadata.setMinY(cursor.getDouble(5));
metadata.setMaxY(cursor.getDouble(6));
if (!cursor.isNull(7)) {
metadata.setMinZ(cursor.getDouble(7));
}
if (!cursor.isNull(8)) {
metadata.setMaxZ(cursor.getDouble(8));
}
if (!cursor.isNull(9)) {
metadata.setMinM(cursor.getDouble(9));
}
if (!cursor.isNull(10)) {
metadata.setMaxM(cursor.getDouble(10));
}
return metadata;
}
}
| mit |
jplee95/World-Manager | src/main/java/jplee/worldmanager/gui/GuiWorldOptions.java | 1569 | package jplee.worldmanager.gui;
import java.io.IOException;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.GuiScreen;
import net.minecraft.client.resources.I18n;
public class GuiWorldOptions extends GuiScreen {
private GuiScreen lastGui;
private String worldId;
public GuiWorldOptions(GuiScreen lastGui, String worldId) {
this.lastGui = lastGui;
this.worldId = worldId;
}
@Override
public void initGui() {
this.buttonList.add(new GuiButton(0, this.width / 2 - 100, this.height / 4 + 120 + 12, I18n.format("gui.cancel", new Object[0])));
this.buttonList.add(new GuiButton(1, this.width / 2 - 100, this.height / 4 + 0 + 12, I18n.format("wm.selectworld.edit.worldoptions.cleanregistry", new Object[0])));
}
@Override
public void onGuiClosed() {
super.onGuiClosed();
}
@Override
protected void actionPerformed(GuiButton button) throws IOException {
if(button.id == 0) {
this.mc.displayGuiScreen(this.lastGui);
} else if(button.id == 1) {
this.mc.displayGuiScreen(new GuiConfirmClean(this, worldId));
}
}
@Override
public void drawScreen(int mouseX, int mouseY, float partialTicks) {
this.drawDefaultBackground();
this.drawCenteredString(this.fontRendererObj, I18n.format("wm.selectworld.edit.worldoptions.cleanregistry.warn", new Object[0]), this.width / 2, this.height / 4, 15132160);
this.drawCenteredString(this.fontRendererObj, I18n.format("wm.selectworld.edit.worldoptions.title", new Object[0]), this.width / 2, 20, 16777215);
super.drawScreen(mouseX, mouseY, partialTicks);
}
}
| mit |
Mozu/mozu-java | mozu-javaasync-core/src/main/java/com/mozu/api/clients/commerce/CartClient.java | 16711 | /**
* This code was auto-generated by a Codezu.
*
* Changes to this file may cause incorrect behavior and will be lost if
* the code is regenerated.
*/
package com.mozu.api.clients.commerce;
import java.util.List;
import java.util.ArrayList;
import com.mozu.api.MozuClient;
import com.mozu.api.MozuClientFactory;
import com.mozu.api.MozuUrl;
import com.mozu.api.Headers;
import org.joda.time.DateTime;
import com.mozu.api.AsyncCallback;
import java.util.concurrent.CountDownLatch;
import com.mozu.api.security.AuthTicket;
import org.apache.commons.lang.StringUtils;
/** <summary>
* Use this resource to manage storefront shopping carts as shoppers add and remove items for purchase. Each time a shopper's cart is modified, the Carts resource updates the estimated total with any applicable discounts.
* </summary>
*/
public class CartClient {
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient=GetCartClient( cartId);
* client.setBaseAddress(url);
* client.executeRequest();
* Cart cart = client.Result();
* </code></pre></p>
* @param cartId Identifier of the cart to delete.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.Cart>
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> getCartClient(String cartId) throws Exception
{
return getCartClient( cartId, null);
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient=GetCartClient( cartId, responseFields);
* client.setBaseAddress(url);
* client.executeRequest();
* Cart cart = client.Result();
* </code></pre></p>
* @param cartId Identifier of the cart to delete.
* @param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.Cart>
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> getCartClient(String cartId, String responseFields) throws Exception
{
MozuUrl url = com.mozu.api.urls.commerce.CartUrl.getCartUrl(cartId, responseFields);
String verb = "GET";
Class<?> clz = com.mozu.api.contracts.commerceruntime.carts.Cart.class;
MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient = (MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart>) MozuClientFactory.getInstance(clz);
mozuClient.setVerb(verb);
mozuClient.setResourceUrl(url);
return mozuClient;
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient=GetOrCreateCartClient();
* client.setBaseAddress(url);
* client.executeRequest();
* Cart cart = client.Result();
* </code></pre></p>
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.Cart>
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> getOrCreateCartClient() throws Exception
{
return getOrCreateCartClient( null);
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient=GetOrCreateCartClient( responseFields);
* client.setBaseAddress(url);
* client.executeRequest();
* Cart cart = client.Result();
* </code></pre></p>
* @param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.Cart>
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> getOrCreateCartClient(String responseFields) throws Exception
{
MozuUrl url = com.mozu.api.urls.commerce.CartUrl.getOrCreateCartUrl(responseFields);
String verb = "GET";
Class<?> clz = com.mozu.api.contracts.commerceruntime.carts.Cart.class;
MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient = (MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart>) MozuClientFactory.getInstance(clz);
mozuClient.setVerb(verb);
mozuClient.setResourceUrl(url);
return mozuClient;
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary> mozuClient=GetCartSummaryClient();
* client.setBaseAddress(url);
* client.executeRequest();
* CartSummary cartSummary = client.Result();
* </code></pre></p>
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.CartSummary>
* @see com.mozu.api.contracts.commerceruntime.carts.CartSummary
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary> getCartSummaryClient() throws Exception
{
return getCartSummaryClient( null);
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary> mozuClient=GetCartSummaryClient( responseFields);
* client.setBaseAddress(url);
* client.executeRequest();
* CartSummary cartSummary = client.Result();
* </code></pre></p>
* @param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.CartSummary>
* @see com.mozu.api.contracts.commerceruntime.carts.CartSummary
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary> getCartSummaryClient(String responseFields) throws Exception
{
MozuUrl url = com.mozu.api.urls.commerce.CartUrl.getCartSummaryUrl(responseFields);
String verb = "GET";
Class<?> clz = com.mozu.api.contracts.commerceruntime.carts.CartSummary.class;
MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary> mozuClient = (MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary>) MozuClientFactory.getInstance(clz);
mozuClient.setVerb(verb);
mozuClient.setResourceUrl(url);
return mozuClient;
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary> mozuClient=GetUserCartSummaryClient( userId);
* client.setBaseAddress(url);
* client.executeRequest();
* CartSummary cartSummary = client.Result();
* </code></pre></p>
* @param userId Unique identifier of the user whose tenant scopes you want to retrieve.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.CartSummary>
* @see com.mozu.api.contracts.commerceruntime.carts.CartSummary
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary> getUserCartSummaryClient(String userId) throws Exception
{
return getUserCartSummaryClient( userId, null);
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary> mozuClient=GetUserCartSummaryClient( userId, responseFields);
* client.setBaseAddress(url);
* client.executeRequest();
* CartSummary cartSummary = client.Result();
* </code></pre></p>
* @param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
* @param userId Unique identifier of the user whose tenant scopes you want to retrieve.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.CartSummary>
* @see com.mozu.api.contracts.commerceruntime.carts.CartSummary
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary> getUserCartSummaryClient(String userId, String responseFields) throws Exception
{
MozuUrl url = com.mozu.api.urls.commerce.CartUrl.getUserCartSummaryUrl(responseFields, userId);
String verb = "GET";
Class<?> clz = com.mozu.api.contracts.commerceruntime.carts.CartSummary.class;
MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary> mozuClient = (MozuClient<com.mozu.api.contracts.commerceruntime.carts.CartSummary>) MozuClientFactory.getInstance(clz);
mozuClient.setVerb(verb);
mozuClient.setResourceUrl(url);
return mozuClient;
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient=GetUserCartClient( userId);
* client.setBaseAddress(url);
* client.executeRequest();
* Cart cart = client.Result();
* </code></pre></p>
* @param userId Unique identifier of the user whose tenant scopes you want to retrieve.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.Cart>
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> getUserCartClient(String userId) throws Exception
{
return getUserCartClient( userId, null);
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient=GetUserCartClient( userId, responseFields);
* client.setBaseAddress(url);
* client.executeRequest();
* Cart cart = client.Result();
* </code></pre></p>
* @param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
* @param userId Unique identifier of the user whose tenant scopes you want to retrieve.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.Cart>
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> getUserCartClient(String userId, String responseFields) throws Exception
{
MozuUrl url = com.mozu.api.urls.commerce.CartUrl.getUserCartUrl(responseFields, userId);
String verb = "GET";
Class<?> clz = com.mozu.api.contracts.commerceruntime.carts.Cart.class;
MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient = (MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart>) MozuClientFactory.getInstance(clz);
mozuClient.setVerb(verb);
mozuClient.setResourceUrl(url);
return mozuClient;
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient=RejectSuggestedDiscountClient( cartId, discountId);
* client.setBaseAddress(url);
* client.executeRequest();
* Cart cart = client.Result();
* </code></pre></p>
* @param cartId Identifier of the cart to delete.
* @param discountId discountId parameter description DOCUMENT_HERE
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.Cart>
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> rejectSuggestedDiscountClient(String cartId, Integer discountId) throws Exception
{
return rejectSuggestedDiscountClient( cartId, discountId, null);
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient=RejectSuggestedDiscountClient( cartId, discountId, responseFields);
* client.setBaseAddress(url);
* client.executeRequest();
* Cart cart = client.Result();
* </code></pre></p>
* @param cartId Identifier of the cart to delete.
* @param discountId discountId parameter description DOCUMENT_HERE
* @param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.Cart>
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> rejectSuggestedDiscountClient(String cartId, Integer discountId, String responseFields) throws Exception
{
MozuUrl url = com.mozu.api.urls.commerce.CartUrl.rejectSuggestedDiscountUrl(cartId, discountId, responseFields);
String verb = "POST";
Class<?> clz = com.mozu.api.contracts.commerceruntime.carts.Cart.class;
MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient = (MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart>) MozuClientFactory.getInstance(clz);
mozuClient.setVerb(verb);
mozuClient.setResourceUrl(url);
return mozuClient;
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient=UpdateCartClient( cart);
* client.setBaseAddress(url);
* client.executeRequest();
* Cart cart = client.Result();
* </code></pre></p>
* @param cart Properties of a shopping cart.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.Cart>
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> updateCartClient(com.mozu.api.contracts.commerceruntime.carts.Cart cart) throws Exception
{
return updateCartClient( cart, null);
}
/**
*
* <p><pre><code>
* MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient=UpdateCartClient( cart, responseFields);
* client.setBaseAddress(url);
* client.executeRequest();
* Cart cart = client.Result();
* </code></pre></p>
* @param responseFields Filtering syntax appended to an API call to increase or decrease the amount of data returned inside a JSON object. This parameter should only be used to retrieve data. Attempting to update data using this parameter may cause data loss.
* @param cart Properties of a shopping cart.
* @return Mozu.Api.MozuClient <com.mozu.api.contracts.commerceruntime.carts.Cart>
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
* @see com.mozu.api.contracts.commerceruntime.carts.Cart
*/
public static MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> updateCartClient(com.mozu.api.contracts.commerceruntime.carts.Cart cart, String responseFields) throws Exception
{
MozuUrl url = com.mozu.api.urls.commerce.CartUrl.updateCartUrl(responseFields);
String verb = "PUT";
Class<?> clz = com.mozu.api.contracts.commerceruntime.carts.Cart.class;
MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart> mozuClient = (MozuClient<com.mozu.api.contracts.commerceruntime.carts.Cart>) MozuClientFactory.getInstance(clz);
mozuClient.setVerb(verb);
mozuClient.setResourceUrl(url);
mozuClient.setBody(cart);
return mozuClient;
}
/**
*
* <p><pre><code>
* MozuClient mozuClient=DeleteCartClient( cartId);
* client.setBaseAddress(url);
* client.executeRequest();
* </code></pre></p>
* @param cartId Identifier of the cart to delete.
* @return Mozu.Api.MozuClient
*/
public static MozuClient deleteCartClient(String cartId) throws Exception
{
MozuUrl url = com.mozu.api.urls.commerce.CartUrl.deleteCartUrl(cartId);
String verb = "DELETE";
MozuClient mozuClient = (MozuClient) MozuClientFactory.getInstance();
mozuClient.setVerb(verb);
mozuClient.setResourceUrl(url);
return mozuClient;
}
/**
*
* <p><pre><code>
* MozuClient mozuClient=DeleteCurrentCartClient();
* client.setBaseAddress(url);
* client.executeRequest();
* </code></pre></p>
* @return Mozu.Api.MozuClient
*/
public static MozuClient deleteCurrentCartClient() throws Exception
{
MozuUrl url = com.mozu.api.urls.commerce.CartUrl.deleteCurrentCartUrl();
String verb = "DELETE";
MozuClient mozuClient = (MozuClient) MozuClientFactory.getInstance();
mozuClient.setVerb(verb);
mozuClient.setResourceUrl(url);
return mozuClient;
}
}
| mit |
dvsa/mot | mot-selenium/src/test/java/uk/gov/dvsa/ui/feature/journey/nomination/NominationsTests.java | 8717 | package uk.gov.dvsa.ui.feature.journey.nomination;
import org.testng.annotations.Test;
import ru.yandex.qatools.allure.annotations.Description;
import uk.gov.dvsa.domain.model.User;
import uk.gov.dvsa.domain.shared.role.OrganisationBusinessRoleCodes;
import uk.gov.dvsa.domain.shared.role.TradeRoles;
import uk.gov.dvsa.ui.DslTest;
import java.io.IOException;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.containsString;
@Description("Nomination notifications signposts nominees to next step")
public class NominationsTests extends DslTest {
@Test(groups = {"nomination"})
void non2faUserCanOrderCardViaNominationsNotificationLink() throws IOException {
step("Given I have been nominated for a Site Manager role as non 2fa user");
User not2faActiveUser = motApi.user.createUserWithoutRole();
motApi.nominations.nominateSiteRole(not2faActiveUser, siteData.createSite().getId(), TradeRoles.SITE_MANAGER);
step("And I have not ordered a card");
step("When I order a card from Site Manager nomination notification");
motUI.nominations.viewMostRecent(not2faActiveUser).clickOrderCard();
String message = motUI.authentication.securityCard.orderSecurityCardWithHomeAddress(not2faActiveUser);
step("Then the order is successful");
assertThat("The card is ordered successfully", message, containsString("Your security card has been ordered"));
}
@Test(groups = {"nomination"})
void non2faUserCanActivateCardViaNominationNotificationsLink() throws IOException {
step("Given I have been nominated for a Site Manager role as non 2fa user");
User orderedCardUser = motApi.user.createUserWithoutRole();
motApi.nominations.nominateSiteRole(orderedCardUser, siteData.createSite().getId(), TradeRoles.SITE_MANAGER);
step("And I have ordered a card");
motUI.authentication.securityCard.orderSecurityCardWithHomeAddress(orderedCardUser);
step("When I activate the card from Site Manager nomination notification");
motUI.nominations.viewActivateCardNotification(orderedCardUser).clickActivateCard();
String message = motUI.authentication.securityCard.activate2faCard(orderedCardUser).getConfirmationText();
step("Then my card is activated");
assertThat("Activation Successful", message, containsString("Your security card has been activated"));
}
@Test(groups = {"nomination"})
void non2faUserCannotOrderCardTwiceViaNotificationsLink() throws IOException {
step("Given I have previously ordered a card as non 2fa user from notification");
User not2faActiveUser = motApi.user.createUserWithoutRole();
motApi.nominations.nominateSiteRole(not2faActiveUser, siteData.createSite().getId(), TradeRoles.SITE_MANAGER);
motUI.authentication.securityCard.orderSecurityCardWithHomeAddress(not2faActiveUser);
step("When I try to order another card from notification list");
String message = motUI.nominations.viewOrderCardNotification(not2faActiveUser).clickOrderCardExpectingAlreadyOrderedText();
step("Then I am redirected to already ordered card page");
assertThat("Already ordered Page is Shown", message, containsString("You have already ordered a security card"));
}
@Test(groups = {"nomination"})
void aedmNon2faUserNominatedWithNoCardDirectedToOrderACard() throws Exception {
step("Given I am not 2fa and I am nominated for an AEDM role");
User not2faActiveUser = motApi.user.createUserWithoutRole();
motApi.nominations.nominateOrganisationRoleWithRoleCode(not2faActiveUser, aeData.createAeWithDefaultValues().getId(), OrganisationBusinessRoleCodes.AEDM);
step("When I am nominated, I am asked to order a card");
//assert that order card notification is generated.
String message = motUI.nominations.viewOrderCardNotification(not2faActiveUser).getNotificationText();
assertThat("Notification for AEDM - prompted to order a security card is shown", message, containsString("You need to order a security card."));
}
@Test(testName = "2faHardStopDisabled",groups = {"2fa"})
void aedmNon2faUserNominatedWithCardDirectedToActivateCard() throws Exception {
step("Given I am not 2fa and I am nominated for an AEDM role");
User orderedCardUser = motApi.user.createUserWithoutRole();
motApi.nominations.nominateOrganisationRoleWithRoleCode(orderedCardUser, aeData.createAeWithDefaultValues().getId(), OrganisationBusinessRoleCodes.AEDM);
step("When I have ordered a card");
motUI.authentication.securityCard.orderSecurityCardWithHomeAddress(orderedCardUser);
step("When I am nominated, I recieve a notification to activate my card");
String message = motUI.nominations.viewActivateCardNotification(orderedCardUser).getNotificationText();
assertThat("Notification for AEDM - prompted to activate a security card", message, containsString("once you have activated the card."));
}
@Test(groups = {"nomination"})
void aedmNominationNotificationsAreSentAfterCardActivation() throws Exception {
step("Given I am not 2fa and I am nominated for an AEDM role");
User orderedCardUser = motApi.user.createUserWithoutRole();
motApi.nominations.nominateOrganisationRoleWithRoleCode(orderedCardUser, aeData.createAeWithDefaultValues().getId(), OrganisationBusinessRoleCodes.AEDM);
step("And I have ordered and activated a card");
motUI.authentication.securityCard.orderSecurityCardWithHomeAddress(orderedCardUser);
motUI.authentication.securityCard.activate2faCard(orderedCardUser);
step("I receive a notification advising me that I have been assigned the role of AEDM");
String message = motUI.nominations.viewMostRecent(orderedCardUser).getNotificationText();
assertThat("Notification for AEDM - assigned the role of AEDM", message, containsString("You have been assigned a role of Authorised Examiner Designated Manager"));
}
@Test(testName = "2faHardStopDisabled", groups = {"2fa"})
void aedmNominationNotificationsAreSentWithoutOrderingACardForAnExistingTradeUser() throws Exception {
step("Given I am a non-2fa trade user with a role");
User nominee = motApi.user.createNon2FaTester(siteData.createSite().getId(), false);
step("When I have been nominated for an AEDM role");
motApi.nominations.nominateOrganisationRoleWithRoleCode(nominee, aeData.createAeWithDefaultValues().getId(), OrganisationBusinessRoleCodes.AEDM);
step("Then I receive a notification advising me I have been automatically assigned the AEDM role");
String message = motUI.nominations.viewMostRecent(nominee).getNotificationText();
assertThat("Notification for AEDM - assigned the AEDM role", message, containsString("You have been assigned a role of Authorised Examiner Designated Manager"));
}
@Test(groups = {"nomination"})
public void tradeUserReceivesNotificationWhenCscoOrdersCardOnTheirBehalf() throws IOException {
step("Given I have been nominated for a Site Manager role as non 2fa user");
User tradeUser = motApi.user.createUserWithoutRole();
motApi.nominations.nominateSiteRole(tradeUser, siteData.createSite().getId(), TradeRoles.SITE_MANAGER);
step("When a CSCO orders a card on my behalf");
motUI.authentication.securityCard.orderCardForTradeUserAsCSCO(motApi.user.createCSCO(), tradeUser);
step("Then I receive an activate notification on my homepage");
motUI.nominations.viewActivateCardNotification(tradeUser);
}
@Test(groups = {"nomination"})
public void userWithAnActivatedCard_cannotActivateAnotherCard() throws IOException {
step("Given I am user with an active security card");
User activatedUser = motApi.user.createUserWithoutRole();
motApi.nominations.nominateSiteRole(activatedUser, siteData.createSite().getId(), TradeRoles.SITE_MANAGER);
motUI.nominations.orderAndActivateSecurityCard(activatedUser);
step("When I activate a card via the nomination activate your security card link");
motUI.nominations.viewActivateCardNotificationOnInboxPage(activatedUser).clickActivateCard();
String message = motUI.authentication.securityCard.getAlreadyActivatedCardErrorMessage();
step("Then I should see the Already Activated a Card alert page");
assertThat("You have already activated a security card page is shown", message, containsString("You have already activated a security card"));
}
}
| mit |
mRabitsky/OOPDA__Levy_Jacob | MinskyMachine/gui/MinskyMachine.java | 2264 | package gui;
import java.awt.AWTException;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.Robot;
import java.awt.event.InputEvent;
import java.util.Timer;
import java.util.TimerTask;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JToggleButton;
import javax.swing.UIManager;
/*
* https://en.wikipedia.org/wiki/Useless_machine
*
* I only made the basic on/off type. With some finageling you could setup a
* finite-state machine that shifts from one comical state to the next and then
* repeats on itself (the final state involves waving a white flag).
*/
public class MinskyMachine {
public static void main(String[] args) throws AWTException {
UIManager.put("ToggleButton.focus", new Color(255, 255, 255, 0));
UIManager.put("ToggleButton.select", new Color(200, 240, 200));
final JFrame frame = new JFrame("Minsky's Machine");
final Robot minsky = new Robot();
final Timer timer = new Timer();
frame.setAlwaysOnTop(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
minsky.setAutoDelay(250);
frame.add(new JPanel() {{
setLayout(new GridLayout(1, 1));
setPreferredSize(new Dimension(100, 100));
JToggleButton button = new JToggleButton("OFF");
button.setBackground(new Color(240, 200, 200));
button.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
button.addActionListener((ae) -> {
final boolean off = button.getText().equals("OFF");
if (off) {
button.setText("ON");
timer.schedule(new TimerTask() {
@Override
public void run() {
final int x = button.getLocationOnScreen().x + button.getWidth() / 2,
y = button.getLocationOnScreen().y + button.getHeight() / 2;
minsky.mouseMove(x, y);
minsky.setAutoDelay(0);
minsky.mousePress(InputEvent.BUTTON1_DOWN_MASK);
minsky.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
minsky.setAutoDelay(250);
}
}, 1500);
} else {
button.setText("OFF");
}
});
add(button);
}});
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}
| mit |
shijij/TopboardHack | src/topboardhack/TopboardMod.java | 5510 | /*
* Shiji Jiang
* A TINY, USELESS, BORING Program which raise someone's ranking in topboard.hk
* How to use:
* Chorme, move your mouse to the "顶一下" button, Right Click, Inspect Element,
* You will find 'pid' in the highlighted line. Then paste it here at line #22
*/
package topboardhack;
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.HashMap;
public class TopboardMod implements Runnable {
// PID PID PID PID PID PID PID PID PID PID
// Change the PID here
private final String USR_PID = "10001584";
private final String USER_AGENT1 = "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) "
+ "Chrome/32.0.1700.107 Safari/537.36";
private final String USER_AGENT2 = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1664.3 Safari/537.36";
private final String USER_AGENT3 = "Mozilla/5.0 (Windows; U; Windows NT 6.1; rv:2.2) Gecko/20110201";
private Thread t;
private HashMap<String, String> sendGet(String url) throws Exception {
HashMap<String, String> result = new HashMap<>();
URL obj = new URL(url);
HttpURLConnection connect = (HttpURLConnection) obj.openConnection();
connect.setRequestMethod("GET");
connect.setRequestProperty("Accept", "text/html");
connect.setRequestProperty("Accept-Encoding", "identity");
connect.setRequestProperty("Accept-Language", "en-US,en;q=0.8,zh-CN;q=0.6,zh-TW;q=0.4");
connect.setRequestProperty("DNT", "1");
int responseCode = connect.getResponseCode();
StringBuilder response;
try (BufferedReader in = new BufferedReader(
new InputStreamReader(connect.getInputStream()))) {
String inputLine;
response = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
}
result.put("response", response.toString());
result.put("cookie", connect.getHeaderField("Set-Cookie"));
result.put("responseCode", responseCode + "");
return result;
}
private HashMap<String, String> sendPost(String url,String Sess) throws Exception {
HashMap<String, String> result = new HashMap<>();
URL obj = new URL(url);
HttpURLConnection connect = (HttpURLConnection) obj.openConnection();
//add reuqest header
connect.setRequestMethod("POST");
connect.setRequestProperty("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8");
connect.setRequestProperty("Accept-Encoding", "identity");
connect.setRequestProperty("Accept-Language", "en-US,en;q=0.8,zh-CN;q=0.6,zh-TW;q=0.4");
connect.setRequestProperty("User-Agent", USER_AGENT1);
connect.setRequestProperty("DNT", "1");
connect.setRequestProperty("Host", "topboard.hk");
connect.setRequestProperty("Origin", "http://topboard.hk");
connect.setRequestProperty("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
connect.setRequestProperty("Referer","http://topboard.hk/face/face/order/1?");
connect.setRequestProperty("X-Requested-With","XMLHttpRequest");
connect.setRequestProperty("Cookie","PHPSESSID="+Sess);
String urlParameters = "pid=" + USR_PID;
connect.setDoOutput(true);
try (DataOutputStream wr = new DataOutputStream(connect.getOutputStream())) {
wr.writeBytes(urlParameters);
wr.flush();
}
int responseCode = connect.getResponseCode();
System.out.println("Response Code : " + responseCode);
StringBuilder response;
try (BufferedReader in = new BufferedReader(
new InputStreamReader(connect.getInputStream()))) {
String inputLine;
response = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
}
result.put("response", response.toString());
result.put("cookie", connect.getHeaderField("Set-Cookie"));
result.put("responseCode", responseCode + "");
return result;
}
@Override
public void run() {
System.out.println("Thread " + Thread.currentThread().getId() + " Started");
for(int i=0;i < 300; i++){
try{
TopboardMod collector = new TopboardMod();
HashMap<String, String> result = new HashMap<>();
HashMap<String, String> result2 = new HashMap<>();
result2 = collector.sendGet("http://topboard.hk/");
String Sess = result2.get("cookie").substring(10, 36);
result = collector.sendPost("http://topboard.hk/face/vote", Sess);
System.out.println("\n Thread " +Thread.currentThread().getId() + " Request #" + i);
System.out.println("Session: " + result2.get("cookie").substring(10, 36));
System.out.println(result.get("response"));
}catch (Exception x){
System.out.println("Thread interrupted.");
}
}
}
}
| mit |
openforis/collect | collect-core/src/generated/java/org/openforis/collect/persistence/jooq/tables/OfcDataCleansingChainSteps.java | 3230 | /**
* This class is generated by jOOQ
*/
package org.openforis.collect.persistence.jooq.tables;
import java.util.Arrays;
import java.util.List;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.impl.TableImpl;
import org.openforis.collect.persistence.jooq.Collect;
import org.openforis.collect.persistence.jooq.Keys;
import org.openforis.collect.persistence.jooq.tables.records.OfcDataCleansingChainStepsRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class OfcDataCleansingChainSteps extends TableImpl<OfcDataCleansingChainStepsRecord> {
private static final long serialVersionUID = 1286730475;
/**
* The reference instance of <code>collect.ofc_data_cleansing_chain_steps</code>
*/
public static final OfcDataCleansingChainSteps OFC_DATA_CLEANSING_CHAIN_STEPS = new OfcDataCleansingChainSteps();
/**
* The class holding records for this type
*/
@Override
public Class<OfcDataCleansingChainStepsRecord> getRecordType() {
return OfcDataCleansingChainStepsRecord.class;
}
/**
* The column <code>collect.ofc_data_cleansing_chain_steps.chain_id</code>.
*/
public final TableField<OfcDataCleansingChainStepsRecord, Integer> CHAIN_ID = createField("chain_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column <code>collect.ofc_data_cleansing_chain_steps.step_id</code>.
*/
public final TableField<OfcDataCleansingChainStepsRecord, Integer> STEP_ID = createField("step_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column <code>collect.ofc_data_cleansing_chain_steps.pos</code>.
*/
public final TableField<OfcDataCleansingChainStepsRecord, Integer> POS = createField("pos", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "");
/**
* Create a <code>collect.ofc_data_cleansing_chain_steps</code> table reference
*/
public OfcDataCleansingChainSteps() {
this("ofc_data_cleansing_chain_steps", null);
}
/**
* Create an aliased <code>collect.ofc_data_cleansing_chain_steps</code> table reference
*/
public OfcDataCleansingChainSteps(String alias) {
this(alias, OFC_DATA_CLEANSING_CHAIN_STEPS);
}
private OfcDataCleansingChainSteps(String alias, Table<OfcDataCleansingChainStepsRecord> aliased) {
this(alias, aliased, null);
}
private OfcDataCleansingChainSteps(String alias, Table<OfcDataCleansingChainStepsRecord> aliased, Field<?>[] parameters) {
super(alias, Collect.COLLECT, aliased, parameters, "");
}
/**
* {@inheritDoc}
*/
@Override
public List<ForeignKey<OfcDataCleansingChainStepsRecord, ?>> getReferences() {
return Arrays.<ForeignKey<OfcDataCleansingChainStepsRecord, ?>>asList(Keys.OFC_DATA_CLEANSING_CHAIN_STEPS__OFC_DATA_CLEANSING_CHAIN_STEPS_CHAIN_FKEY, Keys.OFC_DATA_CLEANSING_CHAIN_STEPS__OFC_DATA_CLEANSING_CHAIN_STEPS_STEP_FKEY);
}
/**
* {@inheritDoc}
*/
@Override
public OfcDataCleansingChainSteps as(String alias) {
return new OfcDataCleansingChainSteps(alias, this);
}
/**
* Rename this table
*/
public OfcDataCleansingChainSteps rename(String name) {
return new OfcDataCleansingChainSteps(name, null);
}
}
| mit |
GoofyJM/104-asia-java | JAVA01/src/JAVA01.java | 598 |
public class JAVA01 {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("===============================");
System.out.println("¡¯ ©m¦W: ©P¥Ã®¶ ¡¯");
System.out.println("¡¯ ¨t©Ò: ¨È¬w¤j¾Ç¸ê°T¤uµ{¾Ç¨t ¡¯");
System.out.println("¡¯ ¾¯Å: §U²z±Ð±Â ¡¯");
System.out.println("¡¯ ¹q¸Ü: 04-23323456 Ext. 48005¡¯");
System.out.print("================================");
}
}
| mit |
seebye/XClasses | src/main/java/com/seebye/xclasses/annotations/ParameterManipulation.java | 867 | package com.seebye.xclasses.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by nico on 03.10.15.<br>
* <br>
* Use this annotation if you want to manipulate the values passed to the original method<br>
* By using this annotation an additional parameter will be added in front of the other parameters.<br>
* <br>
* E.g.:<br>
* Before: ( Object[] aParameters, / *other parameters* / )<br>
* Unsupported as it's useless.. After: ( T resultUntilNow, Object[] aParameters, / *other parameters* / )<br>
* <br>
* To change the values simply change the array.<br>
* E.g.<br>
* aParameters[0] = "new value";
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ParameterManipulation {
}
| mit |
McJty/HotSpots | src/main/java/mcjty/hotspots/manager/HotSpotTypeBuilder.java | 630 | package mcjty.hotspots.manager;
import mcjty.hotspots.api.HotSpotAttenuation;
import mcjty.hotspots.api.HotSpotLifecycle;
import mcjty.hotspots.api.IHotSpotTypeBuilder;
public abstract class HotSpotTypeBuilder<T extends IHotSpotTypeBuilder> implements IHotSpotTypeBuilder<T> {
private HotSpotLifecycle lifecycle = HotSpotLifecycle.LINEARDECREASE;
@Override
public T setLifecycle(HotSpotLifecycle lifecycle) {
this.lifecycle = lifecycle;
return (T) this;
}
public abstract HotSpotAttenuation getAttenuation();
public HotSpotLifecycle getLifecycle() {
return lifecycle;
}
}
| mit |
Krigu/bookstore | bookstore-ejb/src/main/java/org/books/application/amazon/soap/VariationSummary.java | 3939 |
package org.books.application.amazon.soap;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java-Klasse für anonymous complex type.
*
* <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="LowestPrice" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Price" minOccurs="0"/>
* <element name="HighestPrice" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Price" minOccurs="0"/>
* <element name="LowestSalePrice" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Price" minOccurs="0"/>
* <element name="HighestSalePrice" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Price" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"lowestPrice",
"highestPrice",
"lowestSalePrice",
"highestSalePrice"
})
@XmlRootElement(name = "VariationSummary")
public class VariationSummary {
@XmlElement(name = "LowestPrice")
protected Price lowestPrice;
@XmlElement(name = "HighestPrice")
protected Price highestPrice;
@XmlElement(name = "LowestSalePrice")
protected Price lowestSalePrice;
@XmlElement(name = "HighestSalePrice")
protected Price highestSalePrice;
/**
* Ruft den Wert der lowestPrice-Eigenschaft ab.
*
* @return
* possible object is
* {@link Price }
*
*/
public Price getLowestPrice() {
return lowestPrice;
}
/**
* Legt den Wert der lowestPrice-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Price }
*
*/
public void setLowestPrice(Price value) {
this.lowestPrice = value;
}
/**
* Ruft den Wert der highestPrice-Eigenschaft ab.
*
* @return
* possible object is
* {@link Price }
*
*/
public Price getHighestPrice() {
return highestPrice;
}
/**
* Legt den Wert der highestPrice-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Price }
*
*/
public void setHighestPrice(Price value) {
this.highestPrice = value;
}
/**
* Ruft den Wert der lowestSalePrice-Eigenschaft ab.
*
* @return
* possible object is
* {@link Price }
*
*/
public Price getLowestSalePrice() {
return lowestSalePrice;
}
/**
* Legt den Wert der lowestSalePrice-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Price }
*
*/
public void setLowestSalePrice(Price value) {
this.lowestSalePrice = value;
}
/**
* Ruft den Wert der highestSalePrice-Eigenschaft ab.
*
* @return
* possible object is
* {@link Price }
*
*/
public Price getHighestSalePrice() {
return highestSalePrice;
}
/**
* Legt den Wert der highestSalePrice-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Price }
*
*/
public void setHighestSalePrice(Price value) {
this.highestSalePrice = value;
}
}
| mit |
sel-utils/java | src/main/java/sul/protocol/bedrock137/play/RemoveEntity.java | 1365 | /*
* This file was automatically generated by sel-utils and
* released under the MIT License.
*
* License: https://github.com/sel-project/sel-utils/blob/master/LICENSE
* Repository: https://github.com/sel-project/sel-utils
* Generated from https://github.com/sel-project/sel-utils/blob/master/xml/protocol/bedrock137.xml
*/
package sul.protocol.bedrock137.play;
import sul.utils.*;
public class RemoveEntity extends Packet {
public static final int ID = (int)14;
public static final boolean CLIENTBOUND = true;
public static final boolean SERVERBOUND = false;
@Override
public int getId() {
return ID;
}
public long entityId;
public RemoveEntity() {}
public RemoveEntity(long entityId) {
this.entityId = entityId;
}
@Override
public int length() {
return Buffer.varlongLength(entityId) + 1;
}
@Override
public byte[] encode() {
this._buffer = new byte[this.length()];
this.writeVaruint(ID);
this.writeVarlong(entityId);
return this.getBuffer();
}
@Override
public void decode(byte[] buffer) {
this._buffer = buffer;
this.readVaruint();
entityId=this.readVarlong();
}
public static RemoveEntity fromBuffer(byte[] buffer) {
RemoveEntity ret = new RemoveEntity();
ret.decode(buffer);
return ret;
}
@Override
public String toString() {
return "RemoveEntity(entityId: " + this.entityId + ")";
}
} | mit |
mpsalisbury/launchpad-viewport | src/test/java/com/salisburyclan/lpviewport/geom/Range1Test.java | 4856 | package com.salisburyclan.lpviewport.geom;
import static com.google.common.truth.Truth.assertThat;
import static com.salisburyclan.lpviewport.testing.AssertThrows.assertThrows;
import com.google.common.truth.Truth8;
import java.util.ArrayList;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
@RunWith(JUnit4.class)
public class Range1Test {
@Test
public void testCreatesEmptyRange() {
assertThat(Range1.create(4, 1).isEmpty()).isTrue();
assertThat(Range1.create(4, 1)).isEqualTo(Range1.EMPTY);
}
@Test
public void testMiddle() {
Range1 range = Range1.create(2, 8);
assertThat(range.middle()).isEqualTo(5);
}
@Test
public void testSize() {
Range1 range = Range1.create(2, 8);
assertThat(range.size()).isEqualTo(7);
}
@Test
public void testIsPointWithin() {
Range1 range = Range1.create(2, 8);
assertThat(range.isPointWithin(2)).isTrue();
assertThat(range.isPointWithin(5)).isTrue();
assertThat(range.isPointWithin(8)).isTrue();
assertThat(range.isPointWithin(1)).isFalse();
assertThat(range.isPointWithin(-1)).isFalse();
assertThat(range.isPointWithin(9)).isFalse();
assertThat(range.isPointWithin(20)).isFalse();
}
@Test
public void testAssertPointWithin() {
Range1 range = Range1.create(2, 8);
range.assertPointWithin(2);
assertThrows(IllegalArgumentException.class, () -> range.assertPointWithin(20));
}
@Test
public void testIsRangeWithin() {
Range1 range = Range1.create(2, 8);
assertThat(range.isRangeWithin(Range1.create(2, 4))).isTrue();
assertThat(range.isRangeWithin(Range1.create(2, 8))).isTrue();
assertThat(range.isRangeWithin(Range1.create(3, 5))).isTrue();
assertThat(range.isRangeWithin(Range1.create(5, 8))).isTrue();
assertThat(range.isRangeWithin(Range1.create(0, 1))).isFalse();
assertThat(range.isRangeWithin(Range1.create(1, 2))).isFalse();
assertThat(range.isRangeWithin(Range1.create(1, 3))).isFalse();
assertThat(range.isRangeWithin(Range1.create(1, 8))).isFalse();
assertThat(range.isRangeWithin(Range1.create(1, 9))).isFalse();
assertThat(range.isRangeWithin(Range1.create(2, 9))).isFalse();
assertThat(range.isRangeWithin(Range1.create(5, 9))).isFalse();
assertThat(range.isRangeWithin(Range1.create(8, 9))).isFalse();
assertThat(range.isRangeWithin(Range1.create(9, 10))).isFalse();
}
@Test
public void testInset() {
Range1 range = Range1.create(2, 8);
assertThat(range.inset(0, 0)).isEqualTo(Range1.create(2, 8));
assertThat(range.inset(1, 1)).isEqualTo(Range1.create(3, 7));
assertThat(range.inset(4, 2)).isEqualTo(Range1.create(6, 6));
assertThat(range.inset(-1, -1)).isEqualTo(Range1.create(1, 9));
assertThat(range.inset(4, 4)).isEqualTo(Range1.EMPTY);
}
@Test
public void testShift() {
Range1 range = Range1.create(2, 8);
assertThat(range.shift(0)).isEqualTo(Range1.create(2, 8));
assertThat(range.shift(1)).isEqualTo(Range1.create(3, 9));
assertThat(range.shift(-1)).isEqualTo(Range1.create(1, 7));
}
@Test
public void testUnion() {
Range1 r13 = Range1.create(1, 3);
Range1 r24 = Range1.create(2, 4);
Range1 r35 = Range1.create(3, 5);
Range1 r57 = Range1.create(5, 7);
// adjacent
assertThat(r13.union(r35)).isEqualTo(Range1.create(1, 5));
assertThat(r35.union(r13)).isEqualTo(Range1.create(1, 5));
// separate
assertThat(r13.union(r57)).isEqualTo(Range1.create(1, 7));
assertThat(r57.union(r13)).isEqualTo(Range1.create(1, 7));
// overlapping
assertThat(r13.union(r24)).isEqualTo(Range1.create(1, 4));
assertThat(r24.union(r13)).isEqualTo(Range1.create(1, 4));
}
@Test
public void testIntersect() {
Range1 r13 = Range1.create(1, 3);
Range1 r24 = Range1.create(2, 4);
Range1 r35 = Range1.create(3, 5);
Range1 r57 = Range1.create(5, 7);
// adjacent
assertThat(r13.intersect(r35)).isEqualTo(Range1.create(3, 3));
assertThat(r35.intersect(r13)).isEqualTo(Range1.create(3, 3));
// separate
assertThat(r13.intersect(r57)).isEqualTo(Range1.create(1, 0));
assertThat(r57.intersect(r13)).isEqualTo(Range1.create(1, 0));
// overlapping
assertThat(r13.intersect(r24)).isEqualTo(Range1.create(2, 3));
assertThat(r24.intersect(r13)).isEqualTo(Range1.create(2, 3));
}
@Test
public void testStream() {
Truth8.assertThat(Range1.create(1, 4).stream().boxed()).containsExactly(1, 2, 3, 4).inOrder();
Truth8.assertThat(Range1.create(1, 1).stream().boxed()).containsExactly(1).inOrder();
}
@Test
public void testForEach() {
Range1 range = Range1.create(3, 5);
List<Integer> values = new ArrayList<>();
range.forEach(x -> values.add(x));
assertThat(values).containsExactly(3, 4, 5).inOrder();
}
}
| mit |
fashare2015/MVVM-JueJin | adapter/src/main/java/com/fashare/adapter/viewpager/CommonPagerAdapter.java | 4126 | package com.fashare.adapter.viewpager;
import android.content.Context;
import android.support.v4.view.PagerAdapter;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import com.fashare.adapter.OnItemClickListener;
import com.fashare.adapter.ViewHolder;
import java.util.List;
/**
* 通用的 PagerAdapter
* @param <T>
*/
public abstract class CommonPagerAdapter<T> extends PagerAdapter {
protected final String TAG = this.getClass().getSimpleName();
protected Context mContext;
protected List<T> mDataList;
private OnItemClickListener<T> mOnItemClickListener;
private int mLayoutId;
public List<T> getDataList() {
return mDataList;
}
public void setDataList(List<T> dataList) {
if(dataList != null) {
this.mDataList = dataList;
notifyDataSetChanged();
}else{
Log.e(TAG, "mDataList is null");
}
}
public void setDataListWithoutNotify(List<T> dataList) {
if(dataList != null) {
this.mDataList = dataList;
}else{
Log.e(TAG, "mDataList is null");
}
}
/**
* reutrn POSITION_NONE 使得 notifyDataSetChanged() 会触发 instantiateItem() -> onBindViewHolder()
* @param object
* @return
*/
@Override
public int getItemPosition(Object object) {
return POSITION_NONE;
}
public void setOnItemClickListener(OnItemClickListener<T> onItemClickListener) {
this.mOnItemClickListener = onItemClickListener;
}
public CommonPagerAdapter(final Context context, final int layoutId, List<T> dataList) {
mContext = context;
mLayoutId = layoutId;
mDataList = dataList;
}
@Override
public int getCount() {
return mDataList == null? 0: mDataList.size();
}
@Override
public boolean isViewFromObject(View view, Object object) {
return view == object;
}
@Override
public Object instantiateItem(ViewGroup container, int position) {
ViewHolder viewHolder = createViewHolder(container, position);
onBindViewHolder(viewHolder, position);
return viewHolder.itemView;
}
protected final ViewHolder createViewHolder(ViewGroup container, int position) {
ViewHolder viewHolder;
viewHolder = onCreateViewHolder(container);
if(viewHolder != null) {
container.addView(viewHolder.itemView);
}else {
Log.e(TAG, "viewHolder is null");
}
return viewHolder;
}
protected ViewHolder onCreateViewHolder(ViewGroup parent){
return ViewHolder.createViewHolder(mContext, parent, mLayoutId);
}
public void onBindViewHolder(final ViewHolder holder, final int position) {
setListener(holder, position);
T data = getDataList().get(position);
if(data != null) {
convert(holder, data, position);
}else{
Log.e(TAG, String.format("mDataList.get(%d) is null", position));
}
}
protected void setListener(final ViewHolder viewHolder, final int position) {
viewHolder.getConvertView().setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (mOnItemClickListener != null) {
mOnItemClickListener.onItemClick(viewHolder, mDataList.get(position), position);
}
}
});
viewHolder.getConvertView().setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
if (mOnItemClickListener != null) {
return mOnItemClickListener.onItemLongClick(viewHolder, mDataList.get(position), position);
}
return false;
}
});
}
protected abstract void convert(ViewHolder holder, T t, int position);
@Override
public void destroyItem(ViewGroup container, int position, Object object) {
container.removeView((View)object);
}
}
| mit |
baislsl/java-class-decompiler | src/main/java/com/baislsl/decompiler/instruction/ConstInstruction.java | 438 | package com.baislsl.decompiler.instruction;
import com.baislsl.decompiler.DecompileException;
import com.baislsl.decompiler.engine.Value;
/**
* dconst_0, dconst_1..
* fconst_0, fconst_1..
* sipush
* ...
*/
public abstract class ConstInstruction extends Instruction {
protected String value;
@Override
public void exec() throws DecompileException {
super.exec();
opStack.push(new Value(value));
}
}
| mit |
emmanueljourdan/ejies | java-classes/ej/linterp.java | 9209 | /*
* ej.linterp by Emmanuel Jourdan, e--j dev Ñ 04 2005
* simple list interpolator
*
*
* $Revision: 1.14 $
* $Date: 2006/09/20 16:40:54 $
*/
package ej;
import com.cycling74.max.*;
import com.cycling74.msp.*;
/**
* list interpolator
* @author jourdan
* @see ej
* @see ej.lop
* @version $Revision: 1.14 $
*/
public class linterp extends ejies {
private static final String[] INLET_ASSIST = new String[]{ "interpolation factor (0. = A -> 1. = B)", "List A", "List B" };
private static final String[] INLET_ASSIST_QUAD = new String[]{ "interpolation factor (list)", "List A", "List B", "List C", "List D" };
private static final String[] INLET_ASSIST_CUBE = new String[]{ "interpolation factor (list)", "List A", "List B", "List C", "List D", "List E", "List F", "List G", "List H" };
private static final String[] OUTLET_ASSIST = new String[]{ "interpolated list"};
private float interpFactor[] = null;
private float[][] listes = new float[8][];
private float[] resultat = new float[0]; // a permet de savoir si on a fait le calcul...
private String buf_name = null;
private byte combienInput;
private int outputmode = 0;
private byte mode = 0;
private boolean autotrigger = false;
private int channel = 1;
/**
* Create a linterp object.
* @param args none or "quad", "cube", "weight" specify linterp behavior
*/
public linterp(Atom[] args) {
if (args.length > 0 && args[0].isString()) {
// premier argument est une chaine
if (args[0].getString().equals("quad")) { // mode quad
this.mode = 1;
this.combienInput = 4;
declareTypedIO("lllll", "l");
} else if (args[0].getString().equals("cube")) { // mode cube
this.mode = 2;
this.combienInput = 8;
declareTypedIO("lllllllll", "l");
} else if (args[0].getString().equals("weight") && args.length > 1) { // mode poids
if (args[1].isInt() && args[1].getInt() > 1 && args[1].getInt() <= 8) { // l'arguement doit tre un entier compris entre 2 et 8
this.mode = 3;
combienInput = (byte) (args[1].getInt());
declareIO(combienInput + 1, 1); // il y a une entre de plus pour les facteurs d'interpolation
} else
bail("bad argument for argument weigth (int between 1 and 8 expected)");
} else {
bail("unkown argument for ej.linterp... have a look to the help file.");
}
} else {
this.mode = 0; // mais on le savait dj
this.combienInput = 2;
declareTypedIO("fll", "l");
}
declareAttribute("outputmode", null, "setMode");
declareAttribute("channel", null, "setChannel");
declareAttribute("buf_name");
declareAttribute("autotrigger");
createInfoOutlet(false);
checkInletAssistance(); // choix de l'assistance en fonction du mode...
setOutletAssist(OUTLET_ASSIST);
}
private void setMode(int i) {
if (i >= 0 && i <= 2)
outputmode = i;
else
outputmode = 0;
}
private void setChannel(int i) {
if (i >= 1) { // no upper limit (MSPBuffer will clamp to the buffer channelcount)
channel = i;
} else
error("bad channel number (index starts at 1)");
}
private void checkInletAssistance() {
switch (mode) {
case 0:
setInletAssist(INLET_ASSIST);
break;
case 1:
setInletAssist(INLET_ASSIST_QUAD);
break;
case 2:
setInletAssist(INLET_ASSIST_CUBE);
break;
case 3:
setInletAssist(createWeightAssistance());
break;
}
}
private String[] createWeightAssistance() {
String[] theString = new String[combienInput];
for (byte idx = 0; idx < theString.length; idx++)
theString[idx] = INLET_ASSIST_CUBE[idx];
return theString;
}
/**
* Re-Trigger the calculation.
*/
public void bang() {
calcule();
}
private void setInput(int inlet, float args) {
if (inlet > 0 && inlet <= combienInput) {
listes[inlet - 1] = new float[]{ args };
}
}
private void setInput(int inlet, float[] args) {
if (inlet > 0 && inlet <= combienInput) {
listes[inlet - 1] = args;
}
}
/**
* Define "where" we are in the interpolation (mode 1D only).
* @param args
*/
public void inlet(float args) {
switch (getInlet()) {
case 0:
setInterpFactor(args);
calcule();
return;// car c'est dclench aussi la fin de la mthode
default:
setInput(getInlet(), args);
}
if (autotrigger) calcule();
}
/**
* If the list arrives from the left most inlet: define "where" we are in the interpolation.
* <p>else set the list to be interpolated.
* @param list to be interpolated or list of "position"
*/
public void list(float[] args) {
switch (getInlet()) {
case 0:
if (mode > 0) {
setInterpFactor(args);
calcule();
return;
}
// else
error("no list expected here (in this mode)");
setInterpFactor(args); // comme on est pas rancunier on va utiliser le premier argument
break;
default:
setInput(getInlet(), args);
}
// listes = new float[][] { a, b, c, d, e, f, g, h };
if (autotrigger) calcule();
}
private void setInterpFactor(float args) {
if (mode != 3) {
interpFactor = new float[]{ args, args, args };
} else
interpFactor = normalize(new float[]{ args });
}
private void setInterpFactor(float[] args) {
/*
* on met toujours trois lments ans le tableau
* comme a on a pas de problme quand on change de mode...
*/
if (mode != 3) {
switch (args.length) {
case 1:
interpFactor = new float[]{ args[0], args[0], args[0] };
break;
case 2:
interpFactor = new float[]{ args[0], args[1], 0f};
break;
case 3:
interpFactor = args;
break;
default:
error("too many arguments, you may have to try the weight mode...");
}
} else {
interpFactor = normalize(args);
}
}
private float[] normalize(float[] args) {
int i;
double max = 0;
for (i = 0; i < args.length; i++)
max += args[i];
// si la somme est gale 1, c'est pas la peine de le normaliser
if (max == 1)
return args;
// sinon on divise chaque lment par le maximum
for (i = 0; i < args.length; i++)
args[i] /= max;
return args;
}
private void calcule() {
if (interpFactor == null)
return;
if (mode == 0) {
if (resultat.length > 0 || inputCheck((byte) 2)) {
resultat = new float[Math.min(listes[0].length, listes[1].length)];
for (int i = 0; i < resultat.length; i++)
resultat[i] = listes[1][i] * interpFactor[0] + (1 - interpFactor[0]) * listes[0][i];
}
} else if (mode == 1) {
if (resultat.length > 0 || inputCheck((byte) 4)) {
resultat = new float[findSmallestList()];
for (int i = 0; i < resultat.length; i++) {
resultat[i] =
listes[0][i] * (1 - interpFactor[0]) * (1 - interpFactor[1]) +
listes[1][i] * interpFactor[0] * (1 - interpFactor[1]) +
listes[2][i] * (1 - interpFactor[0]) * interpFactor[1] +
listes[3][i] * interpFactor[0] * interpFactor[1];
}
}
} else if (mode == 2) {
// resultat.length > 0 quand on a dj sorti quelque chose (ce qui veut dire que toutes les listes ont t remplies)
if (resultat.length > 0 || inputCheck((byte) 8)) {
resultat = new float[findSmallestList()];
for (int i = 0; i < resultat.length; i++) {
resultat[i] =
listes[0][i] * (1 - interpFactor[0]) * (1 - interpFactor[1]) * (1 - interpFactor[2]) +
listes[1][i] * interpFactor[0] * (1 - interpFactor[1]) * (1 - interpFactor[2]) +
listes[2][i] * (1 - interpFactor[0]) * interpFactor[1] * (1 - interpFactor[2]) +
listes[3][i] * interpFactor[0] * interpFactor[1] * (1 - interpFactor[2]) +
listes[4][i] * (1 - interpFactor[0]) * (1 - interpFactor[1]) * interpFactor[2] +
listes[5][i] * interpFactor[0] * (1 - interpFactor[1]) * interpFactor[2] +
listes[6][i] * (1 - interpFactor[0]) * interpFactor[1] * interpFactor[2] +
listes[7][i] * interpFactor[0] * interpFactor[1] * interpFactor[2];
}
}
} else {
// quelque chose me dit que c'est le mode 3...
if (resultat.length > 0 || inputCheck((byte) Math.min(combienInput, interpFactor.length))) {
resultat = new float[findSmallestList()];
int i, j;
for (i = j = 0; i < resultat.length; i++) {
resultat[i] = 0;
for (j = 0; j < Math.min(combienInput, interpFactor.length); j++) {
resultat[i] += listes[j][i] * interpFactor[j];
}
}
}
}
doOutput();
}
private boolean inputCheck(byte byteArg) {
// c'est pas trs lgant...
byte flag = 0;
try {
for (int i = 0; i < combienInput; i++) {
if (listes[i].length > 0)
flag++;
}
} catch (Exception e) {
}
if (byteArg == flag)
return true;
// else
return false;
}
private int findSmallestList() {
int min = 0;
for (byte idx = 0; idx < combienInput; idx++) {
if (listes[idx].length > min) {
min = listes[idx].length;
}
}
return min;
}
private void doOutput() {
switch (outputmode) {
case 0:
outlet(0, resultat); break;
case 1:
writeToBuffer(); break;
case 2:
outlet(0, resultat); writeToBuffer(); break;
}
}
private void writeToBuffer() {
if (buf_name != null && resultat.length > 0) {
MSPBuffer.poke(buf_name, channel, resultat);
}
}
} | mit |
orlade/kuta | src/test/java/net/piemaster/kuta/algorithms/sorting/QuickSorterTest.java | 204 | package net.piemaster.kuta.algorithms.sorting;
public class QuickSorterTest extends SorterTest {
@Override
protected Sorter<Integer> buildSorter() {
return new QuickSorter<>();
}
}
| mit |
ONSdigital/response-management-service | casesvc-api/src/main/java/uk/gov/ons/ctp/response/casesvc/representation/CaseEventDTO.java | 926 | package uk.gov.ons.ctp.response.casesvc.representation;
import java.util.Date;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
*/
@Data
@AllArgsConstructor
@NoArgsConstructor(access = AccessLevel.PUBLIC)
public class CaseEventDTO {
private static final int DESC_MAX = 350;
private static final int DESC_MIN = 2;
private static final int CREATED_BY_MAX = 50;
private static final int CREATED_BY_MIN = 2;
private Date createdDateTime;
private Integer caseEventId;
private Integer caseId;
@NotNull
private CategoryDTO.CategoryType category;
private String subCategory;
@NotNull @Size(min = CREATED_BY_MIN, max = CREATED_BY_MAX)
private String createdBy;
@NotNull @Size(min = DESC_MIN, max = DESC_MAX)
private String description;
}
| mit |
heisedebaise/tephra | tephra-dao/src/test/java/org/lpw/tephra/dao/orm/mybatis/MybatisOrmTest.java | 7757 | package org.lpw.tephra.dao.orm.mybatis;
import org.junit.Assert;
import org.junit.Test;
import org.lpw.tephra.dao.Mode;
import org.lpw.tephra.test.DaoTestSupport;
import org.lpw.tephra.util.Converter;
import org.lpw.tephra.util.DateTime;
import org.lpw.tephra.util.Generator;
import org.lpw.tephra.util.TimeUnit;
import javax.inject.Inject;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.List;
/**
* @author lpw
*/
public class MybatisOrmTest extends DaoTestSupport {
@Inject
private Generator generator;
@Inject
private DateTime dateTime;
@Inject
private MybatisOrm mybatisOrm;
@Test
public void crudByMapper() {
long time = System.currentTimeMillis();
TestMapper mapper = mybatisOrm.getMapper(null, Mode.Write, TestMapper.class);
Assert.assertNotNull(mapper);
Assert.assertNull(mapper.findById("id"));
TestModel model1 = new TestModel();
model1.setId(generator.uuid());
model1.setSort(1);
model1.setName("MyBatis");
model1.setDatecol(new Date(time - TimeUnit.Day.getTime()));
model1.setTimecol(new Timestamp(time - TimeUnit.Hour.getTime()));
Assert.assertEquals(1, mapper.insert(model1));
TestModel model2 = mapper.findById(model1.getId());
Assert.assertNotNull(model2);
Assert.assertNotEquals(model1.hashCode(), model2.hashCode());
Assert.assertEquals(1, model2.getSort());
Assert.assertEquals("MyBatis", model2.getName());
equals(new Date(time - TimeUnit.Day.getTime()), model2.getDatecol());
equals(new Timestamp(time - TimeUnit.Hour.getTime()), model2.getTimecol());
TestModel model3 = new TestModel();
model3.setId(model1.getId());
model3.setName("new name");
model3.setDatecol(new Date(time - 3 * TimeUnit.Day.getTime()));
model3.setTimecol(new Timestamp(time - 3 * TimeUnit.Hour.getTime()));
Assert.assertEquals(1, mapper.update(model3));
TestModel model4 = mapper.findById(model1.getId());
Assert.assertNotNull(model4);
Assert.assertEquals(1, model4.getSort());
Assert.assertEquals("new name", model4.getName());
equals(new Date(time - 3 * TimeUnit.Day.getTime()), model4.getDatecol());
equals(new Timestamp(time - 3 * TimeUnit.Hour.getTime()), model4.getTimecol());
Assert.assertEquals(1, mapper.delete(model1.getId()));
Assert.assertNull(mapper.findById(model1.getId()));
List<TestModel> list = mapper.selectAll();
Assert.assertNotNull(list);
Assert.assertTrue(list.isEmpty());
for (int i = 0; i < 10; i++) {
TestModel model = new TestModel();
model.setId("id" + i);
model.setSort(i);
model.setName("name" + i);
model.setDatecol(new Date(time - i * TimeUnit.Day.getTime()));
model.setTimecol(new Timestamp(time - i * TimeUnit.Hour.getTime()));
Assert.assertEquals(1, mapper.insert(model));
}
checkList(mapper.selectAll(), time);
close();
}
@Test
public void crudByStatement() {
crudUseStatement("");
}
@Test
public void crudByXml() {
crudUseStatement("FromXml");
}
private void crudUseStatement(String suffix) {
long time = System.currentTimeMillis();
Assert.assertNull(mybatisOrm.selectOne(new MybatisBuilder().statement(
"org.lpw.tephra.dao.orm.mybatis.TestMapper.findById" + suffix).parameter("id")));
TestModel model1 = new TestModel();
model1.setId(generator.uuid());
model1.setSort(1);
model1.setName("MyBatis");
model1.setDatecol(new Date(time - TimeUnit.Day.getTime()));
model1.setTimecol(new Timestamp(time - TimeUnit.Hour.getTime()));
Assert.assertEquals(1, mybatisOrm.insert(new MybatisBuilder().statement(
"org.lpw.tephra.dao.orm.mybatis.TestMapper.insert" + suffix).parameter(model1)));
TestModel model2 = mybatisOrm.selectOne(new MybatisBuilder().statement(
"org.lpw.tephra.dao.orm.mybatis.TestMapper.findById" + suffix).parameter(model1.getId()));
Assert.assertNotNull(model2);
Assert.assertNotEquals(model1.hashCode(), model2.hashCode());
Assert.assertEquals(1, model2.getSort());
Assert.assertEquals("MyBatis", model2.getName());
equals(new Date(time - TimeUnit.Day.getTime()), model2.getDatecol());
equals(new Timestamp(time - TimeUnit.Hour.getTime()), model2.getTimecol());
TestModel model3 = new TestModel();
model3.setId(model1.getId());
model3.setName("new name");
model3.setDatecol(new Date(time - 3 * TimeUnit.Day.getTime()));
model3.setTimecol(new Timestamp(time - 3 * TimeUnit.Hour.getTime()));
Assert.assertEquals(1, mybatisOrm.update(new MybatisBuilder()
.statement("org.lpw.tephra.dao.orm.mybatis.TestMapper.update" + suffix).parameter(model3)));
TestModel model4 = mybatisOrm.selectOne(new MybatisBuilder()
.statement("org.lpw.tephra.dao.orm.mybatis.TestMapper.findById" + suffix).parameter(model1.getId()));
Assert.assertNotNull(model4);
Assert.assertEquals(1, model4.getSort());
Assert.assertEquals("new name", model4.getName());
equals(new Date(time - 3 * TimeUnit.Day.getTime()), model4.getDatecol());
equals(new Timestamp(time - 3 * TimeUnit.Hour.getTime()), model4.getTimecol());
Assert.assertEquals(1, mybatisOrm.delete(new MybatisBuilder()
.statement("org.lpw.tephra.dao.orm.mybatis.TestMapper.delete" + suffix).parameter(model1.getId())));
Assert.assertNull(mybatisOrm.selectOne(new MybatisBuilder()
.statement("org.lpw.tephra.dao.orm.mybatis.TestMapper.findById" + suffix).parameter(model1.getId())));
List<TestModel> list = mybatisOrm.selectList(new MybatisBuilder()
.statement("org.lpw.tephra.dao.orm.mybatis.TestMapper.selectAll" + suffix));
Assert.assertNotNull(list);
Assert.assertTrue(list.isEmpty());
for (int i = 0; i < 10; i++) {
TestModel model = new TestModel();
model.setId("id" + i);
model.setSort(i);
model.setName("name" + i);
model.setDatecol(new Date(time - i * TimeUnit.Day.getTime()));
model.setTimecol(new Timestamp(time - i * TimeUnit.Hour.getTime()));
Assert.assertEquals(1, mybatisOrm.insert(new MybatisBuilder()
.statement("org.lpw.tephra.dao.orm.mybatis.TestMapper.insert" + suffix).parameter(model)));
}
checkList(mybatisOrm.selectList(new MybatisBuilder()
.statement("org.lpw.tephra.dao.orm.mybatis.TestMapper.selectAll" + suffix)), time);
close();
}
private void checkList(List<TestModel> list, long time) {
Assert.assertEquals(10, list.size());
for (int i = 0; i < 10; i++) {
TestModel model = list.get(i);
Assert.assertEquals("id" + i, model.getId());
Assert.assertEquals(i, model.getSort());
Assert.assertEquals("name" + i, model.getName());
equals(new Date(time - i * TimeUnit.Day.getTime()), model.getDatecol());
equals(new Timestamp(time - i * TimeUnit.Hour.getTime()), model.getTimecol());
}
}
private void equals(Date date1, Date date2) {
Assert.assertEquals(dateTime.toString(date1), dateTime.toString(date2));
}
private void equals(Timestamp timestamp1, Timestamp timestamp2) {
Assert.assertTrue(Math.abs(timestamp1.getTime() - timestamp2.getTime()) < 2000L);
}
}
| mit |
Yureii/WLW | src/GUI/Menu.java | 5305 | /*
* 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 GUI;
import GUI.ihm;
import GUI.Map;
import GUI.Options;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
import javax.swing.KeyStroke;
/**
*
* @author Alexis
*/
public class Menu extends JMenuBar {
// Attributs
private ihm ihm;
// Menu Fichier:
private JMenu menu_File = new JMenu("File");
private JMenuItem item_New_Game = new JMenuItem("New Game"),
item_Save = new JMenuItem("Save"),
item_Load = new JMenuItem("Load"),
item_Close = new JMenuItem("Close");
// Menu Options:
private JMenuItem item_Options = new JMenuItem("Options");
// Menu Aide:
private JMenu menu_Help = new JMenu("Help");
private JMenuItem item_About = new JMenuItem("About"),
item_Help = new JMenuItem("Help Content");
public Menu(JFrame parent) {
// On setup tous les boutons:
// Bouton File > New Game:
this.item_New_Game.setAccelerator(KeyStroke.getKeyStroke(
java.awt.event.KeyEvent.VK_N,
java.awt.Event.CTRL_MASK));
this.item_New_Game.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0) {
JOptionPane jop = new JOptionPane();
String message = "Voulez-vous commencer une nouvelle partie ?";
int retour = jop.showConfirmDialog(null, message, "?", JOptionPane.YES_NO_OPTION);
}
});
// Bouton File > Save
this.item_Save.setAccelerator(KeyStroke.getKeyStroke(
java.awt.event.KeyEvent.VK_S,
java.awt.Event.CTRL_MASK));
// Demonstrate "Open" dialog:
this.item_Save.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e) {
JFileChooser c = new JFileChooser();
// Demonstrate "Save" dialog:
int rVal = c.showSaveDialog(Menu.this);
if (rVal == JFileChooser.APPROVE_OPTION) {
System.out.println(c.getSelectedFile().getName());
//dir.setText(c.getCurrentDirectory().toString());
}
if (rVal == JFileChooser.CANCEL_OPTION) {
//filename.setText("You pressed cancel");
//dir.setText("");
}
}
});
// Bouton File > Option:
this.item_Options.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
Options opt = new Options(parent, "Options", false);
}
});
// Bouton File > Close:
this.item_Close.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0) {
System.exit(0);
}
});
// Bouton Help > Help Content:
this.item_Help.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
JOptionPane jop = new JOptionPane();
String message = "Salut !\n Ceci est le menu d'Aide > Contenu !";
jop.showMessageDialog(null, message, "Help Content", JOptionPane.PLAIN_MESSAGE);
}
});
// Bouton Help > About:
this.item_About.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent ae) {
JOptionPane jop = new JOptionPane();
String message = "Créé par Anthony Youssef & Alexis Despois";
jop.showMessageDialog(null, message, "About", JOptionPane.PLAIN_MESSAGE);
}
});
// Menu Fichier:
this.menu_File.add(item_New_Game);
this.menu_File.add(item_Save);
this.menu_File.add(item_Load);
this.menu_File.addSeparator();
this.menu_File.add(item_Options);
this.menu_File.addSeparator();
this.menu_File.add(item_Close);
// Menu Options:
// Menu Aide:
this.menu_Help.add(item_Help);
this.menu_Help.add(item_About);
// On insère les JMenu dans le JMenuBar:
this.add(menu_File);
this.add(menu_Help);
}
} | mit |
khoitnm/language-note | language-note-common/src/test/java/org/tnmk/common/infrastructure/data/query/ClassPathQueryLoaderTest.java | 477 | package org.tnmk.common.infrastructure.data.query;
import org.junit.Assert;
import org.junit.Test;
public class ClassPathQueryLoaderTest {
private ClassPathQueryLoader classPathQueryLoader = new ClassPathQueryLoader();
@Test
public void loadQuery(){
String query = ClassPathQueryLoader.loadQuery("/testdata/query/test-query.cql",1,"2");
Assert.assertEquals("MATCH (e:Expression)--(u:User) WHERE id(u)=1 AND e.id=2 RETURN e",query.trim());
}
}
| mit |
Tyler-Churchill/Audio-Recognition | core/src/audio/core/Analyzer.java | 3009 | package audio.core;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.musicg.fingerprint.FingerprintManager;
import com.musicg.wave.Wave;
import com.musicg.wave.extension.Spectrogram;
public class Analyzer {
private static FingerprintManager manager;
private static Spectrogram spec;
public static final int ERROR_FACTOR = Settings.ERROR_FACTOR;
public final static int LOWER_LIMIT = Settings.LOWER_LIMIT;
public final static int UPPER_LIMIT = Settings.UPPER_LIMIT;
//public static final int[] RANGE = new int[] {40, 80, 120, 160, UPPER_LIMIT + 1};
public static final int[] RANGE = Settings.FILTER_BANK;
public Analyzer() {
manager = new FingerprintManager();
}
public static byte[] getFingerprint(Wave wave) {
return manager.extractFingerprint(wave);
}
public static Object[] getAudioFramesData(String file) {
Wave w = new Wave(file);
byte[] b = getFingerprint(w);
Object[] a = new Object[b.length];
int n = -1;
for(byte x : b) {
n +=1;
a[n] = x & 0xFF;
}
return a;
}
/**
* Gets the keypoints/features of a song and returns a hash map
* HashMap<time><magnitude>
*
* @param w
* @return
*/
public static List<SongPoint> getKeyPoints(int songID, Wave w) {
spec = new Spectrogram(w);
System.out.println("samplesize: " + spec.getFftSampleSize());
// double[frame][freq]
// double[size.numFrames][size.numFrequencyUnit]
double data[][] = spec.getAbsoluteSpectrogramData();
List<SongPoint> pointsList = new ArrayList<SongPoint>();
int points[][] = new int[spec.getNumFrames()][5];
for (int x = Settings.SONG_START; x < spec.getNumFrames(); x++) {
// holds frequency
double temp[] = new double[spec.getNumFrequencyUnit()];
int highScore[] = new int[5];
// this is what is making the program slow
for (int y = LOWER_LIMIT; y < spec.getNumFrequencyUnit(); y++) {
temp[y] = data[x][y];
int mag = log(temp[y], 2);
int index = getIndex(y);
if (mag > highScore[index]) {
highScore[index] = mag;
points[x][index] = y;
}
}
//int time = x / spec.getFramesPerSecond();
int time = x;
int h = computeHash(points[x][0], points[x][1], points[x][2], points[x][3]);
SongPoint p = new SongPoint(songID, time, h);
pointsList.add(p);
}
return pointsList;
}
/**
* Computes a hash from 4 frequency keypoints in a single frame
* with added error padding
* @param p1
* @param p2
* @param p3
* @param p4
* @return
*/
public static int computeHash(int p1, int p2, int p3, int p4) {
return (p4-(p4%ERROR_FACTOR)) * 1000000 + (p3-(p3%ERROR_FACTOR)) * 10000 + (p2-(p2%ERROR_FACTOR)) * 100 + (p1-(p1%ERROR_FACTOR));
}
static int log(double temp, int base)
{
return (int) (Math.log(temp) / Math.log(base));
}
public static int getIndex(double data) {
int i = 0;
while (RANGE[i] < data)
i++;
return i;
}
public static int getHash(Object[] bs) {
return Arrays.deepHashCode(bs);
}
}
| mit |
BryanShubo/design-pattern | bridge/src/main/java/com/iluwatar/MagicWeapon.java | 350 | package com.iluwatar;
/**
*
* Abstraction interface.
*
*/
public abstract class MagicWeapon {
protected MagicWeaponImp imp;
public MagicWeapon(MagicWeaponImp imp) {
this.imp = imp;
}
public abstract void wield();
public abstract void swing();
public abstract void unwield();
public MagicWeaponImp getImp() {
return imp;
}
}
| mit |
rafael2ll/Smash | SmashUploader/app/build/gen/com/google/android/gms/base/R.java | 609232 | /* 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.google.android.gms.base;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f050000;
public static final int abc_fade_out=0x7f050001;
public static final int abc_grow_fade_in_from_bottom=0x7f050002;
public static final int abc_popup_enter=0x7f050003;
public static final int abc_popup_exit=0x7f050004;
public static final int abc_shrink_fade_out_from_bottom=0x7f050005;
public static final int abc_slide_in_bottom=0x7f050006;
public static final int abc_slide_in_top=0x7f050007;
public static final int abc_slide_out_bottom=0x7f050008;
public static final int abc_slide_out_top=0x7f050009;
public static final int design_appbar_state_list_animator=0x7f05000a;
public static final int design_bottom_sheet_slide_in=0x7f05000b;
public static final int design_bottom_sheet_slide_out=0x7f05000c;
public static final int design_fab_in=0x7f05000d;
public static final int design_fab_out=0x7f05000e;
public static final int design_snackbar_in=0x7f05000f;
public static final int design_snackbar_out=0x7f050010;
}
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=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 actionBarItemBackground=0x7f01009d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010096;
/** <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=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 actionBarSplitStyle=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f010092;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarTabTextStyle=0x7f010093;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTheme=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 actionBarWidgetTheme=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 actionButtonStyle=0x7f0100b7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f0100b3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionLayout=0x7f010108;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009e;
/** <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=0x7f01009f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f0100a2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f0100a1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=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 actionModeCopyDrawable=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 actionModeCutDrawable=0x7f0100a5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f0100aa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePasteDrawable=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 actionModePopupWindowStyle=0x7f0100ac;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f0100a8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f0100a9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f0100a0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f0100ab;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f010094;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010095;
/** <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=0x7f01010a;
/** <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=0x7f010109;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f0100bf;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f0100e3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alertDialogCenterButtons=0x7f0100e4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f0100e2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f0100e5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int allowStacking=0x7f0100f8;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alpha=0x7f0100f9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowHeadLength=0x7f010100;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowShaftLength=0x7f010101;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f0100ea;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010068;
/** <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=0x7f01006a;
/** <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=0x7f010069;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int backgroundTint=0x7f01013b;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int backgroundTintMode=0x7f01013c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int barLength=0x7f010102;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_autoHide=0x7f01002d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_hideable=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 behavior_overlapTop=0x7f010036;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static final int behavior_peekHeight=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 behavior_skipCollapsed=0x7f01000b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int borderWidth=0x7f01002b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f0100bc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f010025;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetStyle=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=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f0100e8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f0100e9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f0100e7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f0100b8;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static final int buttonGravity=0x7f010130;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f01007d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be 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>standard</code></td><td>0</td><td></td></tr>
<tr><td><code>wide</code></td><td>1</td><td></td></tr>
<tr><td><code>icon_only</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int buttonSize=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 buttonStyle=0x7f0100eb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f0100ec;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonTint=0x7f0100fa;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int buttonTintMode=0x7f0100fb;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardBackgroundColor=0x7f01013d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardCornerRadius=0x7f01013e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardElevation=0x7f01013f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardMaxElevation=0x7f010140;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardPreventCornerOverlap=0x7f010142;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cardUseCompatPadding=0x7f010141;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f0100ed;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f0100ee;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int circleCrop=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 closeIcon=0x7f010113;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f01007a;
/** <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=0x7f010132;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010131;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int collapsedTitleGravity=0x7f010018;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapsedTitleTextAppearance=0x7f010012;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int color=0x7f0100fc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorAccent=0x7f0100da;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorBackgroundFloating=0x7f0100e1;
/** <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=0x7f0100de;
/** <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=0x7f0100dc;
/** <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=0x7f0100dd;
/** <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=0x7f0100db;
/** <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=0x7f0100d8;
/** <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=0x7f0100d9;
/** <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 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>dark</code></td><td>0</td><td></td></tr>
<tr><td><code>light</code></td><td>1</td><td></td></tr>
<tr><td><code>auto</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int colorScheme=0x7f01005a;
/** <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=0x7f0100df;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int commitIcon=0x7f010118;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010073;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEndWithActions=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 contentInsetLeft=0x7f010074;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetRight=0x7f010075;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010072;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStartWithNavigation=0x7f010076;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPadding=0x7f010143;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingBottom=0x7f010147;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingLeft=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingRight=0x7f010145;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentPaddingTop=0x7f010146;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentScrim=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 controlBackground=0x7f0100e0;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterEnabled=0x7f01004c;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterMaxLength=0x7f01004d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=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 counterTextAppearance=0x7f01004e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f01006b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int defaultQueryHint=0x7f010112;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f0100b1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dialogTheme=0x7f0100b0;
/** <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=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 divider=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 dividerHorizontal=0x7f0100be;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010106;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100bd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int drawableSize=0x7f0100fe;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f0100d0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextBackground=0x7f0100c5;
/** <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=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextStyle=0x7f0100ef;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int elevation=0x7f010078;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int errorEnabled=0x7f01004a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f01004b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01007c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expanded=0x7f010004;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int expandedTitleGravity=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 expandedTitleMargin=0x7f01000c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginBottom=0x7f010010;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginEnd=0x7f01000f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginStart=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 expandedTitleMarginTop=0x7f01000e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f010011;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fabSize=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 foregroundInsidePadding=0x7f01002e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int gapBetweenBars=0x7f0100ff;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f010114;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int headerLayout=0x7f010034;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01005d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010071;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintAnimationEnabled=0x7f010050;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintEnabled=0x7f010049;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f010048;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f0100b6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f010065;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010110;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int imageAspectRatio=0x7f010057;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>adjust_width</code></td><td>1</td><td></td></tr>
<tr><td><code>adjust_height</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int imageAspectRatioAdjust=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 imageButtonStyle=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f01006e;
/** <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=0x7f01007b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int insetForeground=0x7f010035;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 itemBackground=0x7f010032;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemIconTint=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 itemPadding=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f010033;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemTextColor=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 keylines=0x7f01001d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f01010f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layoutManager=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_anchor=0x7f010020;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_anchorGravity=0x7f010022;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_behavior=0x7f01001f;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_collapseMode=0x7f01001b;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_collapseParallaxMultiplier=0x7f01001c;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static final int layout_dodgeInsetEdges=0x7f010024;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_insetEdge=0x7f010023;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_keyline=0x7f010021;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static final int layout_scrollFlags=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 layout_scrollInterpolator=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 listChoiceBackgroundIndicator=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listItemLayout=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 listLayout=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listMenuViewStyle=0x7f0100f7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100d1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100cb;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f0100cd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x7f0100cc;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ce;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100cf;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010066;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int logoDescription=0x7f010135;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxActionInlineWidth=0x7f010037;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f01012f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010104;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int menu=0x7f01002f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f01007f;
/** <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=0x7f010134;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010133;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f010060;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01010d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010139;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010138;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100d4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f0100d6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int panelMenuListWidth=0x7f0100d5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleContentDescription=0x7f010053;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int passwordToggleDrawable=0x7f010052;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleEnabled=0x7f010051;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleTint=0x7f010054;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int passwordToggleTintMode=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 popupMenuStyle=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=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 popupWindowStyle=0x7f0100c3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int preserveIconSpacing=0x7f01010b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int pressedTranslationZ=0x7f01002a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int progressBarStyle=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 queryBackground=0x7f01011a;
/** <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=0x7f010111;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f0100f0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f0100f1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f0100f2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f0100f3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int reverseLayout=0x7f010002;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int rippleColor=0x7f010028;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
*/
public static final int scopeUris=0x7f01005b;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimAnimationDuration=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 scrimVisibleHeightTrigger=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 searchHintIcon=0x7f010116;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010115;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ca;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f0100f4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f0100ba;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100bb;
/** <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=0x7f010107;
/** <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=0x7f010105;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010126;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010080;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spanCount=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spinBars=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f0100b5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f0100f5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int srcCompat=0x7f010082;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int stackFromEnd=0x7f010003;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_above_anchor=0x7f01010e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsed=0x7f010005;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsible=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 statusBarBackground=0x7f01001e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int statusBarScrim=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 subMenuArrow=0x7f01010c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01011b;
/** <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=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 subtitleTextAppearance=0x7f010128;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitleTextColor=0x7f010137;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 suggestionRowLayout=0x7f010119;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010123;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchPadding=0x7f010124;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100f6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f010122;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabBackground=0x7f01003b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabContentStart=0x7f01003a;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabGravity=0x7f01003d;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorColor=0x7f010038;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorHeight=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 tabMaxWidth=0x7f01003f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMinWidth=0x7f01003e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabMode=0x7f01003c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPadding=0x7f010047;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingBottom=0x7f010046;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingEnd=0x7f010045;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingStart=0x7f010043;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingTop=0x7f010044;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabSelectedTextColor=0x7f010042;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f010040;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabTextColor=0x7f010041;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static final int textAllCaps=0x7f010086;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f0100ad;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f0100d3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f0100c8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f0100ae;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f0100e6;
/** <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 textColorError=0x7f010027;
/** <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=0x7f0100c9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=0x7f01013a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=0x7f010103;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010121;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTint=0x7f01011c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int thumbTintMode=0x7f01011d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tickMark=0x7f010083;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tickMarkTint=0x7f010084;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int tickMarkTintMode=0x7f010085;
/** <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=0x7f01005f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleEnabled=0x7f01001a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargin=0x7f010129;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f01012b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f01012a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01012c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01012e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010127;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleTextColor=0x7f010136;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 toolbarId=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 toolbarNavigationButtonStyle=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int track=0x7f01011e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int trackTint=0x7f01011f;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int trackTintMode=0x7f010120;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int useCompatPadding=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 voiceIcon=0x7f010117;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010087;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010089;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01008a;
/** <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=0x7f01008e;
/** <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=0x7f01008c;
/** <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=0x7f01008b;
/** <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=0x7f01008d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMajor=0x7f01008f;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMinor=0x7f010090;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowNoTitle=0x7f010088;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f0c0000;
public static final int abc_allow_stacked_button_bar=0x7f0c0001;
public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0b0097;
public static final int abc_background_cache_hint_selector_material_light=0x7f0b0098;
public static final int abc_btn_colored_borderless_text_material=0x7f0b0099;
public static final int abc_color_highlight_material=0x7f0b009a;
public static final int abc_input_method_navigation_guard=0x7f0b0012;
public static final int abc_primary_text_disable_only_material_dark=0x7f0b009b;
public static final int abc_primary_text_disable_only_material_light=0x7f0b009c;
public static final int abc_primary_text_material_dark=0x7f0b009d;
public static final int abc_primary_text_material_light=0x7f0b009e;
public static final int abc_search_url_text=0x7f0b009f;
public static final int abc_search_url_text_normal=0x7f0b0013;
public static final int abc_search_url_text_pressed=0x7f0b0014;
public static final int abc_search_url_text_selected=0x7f0b0015;
public static final int abc_secondary_text_material_dark=0x7f0b00a0;
public static final int abc_secondary_text_material_light=0x7f0b00a1;
public static final int abc_tint_btn_checkable=0x7f0b00a2;
public static final int abc_tint_default=0x7f0b00a3;
public static final int abc_tint_edittext=0x7f0b00a4;
public static final int abc_tint_seek_thumb=0x7f0b00a5;
public static final int abc_tint_spinner=0x7f0b00a6;
public static final int abc_tint_switch_thumb=0x7f0b00a7;
public static final int abc_tint_switch_track=0x7f0b00a8;
public static final int accent=0x7f0b004f;
public static final int accent_material_dark=0x7f0b0016;
public static final int accent_material_light=0x7f0b0017;
public static final int background_floating_material_dark=0x7f0b0018;
public static final int background_floating_material_light=0x7f0b0019;
public static final int background_material_dark=0x7f0b001a;
public static final int background_material_light=0x7f0b001b;
public static final int blue_grey_100=0x7f0b008a;
public static final int blue_grey_200=0x7f0b008b;
public static final int blue_grey_300=0x7f0b008c;
public static final int blue_grey_400=0x7f0b008d;
/** Blue Grey
*/
public static final int blue_grey_50=0x7f0b0089;
public static final int blue_grey_500=0x7f0b008e;
public static final int blue_grey_600=0x7f0b008f;
public static final int blue_grey_700=0x7f0b0090;
public static final int blue_grey_800=0x7f0b0091;
public static final int blue_grey_900=0x7f0b0092;
public static final int bright_foreground_disabled_material_dark=0x7f0b001c;
public static final int bright_foreground_disabled_material_light=0x7f0b001d;
public static final int bright_foreground_inverse_material_dark=0x7f0b001e;
public static final int bright_foreground_inverse_material_light=0x7f0b001f;
public static final int bright_foreground_material_dark=0x7f0b0020;
public static final int bright_foreground_material_light=0x7f0b0021;
public static final int button_material_dark=0x7f0b0022;
public static final int button_material_light=0x7f0b0023;
public static final int cardview_dark_background=0x7f0b0093;
public static final int cardview_light_background=0x7f0b0094;
public static final int cardview_shadow_end_color=0x7f0b0095;
public static final int cardview_shadow_start_color=0x7f0b0096;
public static final int common_google_signin_btn_text_dark=0x7f0b00a9;
public static final int common_google_signin_btn_text_dark_default=0x7f0b000a;
public static final int common_google_signin_btn_text_dark_disabled=0x7f0b000b;
public static final int common_google_signin_btn_text_dark_focused=0x7f0b000c;
public static final int common_google_signin_btn_text_dark_pressed=0x7f0b000d;
public static final int common_google_signin_btn_text_light=0x7f0b00aa;
public static final int common_google_signin_btn_text_light_default=0x7f0b000e;
public static final int common_google_signin_btn_text_light_disabled=0x7f0b000f;
public static final int common_google_signin_btn_text_light_focused=0x7f0b0010;
public static final int common_google_signin_btn_text_light_pressed=0x7f0b0011;
/** Purple
<color name="purple_600">#FF8E24AA</color>
<color name="purple_700">#FF7B1FA2</color>
<color name="purple_800">#FF6A1B9A</color>
<color name="purple_900">#FF4A148C</color>
<color name="purple_a100">#FFEA80FC</color>
<color name="purple_a200">#FFE040FB</color>
<color name="purple_a400">#FFD500F9</color>
<color name="purple_a700">#FFAA00FF</color>
Deep Purple
<color name="deep_purple_a100">#FFB388FF</color>
<color name="deep_purple_a200">#FF7C4DFF</color>
<color name="deep_purple_a400">#FF651FFF</color>
<color name="deep_purple_a700">#FF6200EA</color>
Indigo
<color name="indigo_a100">#FF8C9EFF</color>
<color name="indigo_a200">#FF536DFE</color>
<color name="indigo_a400">#FF3D5AFE</color>
<color name="indigo_a700">#FF304FFE</color>
Blue
<color name="blue_600">#FF1E88E5</color>
<color name="blue_700">#FF1976D2</color>
<color name="blue_800">#FF1565C0</color>
<color name="blue_900">#FF0D47A1</color>
<color name="blue_a100">#FF82B1FF</color>
<color name="blue_a200">#FF448AFF</color>
<color name="blue_a400">#FF2979FF</color>
<color name="blue_a400">#FF2979FF</color>
<color name="blue_a700">#FF2962FF</color>
Light Blue
<color name="light_blue_700">#FF0288D1</color>
<color name="light_blue_800">#FF0277BD</color>
<color name="light_blue_900">#FF01579B</color>
<color name="light_blue_a100">#FF80D8FF</color>
<color name="light_blue_a200">#FF40C4FF</color>
<color name="light_blue_a400">#FF00B0FF</color>
<color name="light_blue_a700">#FF0091EA</color>
Cyan
*/
public static final int cyan_600=0x7f0b0066;
public static final int cyan_700=0x7f0b0067;
public static final int cyan_800=0x7f0b0068;
public static final int cyan_900=0x7f0b0069;
public static final int cyan_a100=0x7f0b006a;
public static final int cyan_a200=0x7f0b006b;
public static final int cyan_a400=0x7f0b006c;
public static final int cyan_a700=0x7f0b006d;
/** Light Green
<color name="light_green_300">#FFAED581</color>
<color name="light_green_400">#FF9CCC65</color>
<color name="light_green_500">#FF8BC34A</color>
<color name="light_green_600">#FF7CB342</color>
<color name="light_green_700">#FF689F38</color>
<color name="light_green_800">#FF558B2F</color>
<color name="light_green_900">#FF33691E</color>
<color name="light_green_a100">#FFCCFF90</color>
<color name="light_green_a200">#FFB2FF59</color>
<color name="light_green_a400">#FF76FF03</color>
<color name="light_green_a700">#FF64DD17</color>
Lime
<color name="lime_400">#FFD4E157</color>
<color name="lime_500">#FFCDDC39</color>
<color name="lime_600">#FFC0CA33</color>
<color name="lime_700">#FFAFB42B</color>
<color name="lime_800">#FF9E9D24</color>
<color name="lime_900">#FF827717</color>
<color name="lime_a100">#FFF4FF81</color>
<color name="lime_a200">#FFEEFF41</color>
<color name="lime_a400">#FFC6FF00</color>
<color name="lime_a700">#FFAEEA00</color>
Yellow
<color name="yellow_400">#FFFFEE58</color>
<color name="yellow_500">#FFFFEB3B</color>
<color name="yellow_600">#FFFDD835</color>
<color name="yellow_700">#FFFBC02D</color>
<color name="yellow_800">#FFF9A825</color>
<color name="yellow_900">#FFF57F17</color>
<color name="yellow_a100">#FFFFFF8D</color>
<color name="yellow_a200">#FFFFFF00</color>
<color name="yellow_a400">#FFFFEA00</color>
<color name="yellow_a700">#FFFFD600</color>
Amber
<color name="amber_600">#FFFFB300</color>
<color name="amber_700">#FFFFA000</color>
<color name="amber_800">#FFFF8F00</color>
<color name="amber_900">#FFFF6F00</color>
<color name="amber_a100">#FFFFE57F</color>
<color name="amber_a200">#FFFFD740</color>
<color name="amber_a400">#FFFFC400</color>
<color name="amber_a700">#FFFFAB00</color>
Orange
<color name="orange_700">#FFF57C00</color>
<color name="orange_800">#FFEF6C00</color>
<color name="orange_900">#FFE65100</color>
<color name="orange_a100">#FFFFD180</color>
<color name="orange_a200">#FFFFAB40</color>
<color name="orange_a400">#FFFF9100</color>
<color name="orange_a700">#FFFF6D00</color>
Deep Orange
*/
public static final int deep_orange_600=0x7f0b0076;
public static final int deep_orange_700=0x7f0b0077;
public static final int deep_orange_800=0x7f0b0078;
public static final int deep_orange_900=0x7f0b0079;
public static final int deep_orange_a100=0x7f0b007a;
public static final int deep_orange_a200=0x7f0b007b;
public static final int deep_orange_a400=0x7f0b007c;
public static final int deep_orange_a700=0x7f0b007d;
public static final int design_error=0x7f0b00ab;
public static final int design_fab_shadow_end_color=0x7f0b0000;
public static final int design_fab_shadow_mid_color=0x7f0b0001;
public static final int design_fab_shadow_start_color=0x7f0b0002;
public static final int design_fab_stroke_end_inner_color=0x7f0b0003;
public static final int design_fab_stroke_end_outer_color=0x7f0b0004;
public static final int design_fab_stroke_top_inner_color=0x7f0b0005;
public static final int design_fab_stroke_top_outer_color=0x7f0b0006;
public static final int design_snackbar_background_color=0x7f0b0007;
public static final int design_textinput_error_color_dark=0x7f0b0008;
public static final int design_textinput_error_color_light=0x7f0b0009;
public static final int design_tint_password_toggle=0x7f0b00ac;
public static final int dim_foreground_disabled_material_dark=0x7f0b0024;
public static final int dim_foreground_disabled_material_light=0x7f0b0025;
public static final int dim_foreground_material_dark=0x7f0b0026;
public static final int dim_foreground_material_light=0x7f0b0027;
public static final int divider=0x7f0b0053;
public static final int foreground_material_dark=0x7f0b0028;
public static final int foreground_material_light=0x7f0b0029;
/** Teal
<color name="teal_300">#FF4DB6AC</color>
<color name="teal_400">#FF26A69A</color>
<color name="teal_500">#FF009688</color>
<color name="teal_600">#FF00897B</color>
<color name="teal_700">#FF00796B</color>
<color name="teal_800">#FF00695C</color>
<color name="teal_900">#FF004D40</color>
<color name="teal_a100">#FFA7FFEB</color>
<color name="teal_a200">#FF64FFDA</color>
<color name="teal_a400">#FF1DE9B6</color>
<color name="teal_a700">#FF00BFA5</color>
Green
*/
public static final int green_600=0x7f0b006e;
public static final int green_700=0x7f0b006f;
public static final int green_800=0x7f0b0070;
public static final int green_900=0x7f0b0071;
public static final int green_a100=0x7f0b0072;
public static final int green_a200=0x7f0b0073;
public static final int green_a400=0x7f0b0074;
public static final int green_a700=0x7f0b0075;
public static final int grey_100=0x7f0b007f;
public static final int grey_200=0x7f0b0080;
public static final int grey_300=0x7f0b0081;
public static final int grey_400=0x7f0b0082;
/** Brown
<color name="brown_500">#FF795548</color>
<color name="brown_600">#FF6D4C41</color>
<color name="brown_700">#FF5D4037</color>
<color name="brown_800">#FF4E342E</color>
<color name="brown_900">#FF3E2723</color>
Grey
*/
public static final int grey_50=0x7f0b007e;
public static final int grey_500=0x7f0b0083;
public static final int grey_600=0x7f0b0084;
public static final int grey_700=0x7f0b0085;
public static final int grey_800=0x7f0b0086;
public static final int grey_900=0x7f0b0087;
public static final int grey_900_half=0x7f0b0088;
public static final int highlighted_text_material_dark=0x7f0b002a;
public static final int highlighted_text_material_light=0x7f0b002b;
public static final int hint_foreground_material_dark=0x7f0b002c;
public static final int hint_foreground_material_light=0x7f0b002d;
public static final int icons=0x7f0b0052;
public static final int material_blue_grey_800=0x7f0b002e;
public static final int material_blue_grey_900=0x7f0b002f;
public static final int material_blue_grey_950=0x7f0b0030;
public static final int material_deep_teal_200=0x7f0b0031;
public static final int material_deep_teal_500=0x7f0b0032;
public static final int material_grey_100=0x7f0b0033;
public static final int material_grey_300=0x7f0b0034;
public static final int material_grey_50=0x7f0b0035;
public static final int material_grey_600=0x7f0b0036;
public static final int material_grey_800=0x7f0b0037;
public static final int material_grey_850=0x7f0b0038;
public static final int material_grey_900=0x7f0b0039;
/** Pink
*/
public static final int pink_a100=0x7f0b0062;
public static final int pink_a200=0x7f0b0063;
public static final int pink_a400=0x7f0b0064;
public static final int pink_a700=0x7f0b0065;
public static final int primary=0x7f0b004c;
public static final int primary_dark=0x7f0b004d;
public static final int primary_dark_material_dark=0x7f0b003a;
public static final int primary_dark_material_light=0x7f0b003b;
public static final int primary_light=0x7f0b004e;
public static final int primary_material_dark=0x7f0b003c;
public static final int primary_material_light=0x7f0b003d;
public static final int primary_text=0x7f0b0050;
public static final int primary_text_default_material_dark=0x7f0b003e;
public static final int primary_text_default_material_light=0x7f0b003f;
public static final int primary_text_disabled_material_dark=0x7f0b0040;
public static final int primary_text_disabled_material_light=0x7f0b0041;
public static final int red_100=0x7f0b0055;
public static final int red_200=0x7f0b0056;
public static final int red_300=0x7f0b0057;
public static final int red_400=0x7f0b0058;
/** Others Colors
Red
*/
public static final int red_50=0x7f0b0054;
public static final int red_500=0x7f0b0059;
public static final int red_600=0x7f0b005a;
public static final int red_700=0x7f0b005b;
public static final int red_800=0x7f0b005c;
public static final int red_900=0x7f0b005d;
public static final int red_a100=0x7f0b005e;
public static final int red_a200=0x7f0b005f;
public static final int red_a400=0x7f0b0060;
public static final int red_a700=0x7f0b0061;
public static final int ripple_material_dark=0x7f0b0042;
public static final int ripple_material_light=0x7f0b0043;
public static final int secondary_text=0x7f0b0051;
public static final int secondary_text_default_material_dark=0x7f0b0044;
public static final int secondary_text_default_material_light=0x7f0b0045;
public static final int secondary_text_disabled_material_dark=0x7f0b0046;
public static final int secondary_text_disabled_material_light=0x7f0b0047;
public static final int switch_thumb_disabled_material_dark=0x7f0b0048;
public static final int switch_thumb_disabled_material_light=0x7f0b0049;
public static final int switch_thumb_material_dark=0x7f0b00ad;
public static final int switch_thumb_material_light=0x7f0b00ae;
public static final int switch_thumb_normal_material_dark=0x7f0b004a;
public static final int switch_thumb_normal_material_light=0x7f0b004b;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f070032;
public static final int abc_action_bar_content_inset_with_nav=0x7f070033;
public static final int abc_action_bar_default_height_material=0x7f070027;
public static final int abc_action_bar_default_padding_end_material=0x7f070034;
public static final int abc_action_bar_default_padding_start_material=0x7f070035;
public static final int abc_action_bar_elevation_material=0x7f070037;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f070038;
public static final int abc_action_bar_overflow_padding_end_material=0x7f070039;
public static final int abc_action_bar_overflow_padding_start_material=0x7f07003a;
public static final int abc_action_bar_progress_bar_size=0x7f070028;
public static final int abc_action_bar_stacked_max_height=0x7f07003b;
public static final int abc_action_bar_stacked_tab_max_width=0x7f07003c;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f07003d;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f07003e;
public static final int abc_action_button_min_height_material=0x7f07003f;
public static final int abc_action_button_min_width_material=0x7f070040;
public static final int abc_action_button_min_width_overflow_material=0x7f070041;
public static final int abc_alert_dialog_button_bar_height=0x7f070026;
public static final int abc_button_inset_horizontal_material=0x7f070042;
public static final int abc_button_inset_vertical_material=0x7f070043;
public static final int abc_button_padding_horizontal_material=0x7f070044;
public static final int abc_button_padding_vertical_material=0x7f070045;
public static final int abc_cascading_menus_min_smallest_width=0x7f070046;
public static final int abc_config_prefDialogWidth=0x7f07002b;
public static final int abc_control_corner_material=0x7f070047;
public static final int abc_control_inset_material=0x7f070048;
public static final int abc_control_padding_material=0x7f070049;
public static final int abc_dialog_fixed_height_major=0x7f07002c;
public static final int abc_dialog_fixed_height_minor=0x7f07002d;
public static final int abc_dialog_fixed_width_major=0x7f07002e;
public static final int abc_dialog_fixed_width_minor=0x7f07002f;
public static final int abc_dialog_list_padding_vertical_material=0x7f07004a;
public static final int abc_dialog_min_width_major=0x7f070030;
public static final int abc_dialog_min_width_minor=0x7f070031;
public static final int abc_dialog_padding_material=0x7f07004b;
public static final int abc_dialog_padding_top_material=0x7f07004c;
public static final int abc_disabled_alpha_material_dark=0x7f07004d;
public static final int abc_disabled_alpha_material_light=0x7f07004e;
public static final int abc_dropdownitem_icon_width=0x7f07004f;
public static final int abc_dropdownitem_text_padding_left=0x7f070050;
public static final int abc_dropdownitem_text_padding_right=0x7f070051;
public static final int abc_edit_text_inset_bottom_material=0x7f070052;
public static final int abc_edit_text_inset_horizontal_material=0x7f070053;
public static final int abc_edit_text_inset_top_material=0x7f070054;
public static final int abc_floating_window_z=0x7f070055;
public static final int abc_list_item_padding_horizontal_material=0x7f070056;
public static final int abc_panel_menu_list_width=0x7f070057;
public static final int abc_progress_bar_height_material=0x7f070058;
public static final int abc_search_view_preferred_height=0x7f070059;
public static final int abc_search_view_preferred_width=0x7f07005a;
public static final int abc_seekbar_track_background_height_material=0x7f07005b;
public static final int abc_seekbar_track_progress_height_material=0x7f07005c;
public static final int abc_select_dialog_padding_start_material=0x7f07005d;
public static final int abc_switch_padding=0x7f070036;
public static final int abc_text_size_body_1_material=0x7f07005e;
public static final int abc_text_size_body_2_material=0x7f07005f;
public static final int abc_text_size_button_material=0x7f070060;
public static final int abc_text_size_caption_material=0x7f070061;
public static final int abc_text_size_display_1_material=0x7f070062;
public static final int abc_text_size_display_2_material=0x7f070063;
public static final int abc_text_size_display_3_material=0x7f070064;
public static final int abc_text_size_display_4_material=0x7f070065;
public static final int abc_text_size_headline_material=0x7f070066;
public static final int abc_text_size_large_material=0x7f070067;
public static final int abc_text_size_medium_material=0x7f070068;
public static final int abc_text_size_menu_header_material=0x7f070069;
public static final int abc_text_size_menu_material=0x7f07006a;
public static final int abc_text_size_small_material=0x7f07006b;
public static final int abc_text_size_subhead_material=0x7f07006c;
public static final int abc_text_size_subtitle_material_toolbar=0x7f070029;
public static final int abc_text_size_title_material=0x7f07006d;
public static final int abc_text_size_title_material_toolbar=0x7f07002a;
/** Default screen margins, per the Android Design guidelines.
*/
public static final int activity_horizontal_margin=0x7f070076;
public static final int activity_vertical_margin=0x7f070077;
public static final int appBarTopMargin=0x7f07007c;
public static final int cardview_compat_inset_shadow=0x7f070078;
public static final int cardview_default_elevation=0x7f070079;
public static final int cardview_default_radius=0x7f07007a;
public static final int design_appbar_elevation=0x7f07000b;
public static final int design_bottom_navigation_active_item_max_width=0x7f07000c;
public static final int design_bottom_navigation_active_text_size=0x7f07000d;
public static final int design_bottom_navigation_height=0x7f07000e;
public static final int design_bottom_navigation_item_max_width=0x7f07000f;
public static final int design_bottom_navigation_margin=0x7f070010;
public static final int design_bottom_navigation_text_size=0x7f070011;
public static final int design_bottom_sheet_modal_elevation=0x7f070012;
public static final int design_bottom_sheet_peek_height_min=0x7f070013;
public static final int design_fab_border_width=0x7f070014;
public static final int design_fab_elevation=0x7f070015;
public static final int design_fab_image_size=0x7f070016;
public static final int design_fab_size_mini=0x7f070017;
public static final int design_fab_size_normal=0x7f070018;
public static final int design_fab_translation_z_pressed=0x7f070019;
public static final int design_navigation_elevation=0x7f07001a;
public static final int design_navigation_icon_padding=0x7f07001b;
public static final int design_navigation_icon_size=0x7f07001c;
public static final int design_navigation_max_width=0x7f070003;
public static final int design_navigation_padding_bottom=0x7f07001d;
public static final int design_navigation_separator_vertical_padding=0x7f07001e;
public static final int design_snackbar_action_inline_max_width=0x7f070004;
public static final int design_snackbar_background_corner_radius=0x7f070005;
public static final int design_snackbar_elevation=0x7f07001f;
public static final int design_snackbar_extra_spacing_horizontal=0x7f070006;
public static final int design_snackbar_max_width=0x7f070007;
public static final int design_snackbar_min_width=0x7f070008;
public static final int design_snackbar_padding_horizontal=0x7f070020;
public static final int design_snackbar_padding_vertical=0x7f070021;
public static final int design_snackbar_padding_vertical_2lines=0x7f070009;
public static final int design_snackbar_text_size=0x7f070022;
public static final int design_tab_max_width=0x7f070023;
public static final int design_tab_scrollable_min_width=0x7f07000a;
public static final int design_tab_text_size=0x7f070024;
public static final int design_tab_text_size_2line=0x7f070025;
public static final int disabled_alpha_material_dark=0x7f07006e;
public static final int disabled_alpha_material_light=0x7f07006f;
public static final int highlight_alpha_material_colored=0x7f070070;
public static final int highlight_alpha_material_dark=0x7f070071;
public static final int highlight_alpha_material_light=0x7f070072;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070000;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070001;
public static final int item_touch_helper_swipe_escape_velocity=0x7f070002;
public static final int notification_large_icon_height=0x7f070073;
public static final int notification_large_icon_width=0x7f070074;
public static final int notification_subtext_size=0x7f070075;
public static final int statusBarHeight=0x7f07007b;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_action_bar_item_background_material=0x7f020001;
public static final int abc_btn_borderless_material=0x7f020002;
public static final int abc_btn_check_material=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static final int abc_btn_colored_material=0x7f020006;
public static final int abc_btn_default_mtrl_shape=0x7f020007;
public static final int abc_btn_radio_material=0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static final int abc_cab_background_internal_bg=0x7f02000d;
public static final int abc_cab_background_top_material=0x7f02000e;
public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static final int abc_control_background_material=0x7f020010;
public static final int abc_dialog_material_background=0x7f020011;
public static final int abc_edit_text_material=0x7f020012;
public static final int abc_ic_ab_back_material=0x7f020013;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static final int abc_ic_clear_material=0x7f020015;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static final int abc_ic_go_search_api_material=0x7f020017;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_overflow_material=0x7f02001a;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static final int abc_ic_search_api_material=0x7f02001e;
public static final int abc_ic_star_black_16dp=0x7f02001f;
public static final int abc_ic_star_black_36dp=0x7f020020;
public static final int abc_ic_star_black_48dp=0x7f020021;
public static final int abc_ic_star_half_black_16dp=0x7f020022;
public static final int abc_ic_star_half_black_36dp=0x7f020023;
public static final int abc_ic_star_half_black_48dp=0x7f020024;
public static final int abc_ic_voice_search_api_material=0x7f020025;
public static final int abc_item_background_holo_dark=0x7f020026;
public static final int abc_item_background_holo_light=0x7f020027;
public static final int abc_list_divider_mtrl_alpha=0x7f020028;
public static final int abc_list_focused_holo=0x7f020029;
public static final int abc_list_longpressed_holo=0x7f02002a;
public static final int abc_list_pressed_holo_dark=0x7f02002b;
public static final int abc_list_pressed_holo_light=0x7f02002c;
public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static final int abc_list_selector_disabled_holo_light=0x7f020030;
public static final int abc_list_selector_holo_dark=0x7f020031;
public static final int abc_list_selector_holo_light=0x7f020032;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static final int abc_popup_background_mtrl_mult=0x7f020034;
public static final int abc_ratingbar_indicator_material=0x7f020035;
public static final int abc_ratingbar_material=0x7f020036;
public static final int abc_ratingbar_small_material=0x7f020037;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static final int abc_seekbar_thumb_material=0x7f02003d;
public static final int abc_seekbar_tick_mark_material=0x7f02003e;
public static final int abc_seekbar_track_material=0x7f02003f;
public static final int abc_spinner_mtrl_am_alpha=0x7f020040;
public static final int abc_spinner_textfield_background_material=0x7f020041;
public static final int abc_switch_thumb_material=0x7f020042;
public static final int abc_switch_track_mtrl_alpha=0x7f020043;
public static final int abc_tab_indicator_material=0x7f020044;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static final int abc_text_cursor_material=0x7f020046;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static final int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static final int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static final int abc_textfield_search_material=0x7f020051;
public static final int abc_vector_test=0x7f020052;
public static final int common_full_open_on_phone=0x7f020053;
public static final int common_google_signin_btn_icon_dark=0x7f020054;
public static final int common_google_signin_btn_icon_dark_disabled=0x7f020055;
public static final int common_google_signin_btn_icon_dark_focused=0x7f020056;
public static final int common_google_signin_btn_icon_dark_normal=0x7f020057;
public static final int common_google_signin_btn_icon_dark_pressed=0x7f020058;
public static final int common_google_signin_btn_icon_light=0x7f020059;
public static final int common_google_signin_btn_icon_light_disabled=0x7f02005a;
public static final int common_google_signin_btn_icon_light_focused=0x7f02005b;
public static final int common_google_signin_btn_icon_light_normal=0x7f02005c;
public static final int common_google_signin_btn_icon_light_pressed=0x7f02005d;
public static final int common_google_signin_btn_text_dark=0x7f02005e;
public static final int common_google_signin_btn_text_dark_disabled=0x7f02005f;
public static final int common_google_signin_btn_text_dark_focused=0x7f020060;
public static final int common_google_signin_btn_text_dark_normal=0x7f020061;
public static final int common_google_signin_btn_text_dark_pressed=0x7f020062;
public static final int common_google_signin_btn_text_light=0x7f020063;
public static final int common_google_signin_btn_text_light_disabled=0x7f020064;
public static final int common_google_signin_btn_text_light_focused=0x7f020065;
public static final int common_google_signin_btn_text_light_normal=0x7f020066;
public static final int common_google_signin_btn_text_light_pressed=0x7f020067;
public static final int design_fab_background=0x7f020068;
public static final int design_ic_visibility=0x7f020069;
public static final int design_snackbar_background=0x7f02006a;
public static final int eye=0x7f02006b;
public static final int firebase=0x7f02006c;
public static final int heart=0x7f02006d;
public static final int ic_check=0x7f02006e;
public static final int ic_delete=0x7f02006f;
public static final int ic_file=0x7f020070;
public static final int ic_folder=0x7f020071;
public static final int ic_has_image=0x7f020072;
public static final int ic_has_not_img=0x7f020073;
public static final int ic_launcher=0x7f020074;
public static final int ic_music=0x7f020075;
public static final int ic_pause=0x7f020076;
public static final int ic_play=0x7f020077;
public static final int ic_plus_box=0x7f020078;
public static final int ic_select_all=0x7f020079;
public static final int ic_upload=0x7f02007a;
public static final int image_back=0x7f02007b;
public static final int label=0x7f02007c;
public static final int navigation_empty_icon=0x7f02007d;
public static final int notification_template_icon_bg=0x7f02008b;
public static final int pause=0x7f02007e;
public static final int pencil=0x7f02007f;
public static final int play=0x7f020080;
public static final int plus=0x7f020081;
public static final int plus_circle=0x7f020082;
public static final int progress=0x7f020083;
public static final int save=0x7f020084;
public static final int skip_next=0x7f020085;
public static final int skip_previous=0x7f020086;
public static final int smash_white=0x7f020087;
public static final int some_smash=0x7f020088;
public static final int some_smash_trans=0x7f020089;
public static final int window_close=0x7f02008a;
}
public static final class id {
public static final int action0=0x7f0800bb;
public static final int action_bar=0x7f080065;
public static final int action_bar_activity_content=0x7f080002;
public static final int action_bar_container=0x7f080064;
public static final int action_bar_root=0x7f080060;
public static final int action_bar_spinner=0x7f080003;
public static final int action_bar_subtitle=0x7f080045;
public static final int action_bar_title=0x7f080044;
public static final int action_context_bar=0x7f080066;
public static final int action_divider=0x7f0800bf;
public static final int action_menu_divider=0x7f080004;
public static final int action_menu_presenter=0x7f080005;
public static final int action_mode_bar=0x7f080062;
public static final int action_mode_bar_stub=0x7f080061;
public static final int action_mode_close_button=0x7f080046;
public static final int activity_chooser_view_content=0x7f080047;
public static final int add=0x7f08003b;
public static final int addOnUser=0x7f0800e8;
public static final int adjust_height=0x7f08002c;
public static final int adjust_width=0x7f08002d;
public static final int agendMusicas=0x7f0800dc;
public static final int albumitemImageView=0x7f080079;
public static final int albumitemTextViewNome=0x7f08007a;
public static final int alertTitle=0x7f080053;
public static final int all=0x7f080022;
public static final int allDone=0x7f0800db;
public static final int always=0x7f08003f;
public static final int attachimagefragImageView=0x7f08007d;
public static final int attachimagefragImageViewSend=0x7f08007e;
public static final int attachimagefragTextView1=0x7f08007b;
public static final int auto=0x7f080010;
public static final int beginning=0x7f08003d;
public static final int bottom=0x7f080011;
public static final int bottomplayerImageViewPlay=0x7f08007f;
public static final int bottomplayerSeekbar=0x7f080082;
public static final int bottomplayerTextViewNome=0x7f080080;
public static final int bottomplayerTextViewOthers=0x7f080081;
public static final int bottomplayerTextViewTime=0x7f080083;
public static final int buttonPanel=0x7f08004e;
public static final int cancel_action=0x7f0800bc;
public static final int card_view=0x7f080098;
public static final int card_view2=0x7f0800ce;
public static final int card_view_badge=0x7f08007c;
public static final int center=0x7f080012;
public static final int center_horizontal=0x7f080013;
public static final int center_vertical=0x7f080014;
public static final int checkbox=0x7f08005c;
public static final int chronometer=0x7f0800c2;
public static final int clip_horizontal=0x7f08001e;
public static final int clip_vertical=0x7f08001f;
public static final int collapseActionView=0x7f080040;
public static final int contentPanel=0x7f080054;
public static final int createAlbum=0x7f0800de;
public static final int createArtista=0x7f0800df;
public static final int createGenero=0x7f0800e0;
public static final int custom=0x7f08005a;
public static final int customPanel=0x7f080059;
public static final int dark=0x7f080031;
public static final int decor_content_parent=0x7f080063;
public static final int default_activity_button=0x7f08004a;
public static final int delete=0x7f0800e6;
public static final int design_bottom_sheet=0x7f080085;
public static final int design_menu_item_action_area=0x7f08008c;
public static final int design_menu_item_action_area_stub=0x7f08008b;
public static final int design_menu_item_text=0x7f08008a;
public static final int design_navigation_view=0x7f080089;
public static final int details=0x7f0800e7;
public static final int directorySelectionList=0x7f080076;
public static final int disableHome=0x7f080035;
public static final int edit=0x7f0800e5;
public static final int edit_album_dialogEditTextNome=0x7f08008f;
public static final int edit_album_dialogTextInputLayoutNome=0x7f08008e;
public static final int edit_query=0x7f080067;
public static final int editalbumdialogDatePicker=0x7f080092;
public static final int editalbumdialogSpinnerArtista=0x7f080091;
public static final int editalbumdialogTextViewArtistaAtual=0x7f080090;
public static final int email_password_buttons=0x7f0800ae;
public static final int email_password_fields=0x7f0800ab;
public static final int end=0x7f080015;
public static final int end_padder=0x7f0800c7;
public static final int enterAlways=0x7f08000b;
public static final int enterAlwaysCollapsed=0x7f08000c;
public static final int exitUntilCollapsed=0x7f08000d;
public static final int expand_activities_button=0x7f080048;
public static final int expanded_menu=0x7f08005b;
public static final int field_email=0x7f0800ac;
public static final int field_password=0x7f0800ad;
public static final int fileSelectionContainer=0x7f080074;
public static final int fill=0x7f080020;
public static final int fill_horizontal=0x7f080021;
public static final int fill_vertical=0x7f080016;
public static final int fixed=0x7f080025;
public static final int generos_card_holderCardView=0x7f080094;
public static final int generos_card_holderTextView=0x7f080095;
public static final int headerImageView1=0x7f080096;
public static final int headerTextViewUser=0x7f080097;
public static final int home=0x7f080006;
public static final int homeAsUp=0x7f080036;
public static final int icon=0x7f08004c;
public static final int icon_only=0x7f08002e;
public static final int ifRoom=0x7f080041;
public static final int image=0x7f080049;
public static final int img=0x7f08009e;
public static final int info=0x7f0800c6;
public static final int item_touch_helper_previous_elevation=0x7f080000;
public static final int last_sent_modelTextViewArtista=0x7f08009b;
public static final int last_sent_modelTextViewName=0x7f08009a;
public static final int last_sent_modelTextViewSent=0x7f08009c;
public static final int lastsentmodelImageView=0x7f080099;
public static final int left=0x7f080017;
public static final int libraryButton1=0x7f08009d;
public static final int light=0x7f080032;
public static final int line1=0x7f0800c0;
public static final int line3=0x7f0800c4;
public static final int listMode=0x7f080033;
public static final int list_item=0x7f08004b;
public static final int loginButtonLogin=0x7f0800af;
public static final int loginButtonSignup=0x7f0800b0;
public static final int loginfragButtonSeriousCreate=0x7f0800a9;
public static final int loginfragEditTextneePassRedo=0x7f0800a8;
public static final int loginfragEditTextnewEmail=0x7f0800a6;
public static final int loginfragEditTextnewPass=0x7f0800a7;
public static final int loginfragEditTextnewUsername=0x7f0800a5;
public static final int loginfragLinearLayoutNew=0x7f0800a4;
public static final int loginfragRelativeLayoutLogin=0x7f0800aa;
public static final int mainDrawerLayout=0x7f0800b1;
public static final int mainFrameLayout=0x7f0800b3;
public static final int mainNavigationView=0x7f0800b2;
public static final int main_content=0x7f0800b6;
public static final int main_layout=0x7f0800a2;
public static final int mainfragImageView1=0x7f0800b5;
public static final int mainfragRelativeLayout1=0x7f0800b4;
public static final int media_actions=0x7f0800be;
public static final int middle=0x7f08003e;
public static final int mini=0x7f080023;
public static final int multiply=0x7f080027;
public static final int musicaaddfragNewAlbum=0x7f0800b9;
public static final int musicaddfragAlbuns=0x7f0800b8;
public static final int musicuploadModelDelete=0x7f080077;
public static final int musicuploadacRelativeLayout1=0x7f0800b7;
public static final int musicuploadmodelEditText=0x7f080078;
public static final int myCheckBox=0x7f0800a0;
public static final int navigation_header_container=0x7f080088;
public static final int never=0x7f080042;
public static final int none=0x7f08001b;
public static final int normal=0x7f080024;
public static final int parallax=0x7f08001c;
public static final int parentPanel=0x7f080050;
public static final int pin=0x7f08001d;
public static final int play=0x7f0800e4;
public static final int progress_circular=0x7f080007;
public static final int progress_horizontal=0x7f080008;
public static final int radio=0x7f08005e;
public static final int recycler=0x7f080093;
public static final int recyclerProgressBar=0x7f0800c8;
public static final int recyclerView=0x7f0800ba;
public static final int recyclerViewHorizont=0x7f0800d5;
public static final int right=0x7f080018;
public static final int screen=0x7f080028;
public static final int scroll=0x7f08000e;
public static final int scrollIndicatorDown=0x7f080058;
public static final int scrollIndicatorUp=0x7f080055;
public static final int scrollView=0x7f080056;
public static final int scrollable=0x7f080026;
public static final int search_badge=0x7f080069;
public static final int search_bar=0x7f080068;
public static final int search_button=0x7f08006a;
public static final int search_close_btn=0x7f08006f;
public static final int search_edit_frame=0x7f08006b;
public static final int search_go_btn=0x7f080071;
public static final int search_mag_icon=0x7f08006c;
public static final int search_plate=0x7f08006d;
public static final int search_src_text=0x7f08006e;
public static final int search_voice_btn=0x7f080072;
public static final int seeAlbuns=0x7f0800e2;
public static final int seeArtistas=0x7f0800e3;
public static final int seeMusics=0x7f0800e1;
public static final int selectAll=0x7f0800da;
public static final int select_dialog_listview=0x7f080073;
public static final int sendMusics=0x7f0800dd;
public static final int sendfragImageViewSend=0x7f0800ca;
public static final int sendfragProgressBar=0x7f0800cd;
public static final int sendfragRelativeLayout1=0x7f0800c9;
public static final int sendfragTextView1=0x7f0800cf;
public static final int sendfragTextViewArtista=0x7f0800cc;
public static final int sendfragTextViewName=0x7f0800cb;
public static final int sendtaskitemImageViewDelete=0x7f0800d2;
public static final int sendtaskitemTextViewNome=0x7f0800d0;
public static final int sendtaskitemTextViewOther=0x7f0800d1;
public static final int shortcut=0x7f08005d;
public static final int showCustom=0x7f080037;
public static final int showHome=0x7f080038;
public static final int showTitle=0x7f080039;
public static final int simpledialogEditTextNome=0x7f0800d3;
public static final int simpledialogSpinner=0x7f0800d4;
public static final int snackbar_action=0x7f080087;
public static final int snackbar_text=0x7f080086;
public static final int snap=0x7f08000f;
public static final int spacer=0x7f08004f;
public static final int split_action_bar=0x7f080009;
public static final int src_atop=0x7f080029;
public static final int src_in=0x7f08002a;
public static final int src_over=0x7f08002b;
public static final int standard=0x7f08002f;
public static final int start=0x7f080019;
public static final int status_bar_latest_event_content=0x7f0800bd;
public static final int submenuarrow=0x7f08005f;
public static final int submit_area=0x7f080070;
public static final int tabMode=0x7f080034;
public static final int text=0x7f0800c5;
public static final int text2=0x7f0800c3;
public static final int textSpacerNoButtons=0x7f080057;
public static final int textTextView=0x7f0800d6;
public static final int text_input_password_toggle=0x7f08008d;
public static final int time=0x7f0800c1;
public static final int title=0x7f08004d;
public static final int title_template=0x7f080052;
public static final int title_text=0x7f0800a3;
public static final int toolbar=0x7f080075;
public static final int top=0x7f08001a;
public static final int topPanel=0x7f080051;
public static final int touch_outside=0x7f080084;
public static final int twofieldslistImageView=0x7f0800d7;
public static final int twofieldslistTextView1=0x7f0800d8;
public static final int twofieldslistTextView2=0x7f0800d9;
public static final int txt=0x7f08009f;
public static final int txt2=0x7f0800a1;
public static final int up=0x7f08000a;
public static final int upAll=0x7f0800e9;
public static final int useLogo=0x7f08003a;
public static final int view_offset_helper=0x7f080001;
public static final int wide=0x7f080030;
public static final int withText=0x7f080043;
public static final int wrap_content=0x7f08003c;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f0a0004;
public static final int abc_config_activityShortDur=0x7f0a0005;
public static final int app_bar_elevation_anim_duration=0x7f0a0001;
public static final int bottom_sheet_slide_duration=0x7f0a0002;
public static final int cancel_button_image_alpha=0x7f0a0006;
public static final int design_snackbar_text_max_lines=0x7f0a0000;
public static final int google_play_services_version=0x7f0a0003;
public static final int status_bar_notification_info_maxnum=0x7f0a0007;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f040000;
public static final int abc_action_bar_up_container=0x7f040001;
public static final int abc_action_bar_view_list_nav_layout=0x7f040002;
public static final int abc_action_menu_item_layout=0x7f040003;
public static final int abc_action_menu_layout=0x7f040004;
public static final int abc_action_mode_bar=0x7f040005;
public static final int abc_action_mode_close_item_material=0x7f040006;
public static final int abc_activity_chooser_view=0x7f040007;
public static final int abc_activity_chooser_view_list_item=0x7f040008;
public static final int abc_alert_dialog_button_bar_material=0x7f040009;
public static final int abc_alert_dialog_material=0x7f04000a;
public static final int abc_dialog_title_material=0x7f04000b;
public static final int abc_expanded_menu_layout=0x7f04000c;
public static final int abc_list_menu_item_checkbox=0x7f04000d;
public static final int abc_list_menu_item_icon=0x7f04000e;
public static final int abc_list_menu_item_layout=0x7f04000f;
public static final int abc_list_menu_item_radio=0x7f040010;
public static final int abc_popup_menu_header_item_layout=0x7f040011;
public static final int abc_popup_menu_item_layout=0x7f040012;
public static final int abc_screen_content_include=0x7f040013;
public static final int abc_screen_simple=0x7f040014;
public static final int abc_screen_simple_overlay_action_mode=0x7f040015;
public static final int abc_screen_toolbar=0x7f040016;
public static final int abc_search_dropdown_item_icons_2line=0x7f040017;
public static final int abc_search_view=0x7f040018;
public static final int abc_select_dialog_material=0x7f040019;
public static final int activity_file_selection=0x7f04001a;
public static final int add_musica_holder=0x7f04001b;
public static final int album_item=0x7f04001c;
public static final int attach_image_frag=0x7f04001d;
public static final int bottom_player=0x7f04001e;
public static final int design_bottom_sheet_dialog=0x7f04001f;
public static final int design_layout_snackbar=0x7f040020;
public static final int design_layout_snackbar_include=0x7f040021;
public static final int design_layout_tab_icon=0x7f040022;
public static final int design_layout_tab_text=0x7f040023;
public static final int design_menu_item_action_area=0x7f040024;
public static final int design_navigation_item=0x7f040025;
public static final int design_navigation_item_header=0x7f040026;
public static final int design_navigation_item_separator=0x7f040027;
public static final int design_navigation_item_subheader=0x7f040028;
public static final int design_navigation_menu=0x7f040029;
public static final int design_navigation_menu_item=0x7f04002a;
public static final int design_text_input_password_icon=0x7f04002b;
public static final int edit_album_dialog=0x7f04002c;
public static final int generos_card_holder=0x7f04002d;
public static final int header=0x7f04002e;
public static final int last_sent_frag=0x7f04002f;
public static final int last_sent_model=0x7f040030;
public static final int library=0x7f040031;
public static final int list_single=0x7f040032;
public static final int list_single_only=0x7f040033;
public static final int login_frag=0x7f040034;
public static final int main=0x7f040035;
public static final int main_frag=0x7f040036;
public static final int musica_add_frag=0x7f040037;
public static final int notification_media_action=0x7f040038;
public static final int notification_media_cancel_action=0x7f040039;
public static final int notification_template_big_media=0x7f04003a;
public static final int notification_template_big_media_narrow=0x7f04003b;
public static final int notification_template_lines=0x7f04003c;
public static final int notification_template_media=0x7f04003d;
public static final int notification_template_part_chronometer=0x7f04003e;
public static final int notification_template_part_time=0x7f04003f;
public static final int recycler=0x7f040040;
public static final int select_dialog_item_material=0x7f040041;
public static final int select_dialog_multichoice_material=0x7f040042;
public static final int select_dialog_singlechoice_material=0x7f040043;
public static final int send_frag=0x7f040044;
public static final int send_task_item=0x7f040045;
public static final int simple_dialog=0x7f040046;
public static final int simple_recycler=0x7f040047;
public static final int support_simple_spinner_dropdown_item=0x7f040048;
public static final int tests=0x7f040049;
public static final int text=0x7f04004a;
public static final int toolbar=0x7f04004b;
public static final int two_fields_list=0x7f04004c;
}
public static final class menu {
public static final int file_picker_menu=0x7f0d0000;
public static final int main=0x7f0d0001;
public static final int musicas_menu=0x7f0d0002;
public static final int send_tasks=0x7f0d0003;
}
public static final class mipmap {
public static final int ic_launcher=0x7f030000;
}
public static final class string {
public static final int CNew=0x7f060042;
public static final int Int=0x7f060040;
public static final int New=0x7f060041;
public static final int abc_action_bar_home_description=0x7f060015;
public static final int abc_action_bar_home_description_format=0x7f060016;
public static final int abc_action_bar_home_subtitle_description_format=0x7f060017;
public static final int abc_action_bar_up_description=0x7f060018;
public static final int abc_action_menu_overflow_description=0x7f060019;
public static final int abc_action_mode_done=0x7f06001a;
public static final int abc_activity_chooser_view_see_all=0x7f06001b;
public static final int abc_activitychooserview_choose_application=0x7f06001c;
public static final int abc_capital_off=0x7f06001d;
public static final int abc_capital_on=0x7f06001e;
public static final int abc_font_family_body_1_material=0x7f06002a;
public static final int abc_font_family_body_2_material=0x7f06002b;
public static final int abc_font_family_button_material=0x7f06002c;
public static final int abc_font_family_caption_material=0x7f06002d;
public static final int abc_font_family_display_1_material=0x7f06002e;
public static final int abc_font_family_display_2_material=0x7f06002f;
public static final int abc_font_family_display_3_material=0x7f060030;
public static final int abc_font_family_display_4_material=0x7f060031;
public static final int abc_font_family_headline_material=0x7f060032;
public static final int abc_font_family_menu_material=0x7f060033;
public static final int abc_font_family_subhead_material=0x7f060034;
public static final int abc_font_family_title_material=0x7f060035;
public static final int abc_search_hint=0x7f06001f;
public static final int abc_searchview_description_clear=0x7f060020;
public static final int abc_searchview_description_query=0x7f060021;
public static final int abc_searchview_description_search=0x7f060022;
public static final int abc_searchview_description_submit=0x7f060023;
public static final int abc_searchview_description_voice=0x7f060024;
public static final int abc_shareactionprovider_share_with=0x7f060025;
public static final int abc_shareactionprovider_share_with_application=0x7f060026;
public static final int abc_toolbar_collapse_description=0x7f060027;
public static final int action_settings=0x7f060037;
public static final int all=0x7f06003c;
public static final int app_name=0x7f060000;
public static final int appbar_scrolling_view_behavior=0x7f060001;
public static final int bottom_sheet_behavior=0x7f060002;
public static final int cancel=0x7f06003d;
public static final int character_counter_pattern=0x7f060003;
public static final int common_google_play_services_enable_button=0x7f060005;
public static final int common_google_play_services_enable_text=0x7f060006;
public static final int common_google_play_services_enable_title=0x7f060007;
public static final int common_google_play_services_install_button=0x7f060008;
public static final int common_google_play_services_install_text=0x7f060009;
public static final int common_google_play_services_install_title=0x7f06000a;
public static final int common_google_play_services_notification_ticker=0x7f06000b;
public static final int common_google_play_services_unknown_issue=0x7f060004;
public static final int common_google_play_services_unsupported_text=0x7f06000c;
public static final int common_google_play_services_update_button=0x7f06000d;
public static final int common_google_play_services_update_text=0x7f06000e;
public static final int common_google_play_services_update_title=0x7f06000f;
public static final int common_google_play_services_updating_text=0x7f060010;
public static final int common_google_play_services_wear_update_text=0x7f060011;
public static final int common_open_on_phone=0x7f060012;
public static final int common_signin_button_text=0x7f060013;
public static final int common_signin_button_text_long=0x7f060014;
public static final int create=0x7f060043;
public static final int directories=0x7f06003a;
public static final int ext=0x7f06003f;
public static final int files=0x7f060039;
public static final int goUp=0x7f06003b;
public static final int hello_world=0x7f060044;
public static final int name_app=0x7f060036;
public static final int none=0x7f06003e;
public static final int ok=0x7f060038;
public static final int search_menu_title=0x7f060028;
public static final int status_bar_notification_info_overflow=0x7f060029;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0900a4;
public static final int AlertDialog_AppCompat_Light=0x7f0900a5;
public static final int Animation_AppCompat_Dialog=0x7f0900a6;
public static final int Animation_AppCompat_DropDownUp=0x7f0900a7;
public static final int Animation_Design_BottomSheetDialog=0x7f090002;
public static final int AppTheme=0x7f090165;
public static final int Base_AlertDialog_AppCompat=0x7f0900a8;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0900a9;
public static final int Base_Animation_AppCompat_Dialog=0x7f0900aa;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0900ab;
public static final int Base_CardView=0x7f090167;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0900ac;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0900ad;
public static final int Base_TextAppearance_AppCompat=0x7f090052;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f090053;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f090054;
public static final int Base_TextAppearance_AppCompat_Button=0x7f09003c;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f090055;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f090056;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f090057;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f090058;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f090059;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f09005a;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f090025;
public static final int Base_TextAppearance_AppCompat_Large=0x7f09005b;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090026;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f09005c;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f09005d;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f09005e;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090027;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f09005f;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0900ae;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f090060;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f090061;
public static final int Base_TextAppearance_AppCompat_Small=0x7f090062;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f090028;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f090063;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090029;
public static final int Base_TextAppearance_AppCompat_Title=0x7f090064;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f09002a;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f09009d;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090065;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090066;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090067;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090068;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090069;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f09006a;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f09006b;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f09009e;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900af;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f09006c;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f09006d;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f09006e;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09006f;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f090070;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900b0;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090071;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090072;
public static final int Base_Theme_AppCompat=0x7f090073;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0900b1;
public static final int Base_Theme_AppCompat_Dialog=0x7f09002b;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0900b2;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0900b3;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0900b4;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f09001b;
public static final int Base_Theme_AppCompat_Light=0x7f090074;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0900b5;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f09002c;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0900b6;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0900b7;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900b8;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f09001c;
public static final int Base_ThemeOverlay_AppCompat=0x7f0900b9;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0900ba;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0900bb;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900bc;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f09002d;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0900bd;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0900be;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09002e;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09002f;
public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f090030;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090038;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f090039;
public static final int Base_V21_Theme_AppCompat=0x7f090075;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090076;
public static final int Base_V21_Theme_AppCompat_Light=0x7f090077;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090078;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f090079;
public static final int Base_V22_Theme_AppCompat=0x7f09009b;
public static final int Base_V22_Theme_AppCompat_Light=0x7f09009c;
public static final int Base_V23_Theme_AppCompat=0x7f09009f;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0900a0;
public static final int Base_V7_Theme_AppCompat=0x7f0900bf;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0900c0;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0900c1;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0900c2;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0900c3;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0900c4;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0900c5;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0900c6;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900c7;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900c8;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f09007a;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f09007b;
public static final int Base_Widget_AppCompat_ActionButton=0x7f09007c;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f09007d;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f09007e;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0900c9;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900ca;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f09003a;
public static final int Base_Widget_AppCompat_Button=0x7f09007f;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f090080;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f090081;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900cb;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0900a1;
public static final int Base_Widget_AppCompat_Button_Small=0x7f090082;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f090083;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900cc;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f090084;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f090085;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900cd;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f09001a;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900ce;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090086;
public static final int Base_Widget_AppCompat_EditText=0x7f09003b;
public static final int Base_Widget_AppCompat_ImageButton=0x7f090087;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900cf;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900d0;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900d1;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090088;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090089;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f09008a;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f09008b;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09008c;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0900d2;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f09008d;
public static final int Base_Widget_AppCompat_ListView=0x7f09008e;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f09008f;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f090090;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f090091;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f090092;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900d3;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f090031;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f090032;
public static final int Base_Widget_AppCompat_RatingBar=0x7f090093;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0900a2;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0900a3;
public static final int Base_Widget_AppCompat_SearchView=0x7f0900d4;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900d5;
public static final int Base_Widget_AppCompat_SeekBar=0x7f090094;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0900d6;
public static final int Base_Widget_AppCompat_Spinner=0x7f090095;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f09001d;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f090096;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0900d7;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090097;
public static final int Base_Widget_Design_AppBarLayout=0x7f090003;
public static final int Base_Widget_Design_TabLayout=0x7f090004;
public static final int CardView=0x7f090166;
public static final int CardView_Dark=0x7f090168;
public static final int CardView_Light=0x7f090169;
public static final int MyTheme_Base=0x7f09016c;
public static final int Platform_AppCompat=0x7f090033;
public static final int Platform_AppCompat_Light=0x7f090034;
public static final int Platform_ThemeOverlay_AppCompat=0x7f090098;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090099;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f09009a;
public static final int Platform_V11_AppCompat=0x7f090035;
public static final int Platform_V11_AppCompat_Light=0x7f090036;
public static final int Platform_V14_AppCompat=0x7f09003d;
public static final int Platform_V14_AppCompat_Light=0x7f09003e;
public static final int Platform_Widget_AppCompat_Spinner=0x7f090037;
public static final int RobotoButtonStyle=0x7f09016f;
public static final int RobotoTextViewStyleBold=0x7f09016d;
public static final int RobotoTextViewStyleLight=0x7f09016e;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090044;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090045;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090046;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090047;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090048;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090049;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f09004a;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f09004b;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f09004c;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09004d;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09004e;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09004f;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f090050;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f090051;
public static final int STheme=0x7f09016a;
public static final int TextAppearance_AppCompat=0x7f0900d8;
public static final int TextAppearance_AppCompat_Body1=0x7f0900d9;
public static final int TextAppearance_AppCompat_Body2=0x7f0900da;
public static final int TextAppearance_AppCompat_Button=0x7f0900db;
public static final int TextAppearance_AppCompat_Caption=0x7f0900dc;
public static final int TextAppearance_AppCompat_Display1=0x7f0900dd;
public static final int TextAppearance_AppCompat_Display2=0x7f0900de;
public static final int TextAppearance_AppCompat_Display3=0x7f0900df;
public static final int TextAppearance_AppCompat_Display4=0x7f0900e0;
public static final int TextAppearance_AppCompat_Headline=0x7f0900e1;
public static final int TextAppearance_AppCompat_Inverse=0x7f0900e2;
public static final int TextAppearance_AppCompat_Large=0x7f0900e3;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900e4;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900e5;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900e6;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900e7;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900e8;
public static final int TextAppearance_AppCompat_Medium=0x7f0900e9;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900ea;
public static final int TextAppearance_AppCompat_Menu=0x7f0900eb;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900ec;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900ed;
public static final int TextAppearance_AppCompat_Small=0x7f0900ee;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900ef;
public static final int TextAppearance_AppCompat_Subhead=0x7f0900f0;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900f1;
public static final int TextAppearance_AppCompat_Title=0x7f0900f2;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900f3;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900f4;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900f5;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900f6;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900f7;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900f8;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900f9;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900fa;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900fb;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900fc;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900fd;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900fe;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900ff;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f090100;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090101;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090102;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f090103;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f090104;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f090005;
public static final int TextAppearance_Design_Counter=0x7f090006;
public static final int TextAppearance_Design_Counter_Overflow=0x7f090007;
public static final int TextAppearance_Design_Error=0x7f090008;
public static final int TextAppearance_Design_Hint=0x7f090009;
public static final int TextAppearance_Design_Snackbar_Message=0x7f09000a;
public static final int TextAppearance_Design_Tab=0x7f09000b;
public static final int TextAppearance_StatusBar_EventContent=0x7f09003f;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f090040;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f090041;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f090042;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f090043;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090105;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090106;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090107;
public static final int Theme_AppCompat=0x7f090108;
public static final int Theme_AppCompat_CompactMenu=0x7f090109;
public static final int Theme_AppCompat_DayNight=0x7f09001e;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f09001f;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f090020;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f090021;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f090022;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f090023;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f090024;
public static final int Theme_AppCompat_Dialog=0x7f09010a;
public static final int Theme_AppCompat_Dialog_Alert=0x7f09010b;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f09010c;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f09010d;
public static final int Theme_AppCompat_Light=0x7f09010e;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f09010f;
public static final int Theme_AppCompat_Light_Dialog=0x7f090110;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f090111;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f090112;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f090113;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f090114;
public static final int Theme_AppCompat_NoActionBar=0x7f090115;
public static final int Theme_Design=0x7f09000c;
public static final int Theme_Design_BottomSheetDialog=0x7f09000d;
public static final int Theme_Design_Light=0x7f09000e;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f09000f;
public static final int Theme_Design_Light_NoActionBar=0x7f090010;
public static final int Theme_Design_NoActionBar=0x7f090011;
public static final int ThemeOverlay_AppCompat=0x7f090116;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f090117;
public static final int ThemeOverlay_AppCompat_Dark=0x7f090118;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090119;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f09011a;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f09011b;
public static final int ThemeOverlay_AppCompat_Light=0x7f09011c;
public static final int ThemeOverlay_MyDarkButton=0x7f09016b;
public static final int ToolbarTheme=0x7f090170;
public static final int Widget_AppCompat_ActionBar=0x7f09011d;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f09011e;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f09011f;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f090120;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f090121;
public static final int Widget_AppCompat_ActionButton=0x7f090122;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090123;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090124;
public static final int Widget_AppCompat_ActionMode=0x7f090125;
public static final int Widget_AppCompat_ActivityChooserView=0x7f090126;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f090127;
public static final int Widget_AppCompat_Button=0x7f090128;
public static final int Widget_AppCompat_Button_Borderless=0x7f090129;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f09012a;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f09012b;
public static final int Widget_AppCompat_Button_Colored=0x7f09012c;
public static final int Widget_AppCompat_Button_Small=0x7f09012d;
public static final int Widget_AppCompat_ButtonBar=0x7f09012e;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f09012f;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f090130;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f090131;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f090132;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090133;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090134;
public static final int Widget_AppCompat_EditText=0x7f090135;
public static final int Widget_AppCompat_ImageButton=0x7f090136;
public static final int Widget_AppCompat_Light_ActionBar=0x7f090137;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f090138;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f090139;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f09013a;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f09013b;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f09013c;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09013d;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f09013e;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f09013f;
public static final int Widget_AppCompat_Light_ActionButton=0x7f090140;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090141;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f090142;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090143;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090144;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090145;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090146;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f090147;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f090148;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f090149;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09014a;
public static final int Widget_AppCompat_Light_SearchView=0x7f09014b;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f09014c;
public static final int Widget_AppCompat_ListMenuView=0x7f09014d;
public static final int Widget_AppCompat_ListPopupWindow=0x7f09014e;
public static final int Widget_AppCompat_ListView=0x7f09014f;
public static final int Widget_AppCompat_ListView_DropDown=0x7f090150;
public static final int Widget_AppCompat_ListView_Menu=0x7f090151;
public static final int Widget_AppCompat_PopupMenu=0x7f090152;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f090153;
public static final int Widget_AppCompat_PopupWindow=0x7f090154;
public static final int Widget_AppCompat_ProgressBar=0x7f090155;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f090156;
public static final int Widget_AppCompat_RatingBar=0x7f090157;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f090158;
public static final int Widget_AppCompat_RatingBar_Small=0x7f090159;
public static final int Widget_AppCompat_SearchView=0x7f09015a;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f09015b;
public static final int Widget_AppCompat_SeekBar=0x7f09015c;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f09015d;
public static final int Widget_AppCompat_Spinner=0x7f09015e;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f09015f;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f090160;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f090161;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f090162;
public static final int Widget_AppCompat_Toolbar=0x7f090163;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090164;
public static final int Widget_Design_AppBarLayout=0x7f090001;
public static final int Widget_Design_BottomSheet_Modal=0x7f090012;
public static final int Widget_Design_CollapsingToolbar=0x7f090013;
public static final int Widget_Design_CoordinatorLayout=0x7f090014;
public static final int Widget_Design_FloatingActionButton=0x7f090015;
public static final int Widget_Design_NavigationView=0x7f090016;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f090017;
public static final int Widget_Design_Snackbar=0x7f090018;
public static final int Widget_Design_TabLayout=0x7f090000;
public static final int Widget_Design_TextInputLayout=0x7f090019;
}
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.smash.up:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.smash.up:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.smash.up:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.smash.up:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.smash.up:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.smash.up:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.smash.up:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.smash.up:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.smash.up:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.smash.up:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.smash.up:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.smash.up:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.smash.up:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.smash.up:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.smash.up:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.smash.up:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.smash.up:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.smash.up:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.smash.up:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.smash.up:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.smash.up:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.smash.up:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.smash.up:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.smash.up:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.smash.up:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.smash.up:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.smash.up:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.smash.up:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.smash.up:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetEndWithActions
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@see #ActionBar_contentInsetStartWithNavigation
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_elevation
@see #ActionBar_height
@see #ActionBar_hideOnContentScroll
@see #ActionBar_homeAsUpIndicator
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_popupTheme
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f01005d, 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,
0x7f0100b6
};
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up: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.smash.up:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.smash.up:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.smash.up:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.smash.up:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.smash.up:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.smash.up: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 = {
0x7f01005d, 0x7f010063, 0x7f010064, 0x7f010068,
0x7f01006a, 0x7f01007a
};
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up: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.smash.up:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.smash.up:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01007b, 0x7f01007c
};
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.smash.up:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.smash.up:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.smash.up:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.smash.up:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.smash.up:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static final int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation com.smash.up:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded com.smash.up:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x7f010004, 0x7f010078
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static final int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#elevation}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:elevation
*/
public static final int AppBarLayout_elevation = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#expanded}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:expanded
*/
public static final int AppBarLayout_expanded = 1;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.smash.up:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.smash.up:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010005, 0x7f010006
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#state_collapsed}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#state_collapsible}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:state_collapsible
*/
public static final int AppBarLayoutStates_state_collapsible = 1;
/** Attributes that can be used with a AppBarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.smash.up:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.smash.up:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f010007, 0x7f010008
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name com.smash.up:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:layout_scrollInterpolator
*/
public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat com.smash.up:srcCompat}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010082
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static final int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/** Attributes that can be used with a AppCompatSeekBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMark com.smash.up:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.smash.up:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.smash.up:tickMarkTintMode}</code></td><td></td></tr>
</table>
@see #AppCompatSeekBar_android_thumb
@see #AppCompatSeekBar_tickMark
@see #AppCompatSeekBar_tickMarkTint
@see #AppCompatSeekBar_tickMarkTintMode
*/
public static final int[] AppCompatSeekBar = {
0x01010142, 0x7f010083, 0x7f010084, 0x7f010085
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.smash.up:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps com.smash.up:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f010086
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.smash.up:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider com.smash.up:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.smash.up:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.smash.up:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize com.smash.up:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.smash.up:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle com.smash.up:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.smash.up:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.smash.up:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.smash.up:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme com.smash.up:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.smash.up:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.smash.up:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.smash.up:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.smash.up:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.smash.up:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground com.smash.up:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.smash.up:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.smash.up:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.smash.up:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.smash.up:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.smash.up:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.smash.up:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.smash.up:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.smash.up:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.smash.up:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.smash.up:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle com.smash.up:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.smash.up:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.smash.up:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.smash.up:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.smash.up:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.smash.up:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.smash.up:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.smash.up:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.smash.up:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.smash.up:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.smash.up:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.smash.up:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.smash.up:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.smash.up:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.smash.up:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.smash.up:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle com.smash.up:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.smash.up:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle com.smash.up:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.smash.up:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent com.smash.up:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.smash.up:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.smash.up:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated com.smash.up:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.smash.up:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal com.smash.up:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary com.smash.up:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.smash.up:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.smash.up:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground com.smash.up:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.smash.up:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme com.smash.up:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.smash.up:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical com.smash.up:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.smash.up:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.smash.up:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground com.smash.up:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor com.smash.up:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle com.smash.up:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.smash.up:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.smash.up:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.smash.up:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.smash.up:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.smash.up:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.smash.up:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.smash.up:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.smash.up:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.smash.up:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.smash.up:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.smash.up:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground com.smash.up:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.smash.up:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.smash.up:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.smash.up:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.smash.up:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.smash.up:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.smash.up:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.smash.up:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.smash.up:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle com.smash.up:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle com.smash.up:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.smash.up:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.smash.up:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.smash.up:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle com.smash.up:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle com.smash.up:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.smash.up:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.smash.up:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.smash.up:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.smash.up:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.smash.up:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.smash.up:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.smash.up:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.smash.up:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.smash.up:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.smash.up:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle com.smash.up:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar com.smash.up:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.smash.up:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.smash.up:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.smash.up:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.smash.up:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.smash.up:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.smash.up:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.smash.up:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.smash.up:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle com.smash.up:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_windowActionBar
@see #AppCompatTheme_windowActionBarOverlay
@see #AppCompatTheme_windowActionModeOverlay
@see #AppCompatTheme_windowFixedHeightMajor
@see #AppCompatTheme_windowFixedHeightMinor
@see #AppCompatTheme_windowFixedWidthMajor
@see #AppCompatTheme_windowFixedWidthMinor
@see #AppCompatTheme_windowMinWidthMajor
@see #AppCompatTheme_windowMinWidthMinor
@see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme = {
0x01010057, 0x010100ae, 0x7f010087, 0x7f010088,
0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c,
0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090,
0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094,
0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098,
0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c,
0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0,
0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4,
0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8,
0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac,
0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0,
0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4,
0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8,
0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc,
0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0,
0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4,
0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8,
0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc,
0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0,
0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4,
0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4,
0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8,
0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec,
0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0,
0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4,
0x7f0100f5, 0x7f0100f6, 0x7f0100f7
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name com.smash.up:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.smash.up:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 95;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 93;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme = 96;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 101;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 102;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 103;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 104;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 105;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 85;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 92;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 89;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 87;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 88;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 86;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 83;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 84;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 90;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 91;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.smash.up:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 106;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 114;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 79;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 81;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 80;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 107;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 108;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 109;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 110;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 111;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 112;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 113;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 78;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.smash.up:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 97;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.smash.up:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomSheetBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.smash.up:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.smash.up:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.smash.up:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f010009, 0x7f01000a, 0x7f01000b
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
@attr name com.smash.up:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#behavior_skipCollapsed}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:behavior_skipCollapsed
*/
public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking com.smash.up:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100f8
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:allowStacking
*/
public static final int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CardView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardBackgroundColor com.smash.up:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius com.smash.up:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation com.smash.up:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation com.smash.up:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap com.smash.up:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding com.smash.up:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding com.smash.up:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom com.smash.up:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft com.smash.up:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight com.smash.up:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop com.smash.up:contentPaddingTop}</code></td><td></td></tr>
</table>
@see #CardView_android_minHeight
@see #CardView_android_minWidth
@see #CardView_cardBackgroundColor
@see #CardView_cardCornerRadius
@see #CardView_cardElevation
@see #CardView_cardMaxElevation
@see #CardView_cardPreventCornerOverlap
@see #CardView_cardUseCompatPadding
@see #CardView_contentPadding
@see #CardView_contentPaddingBottom
@see #CardView_contentPaddingLeft
@see #CardView_contentPaddingRight
@see #CardView_contentPaddingTop
*/
public static final int[] CardView = {
0x0101013f, 0x01010140, 0x7f01013d, 0x7f01013e,
0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142,
0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146,
0x7f010147
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minHeight
*/
public static final int CardView_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minWidth
*/
public static final int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#cardBackgroundColor}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:cardBackgroundColor
*/
public static final int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#cardCornerRadius}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:cardCornerRadius
*/
public static final int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#cardElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:cardElevation
*/
public static final int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#cardMaxElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:cardMaxElevation
*/
public static final int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#cardPreventCornerOverlap}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:cardPreventCornerOverlap
*/
public static final int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#cardUseCompatPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:cardUseCompatPadding
*/
public static final int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#contentPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:contentPadding
*/
public static final int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#contentPaddingBottom}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:contentPaddingBottom
*/
public static final int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#contentPaddingLeft}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:contentPaddingLeft
*/
public static final int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#contentPaddingRight}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:contentPaddingRight
*/
public static final int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#contentPaddingTop}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:contentPaddingTop
*/
public static final int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.smash.up:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.smash.up:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.smash.up:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.smash.up:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.smash.up:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.smash.up:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.smash.up:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.smash.up:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.smash.up:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.smash.up:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.smash.up:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.smash.up:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.smash.up:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title com.smash.up:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.smash.up:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.smash.up:toolbarId}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_collapsedTitleGravity
@see #CollapsingToolbarLayout_collapsedTitleTextAppearance
@see #CollapsingToolbarLayout_contentScrim
@see #CollapsingToolbarLayout_expandedTitleGravity
@see #CollapsingToolbarLayout_expandedTitleMargin
@see #CollapsingToolbarLayout_expandedTitleMarginBottom
@see #CollapsingToolbarLayout_expandedTitleMarginEnd
@see #CollapsingToolbarLayout_expandedTitleMarginStart
@see #CollapsingToolbarLayout_expandedTitleMarginTop
@see #CollapsingToolbarLayout_expandedTitleTextAppearance
@see #CollapsingToolbarLayout_scrimAnimationDuration
@see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
@see #CollapsingToolbarLayout_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f,
0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013,
0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017,
0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01005f
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#collapsedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.smash.up:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 12;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#collapsedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#contentScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#expandedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.smash.up:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#expandedTitleMargin}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#expandedTitleMarginBottom}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#expandedTitleMarginEnd}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#expandedTitleMarginStart}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#expandedTitleMarginTop}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#expandedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#scrimAnimationDuration}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration = 11;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#scrimVisibleHeightTrigger}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 10;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#statusBarScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#title}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:title
*/
public static final int CollapsingToolbarLayout_title = 15;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#titleEnabled}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 14;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#toolbarId}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId = 9;
/** Attributes that can be used with a CollapsingToolbarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.smash.up:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.smash.up:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f01001b, 0x7f01001c
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name com.smash.up:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:layout_collapseParallaxMultiplier
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha com.smash.up:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100f9
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:alpha
*/
public static final int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static final int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint com.smash.up:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.smash.up:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100fa, 0x7f0100fb
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static final int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.smash.up:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a CoordinatorLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_keylines com.smash.up:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.smash.up:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f01001d, 0x7f01001e
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#keylines}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground = 1;
/** Attributes that can be used with a CoordinatorLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.smash.up:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.smash.up:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.smash.up:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.smash.up:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.smash.up:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.smash.up:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_Layout_android_layout_gravity
@see #CoordinatorLayout_Layout_layout_anchor
@see #CoordinatorLayout_Layout_layout_anchorGravity
@see #CoordinatorLayout_Layout_layout_behavior
@see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
@see #CoordinatorLayout_Layout_layout_insetEdge
@see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout = {
0x010100b3, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023, 0x7f010024
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.smash.up:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layout_dodgeInsetEdges}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
@attr name com.smash.up:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layout_insetEdge}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.smash.up:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.smash.up:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle com.smash.up:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError com.smash.up:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010025, 0x7f010026, 0x7f010027
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#bottomSheetDialogTheme}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#bottomSheetStyle}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} 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.smash.up:textColorError
*/
public static final int DesignTheme_textColorError = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.smash.up:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.smash.up:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.smash.up:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.smash.up:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.smash.up:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.smash.up:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.smash.up:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.smash.up:thickness}</code></td><td></td></tr>
</table>
@see #DrawerArrowToggle_arrowHeadLength
@see #DrawerArrowToggle_arrowShaftLength
@see #DrawerArrowToggle_barLength
@see #DrawerArrowToggle_color
@see #DrawerArrowToggle_drawableSize
@see #DrawerArrowToggle_gapBetweenBars
@see #DrawerArrowToggle_spinBars
@see #DrawerArrowToggle_thickness
*/
public static final int[] DrawerArrowToggle = {
0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff,
0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a FloatingActionButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTint com.smash.up:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.smash.up:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth com.smash.up:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation com.smash.up:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize com.smash.up:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.smash.up:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor com.smash.up:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding com.smash.up:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b,
0x7f01002c, 0x7f010078, 0x7f01013b, 0x7f01013c
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#backgroundTint}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.smash.up:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#borderWidth}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#elevation}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:elevation
*/
public static final int FloatingActionButton_elevation = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name com.smash.up:fabSize
*/
public static final int FloatingActionButton_fabSize = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#pressedTranslationZ}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#rippleColor}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#useCompatPadding}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding = 4;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.smash.up:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f01002d
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#behavior_autoHide}
attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.smash.up:foregroundInsidePadding}</code></td><td></td></tr>
</table>
@see #ForegroundLinearLayout_android_foreground
@see #ForegroundLinearLayout_android_foregroundGravity
@see #ForegroundLinearLayout_foregroundInsidePadding
*/
public static final int[] ForegroundLinearLayout = {
0x01010109, 0x01010200, 0x7f01002e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static final int ForegroundLinearLayout_android_foreground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foregroundGravity
*/
public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#foregroundInsidePadding}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:foregroundInsidePadding
*/
public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider com.smash.up:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.smash.up:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.smash.up:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.smash.up: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, 0x7f010067, 0x7f010104, 0x7f010105,
0x7f010106
};
/**
<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.smash.up.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.smash.up:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up: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 LoadingImageView.
<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 #LoadingImageView_circleCrop com.smash.up:circleCrop}</code></td><td></td></tr>
<tr><td><code>{@link #LoadingImageView_imageAspectRatio com.smash.up:imageAspectRatio}</code></td><td></td></tr>
<tr><td><code>{@link #LoadingImageView_imageAspectRatioAdjust com.smash.up:imageAspectRatioAdjust}</code></td><td></td></tr>
</table>
@see #LoadingImageView_circleCrop
@see #LoadingImageView_imageAspectRatio
@see #LoadingImageView_imageAspectRatioAdjust
*/
public static final int[] LoadingImageView = {
0x7f010056, 0x7f010057, 0x7f010058
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#circleCrop}
attribute's value can be found in the {@link #LoadingImageView} 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.smash.up:circleCrop
*/
public static final int LoadingImageView_circleCrop = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#imageAspectRatio}
attribute's value can be found in the {@link #LoadingImageView} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:imageAspectRatio
*/
public static final int LoadingImageView_imageAspectRatio = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#imageAspectRatioAdjust}
attribute's value can be found in the {@link #LoadingImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>adjust_width</code></td><td>1</td><td></td></tr>
<tr><td><code>adjust_height</code></td><td>2</td><td></td></tr>
</table>
@attr name com.smash.up:imageAspectRatioAdjust
*/
public static final int LoadingImageView_imageAspectRatioAdjust = 0;
/** 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.smash.up:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.smash.up:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.smash.up: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.smash.up: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, 0x7f010107, 0x7f010108, 0x7f010109,
0x7f01010a
};
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up: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.smash.up.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.smash.up: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.smash.up:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow com.smash.up:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f01010b,
0x7f01010c
};
/**
<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.smash.up.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.smash.up:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:subMenuArrow
*/
public static final int MenuView_subMenuArrow = 8;
/** Attributes that can be used with a NavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_elevation com.smash.up:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout com.smash.up:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground com.smash.up:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint com.smash.up:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance com.smash.up:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor com.smash.up:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu com.smash.up:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f01002f,
0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033,
0x7f010034, 0x7f010078
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static final int NavigationView_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:fitsSystemWindows
*/
public static final int NavigationView_android_fitsSystemWindows = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:maxWidth
*/
public static final int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#elevation}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:elevation
*/
public static final int NavigationView_elevation = 9;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#headerLayout}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:headerLayout
*/
public static final int NavigationView_headerLayout = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#itemBackground}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:itemBackground
*/
public static final int NavigationView_itemBackground = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#itemIconTint}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:itemIconTint
*/
public static final int NavigationView_itemIconTint = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#itemTextColor}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:itemTextColor
*/
public static final int NavigationView_itemTextColor = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#menu}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:menu
*/
public static final int NavigationView_menu = 3;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor com.smash.up:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f01010d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor = 2;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.smash.up:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f01010e
};
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager com.smash.up:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout com.smash.up:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount com.smash.up:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd com.smash.up:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static final int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:layoutManager
*/
public static final int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:spanCount
*/
public static final int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.smash.up:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010035
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#insetForeground}
attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.smash.up:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.smash.up:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f010036
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon com.smash.up:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.smash.up:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.smash.up:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.smash.up:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.smash.up:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.smash.up:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.smash.up:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.smash.up:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.smash.up:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.smash.up:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.smash.up:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.smash.up:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.smash.up:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112,
0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116,
0x7f010117, 0x7f010118, 0x7f010119, 0x7f01011a,
0x7f01011b
};
/**
<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.smash.up.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.smash.up:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SignInButton.
<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 #SignInButton_buttonSize com.smash.up:buttonSize}</code></td><td></td></tr>
<tr><td><code>{@link #SignInButton_colorScheme com.smash.up:colorScheme}</code></td><td></td></tr>
<tr><td><code>{@link #SignInButton_scopeUris com.smash.up:scopeUris}</code></td><td></td></tr>
</table>
@see #SignInButton_buttonSize
@see #SignInButton_colorScheme
@see #SignInButton_scopeUris
*/
public static final int[] SignInButton = {
0x7f010059, 0x7f01005a, 0x7f01005b
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#buttonSize}
attribute's value can be found in the {@link #SignInButton} 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 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>standard</code></td><td>0</td><td></td></tr>
<tr><td><code>wide</code></td><td>1</td><td></td></tr>
<tr><td><code>icon_only</code></td><td>2</td><td></td></tr>
</table>
@attr name com.smash.up:buttonSize
*/
public static final int SignInButton_buttonSize = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#colorScheme}
attribute's value can be found in the {@link #SignInButton} 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 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>dark</code></td><td>0</td><td></td></tr>
<tr><td><code>light</code></td><td>1</td><td></td></tr>
<tr><td><code>auto</code></td><td>2</td><td></td></tr>
</table>
@attr name com.smash.up:colorScheme
*/
public static final int SignInButton_colorScheme = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#scopeUris}
attribute's value can be found in the {@link #SignInButton} 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 string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
@attr name com.smash.up:scopeUris
*/
public static final int SignInButton_scopeUris = 2;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation com.smash.up:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.smash.up:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010037, 0x7f010078
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static final int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#elevation}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:elevation
*/
public static final int SnackbarLayout_elevation = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#maxActionInlineWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth = 1;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme com.smash.up:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f010079
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static final int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:popupTheme
*/
public static final int Spinner_popupTheme = 4;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText com.smash.up:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.smash.up:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.smash.up:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.smash.up:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.smash.up:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.smash.up:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint com.smash.up:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode com.smash.up:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.smash.up:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint com.smash.up:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode com.smash.up:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f01011c,
0x7f01011d, 0x7f01011e, 0x7f01011f, 0x7f010120,
0x7f010121, 0x7f010122, 0x7f010123, 0x7f010124,
0x7f010125, 0x7f010126
};
/**
<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.smash.up.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.smash.up:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.smash.up:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.smash.up:trackTintMode
*/
public static final int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static final int TabItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:layout
*/
public static final int TabItem_android_layout = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#text}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:text
*/
public static final int TabItem_android_text = 2;
/** Attributes that can be used with a TabLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabLayout_tabBackground com.smash.up:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart com.smash.up:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity com.smash.up:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor com.smash.up:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight com.smash.up:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth com.smash.up:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth com.smash.up:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode com.smash.up:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding com.smash.up:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom com.smash.up:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd com.smash.up:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart com.smash.up:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop com.smash.up:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor com.smash.up:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance com.smash.up:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor com.smash.up:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b,
0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043,
0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047
};
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabBackground}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabContentStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabGravity}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
@attr name com.smash.up:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabIndicatorColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabIndicatorHeight}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabMaxWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabMinWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabMode}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
@attr name com.smash.up:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabPadding}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabPaddingBottom}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabPaddingEnd}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabPaddingStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabPaddingTop}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabSelectedTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabTextAppearance}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#tabTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:tabTextColor
*/
public static final int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps com.smash.up:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x01010161, 0x01010162, 0x01010163, 0x01010164,
0x7f010086
};
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static final int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.smash.up:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 8;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled com.smash.up:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength com.smash.up:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.smash.up:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance com.smash.up:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled com.smash.up:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance com.smash.up:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.smash.up:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled com.smash.up:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance com.smash.up:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.smash.up:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.smash.up:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.smash.up:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint com.smash.up:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.smash.up:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f010048, 0x7f010049,
0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d,
0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051,
0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static final int TextInputLayout_android_hint = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:textColorHint
*/
public static final int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#counterEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#counterMaxLength}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#counterOverflowTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#counterTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#errorEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#errorTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#hintAnimationEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#hintEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:hintEnabled
*/
public static final int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#hintTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#passwordToggleContentDescription}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#passwordToggleDrawable}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#passwordToggleEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#passwordToggleTint}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#passwordToggleTintMode}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.smash.up:passwordToggleTintMode
*/
public static final int TextInputLayout_passwordToggleTintMode = 15;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_buttonGravity com.smash.up:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription com.smash.up:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.smash.up:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.smash.up:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.smash.up:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.smash.up:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.smash.up:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.smash.up:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.smash.up:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.smash.up:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.smash.up:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.smash.up:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.smash.up:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.smash.up:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.smash.up:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.smash.up:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.smash.up:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.smash.up:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.smash.up:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin com.smash.up:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.smash.up:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.smash.up:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.smash.up:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.smash.up:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.smash.up:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.smash.up:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.smash.up:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_buttonGravity
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetEndWithActions
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_contentInsetStartWithNavigation
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_titleMargin
@see #Toolbar_titleMarginBottom
@see #Toolbar_titleMarginEnd
@see #Toolbar_titleMarginStart
@see #Toolbar_titleMarginTop
@see #Toolbar_titleMargins
@see #Toolbar_titleTextAppearance
@see #Toolbar_titleTextColor
*/
public static final int[] Toolbar = {
0x010100af, 0x01010140, 0x7f01005f, 0x7f010062,
0x7f010066, 0x7f010072, 0x7f010073, 0x7f010074,
0x7f010075, 0x7f010076, 0x7f010077, 0x7f010079,
0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a,
0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e,
0x7f01012f, 0x7f010130, 0x7f010131, 0x7f010132,
0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136,
0x7f010137
};
/**
<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.smash.up.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name com.smash.up:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:titleTextColor
*/
public static final int Toolbar_titleTextColor = 27;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd com.smash.up:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.smash.up:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.smash.up:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f010138, 0x7f010139,
0x7f01013a
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static final int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static final int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.smash.up.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.smash.up:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.smash.up:theme
*/
public static final int View_theme = 4;
/** Attributes that can be used with a ViewBackgroundHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.smash.up:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.smash.up:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f01013b, 0x7f01013c
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static final int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.smash.up:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.smash.up.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.smash.up:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static final int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
| mit |
qoomon/banking-swift-messages-java | src/main/java/com/qoomon/banking/swift/message/block/SwiftBlock.java | 170 | package com.qoomon.banking.swift.message.block;
/**
* Created by qoomon on 26/08/16.
*/
public interface SwiftBlock {
String getId();
String getContent();
}
| mit |
matheusmessora/nursery | src/main/java/br/com/pandox/nursery/domain/monitor/service/MonitorService.java | 189 | package br.com.pandox.nursery.domain.monitor.service;
import br.com.pandox.nursery.domain.monitor.model.Monitor;
public interface MonitorService {
Monitor create(Monitor monitor);
}
| mit |
jrdbnntt/aggravation | src/com/jrdbnntt/aggravation/game/PlayerChooser.java | 5037 | /**
* Handles player setup. Created when a new game is started.
*/
package com.jrdbnntt.aggravation.game;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ComponentEvent;
import java.awt.event.ComponentListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JColorChooser;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JRootPane;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import com.jrdbnntt.aggravation.Aggravation;
import com.jrdbnntt.aggravation.GameStyle;
import com.jrdbnntt.aggravation.Util.Log;
@SuppressWarnings("serial")
public class PlayerChooser extends JPanel {
private JLabel title;
private PlayerOption[] options = new PlayerOption[Aggravation.MAX_PLAYERS];
private JButton bStart = new JButton("START");
private Aggravation context;
private BufferedImage tPic;
public PlayerChooser(Aggravation ctxt) {
super(new GridBagLayout());
GridBagConstraints gbc;
this.context = ctxt;
this.setOpaque(false);
//setup comps
try {
tPic = ImageIO.read(this.getClass().getResource("/img/boxCover.jpg"));
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
title = new JLabel(" ");
title.setVerticalAlignment(JLabel.CENTER);
title.setHorizontalAlignment(JLabel.CENTER);
title.setFont(GameStyle.FONT_TITLE);
title.setForeground(Color.WHITE);
bStart.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
boolean validInput = true;
if(validInput) {
Player[] pSet = new Player[options.length];
for(int i = 0; i < pSet.length; ++i) {
if(options[i].isEnabled())
pSet[i] = new Player(i, options[i].getColor(), options[i].getName());
}
context.startNewGame(pSet);
}
}
});
gbc = new GridBagConstraints();
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.gridx = 0;
gbc.gridy = 0;
gbc.weightx = 1.0;
gbc.weighty = .5;
add(title, gbc);
for(int i = 0; i < options.length; ++i) {
options[i] = new PlayerOption("Player "+(i+1), GameStyle.DEFAULT_PLAYER_COLORS[i], true);
gbc = new GridBagConstraints();
gbc.fill = GridBagConstraints.BOTH;
gbc.gridx = 0;
gbc.gridy = GridBagConstraints.RELATIVE;
gbc.weightx = 1.0;
gbc.weighty = .2;
add(options[i], gbc);
}
gbc = new GridBagConstraints();
gbc.fill = GridBagConstraints.BOTH;
gbc.gridx = 0;
gbc.gridy = GridBagConstraints.RELATIVE;
gbc.weightx = 1.0;
gbc.weighty = .4;
add(bStart, gbc);
}
public void resizeImage() {
int w, h;
final double ratio = (double)tPic.getWidth()/tPic.getHeight();
w = title.getWidth();
h = title.getHeight();
if(h > 0 && w > 0) {
title.setText("");
if(h < w) {
title.setIcon(new ImageIcon(tPic.getScaledInstance(w, (int)(w/ratio), Image.SCALE_DEFAULT)));
} else {
title.setIcon(new ImageIcon(tPic.getScaledInstance((int)(h/ratio),h, Image.SCALE_DEFAULT)));
}
} else {
Log.e("ILOAD", "Lable = 0");
}
}
private class PlayerOption extends JPanel {
private boolean enabled;
private JEditorPane nameInput = new JEditorPane();
private JCheckBox activeToggle = new JCheckBox();
private JButton bPickColor = new JButton("Choose Color");
private Color pColor;
public PlayerOption(String defaultName, Color defaultColor, Boolean enabled) {
super(new GridBagLayout());
//Create sections
nameInput.setText(defaultName);
bPickColor.setOpaque(false);
activeToggle.setOpaque(false);
activeToggle.setSelected(enabled);
activeToggle.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
setOptionEnabled(!PlayerOption.this.enabled);
}
});
bPickColor.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Color c = JColorChooser.showDialog(null, "Choose color for "+getName(), pColor);
if(c != null)
setColor(c);
}
});
//add them
add(activeToggle);
add(nameInput);
add(bPickColor);
setColor(defaultColor);
setOptionEnabled(enabled);
}
private void setOptionEnabled(boolean b) {
enabled = b;
nameInput.setEnabled(enabled);
}
private void setColor(Color c) {
pColor = c;
setBackground(pColor);
}
//accessors
public Color getColor() { return this.pColor; }
public String getName() { return this.nameInput.getText(); }
public boolean isEnabled() { return this.enabled; }
}
}
| mit |
ChristopherCanfield/ludum-dare-34 | app/core/src/com/christopherdcanfield/HoveredBlock.java | 253 | package com.christopherdcanfield;
import com.badlogic.gdx.math.GridPoint2;
public class HoveredBlock
{
public GridPoint2 terrain;
public GridPoint2 terrainFeature;
public boolean isSet() {
return terrain != null && terrainFeature != null;
}
}
| mit |
cliffano/swaggy-jenkins | clients/jaxrs-cxf-client/generated/src/gen/java/org/openapitools/model/Label1.java | 1141 | package org.openapitools.model;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Label1 {
@ApiModelProperty(value = "")
private String propertyClass;
/**
* Get propertyClass
* @return propertyClass
**/
@JsonProperty("_class")
public String getPropertyClass() {
return propertyClass;
}
public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass;
}
public Label1 propertyClass(String propertyClass) {
this.propertyClass = propertyClass;
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Label1 {\n");
sb.append(" propertyClass: ").append(toIndentedString(propertyClass)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private static String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| mit |
cliffano/swaggy-jenkins | clients/jaxrs-cxf-client/generated/src/gen/java/org/openapitools/model/BranchImpllinks.java | 2832 | package org.openapitools.model;
import org.openapitools.model.Link;
import io.swagger.annotations.ApiModelProperty;
import com.fasterxml.jackson.annotation.JsonProperty;
public class BranchImpllinks {
@ApiModelProperty(value = "")
private Link self;
@ApiModelProperty(value = "")
private Link actions;
@ApiModelProperty(value = "")
private Link runs;
@ApiModelProperty(value = "")
private Link queue;
@ApiModelProperty(value = "")
private String propertyClass;
/**
* Get self
* @return self
**/
@JsonProperty("self")
public Link getSelf() {
return self;
}
public void setSelf(Link self) {
this.self = self;
}
public BranchImpllinks self(Link self) {
this.self = self;
return this;
}
/**
* Get actions
* @return actions
**/
@JsonProperty("actions")
public Link getActions() {
return actions;
}
public void setActions(Link actions) {
this.actions = actions;
}
public BranchImpllinks actions(Link actions) {
this.actions = actions;
return this;
}
/**
* Get runs
* @return runs
**/
@JsonProperty("runs")
public Link getRuns() {
return runs;
}
public void setRuns(Link runs) {
this.runs = runs;
}
public BranchImpllinks runs(Link runs) {
this.runs = runs;
return this;
}
/**
* Get queue
* @return queue
**/
@JsonProperty("queue")
public Link getQueue() {
return queue;
}
public void setQueue(Link queue) {
this.queue = queue;
}
public BranchImpllinks queue(Link queue) {
this.queue = queue;
return this;
}
/**
* Get propertyClass
* @return propertyClass
**/
@JsonProperty("_class")
public String getPropertyClass() {
return propertyClass;
}
public void setPropertyClass(String propertyClass) {
this.propertyClass = propertyClass;
}
public BranchImpllinks propertyClass(String propertyClass) {
this.propertyClass = propertyClass;
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BranchImpllinks {\n");
sb.append(" self: ").append(toIndentedString(self)).append("\n");
sb.append(" actions: ").append(toIndentedString(actions)).append("\n");
sb.append(" runs: ").append(toIndentedString(runs)).append("\n");
sb.append(" queue: ").append(toIndentedString(queue)).append("\n");
sb.append(" propertyClass: ").append(toIndentedString(propertyClass)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private static String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| mit |